From 98fd02e262af4bc992d9727f2c1c73d62f51f31d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vincent=20F=C3=A9rotin?= Date: Mon, 28 Jan 2019 15:48:50 +0100 Subject: [PATCH 001/121] doc: Enhance documentation about internalization of external extension. --- doc/extdev/index.rst | 78 +++++++++++++++++++++++++++++++++++++++ sphinx/locale/__init__.py | 7 ++-- 2 files changed, 82 insertions(+), 3 deletions(-) diff --git a/doc/extdev/index.rst b/doc/extdev/index.rst index 56f2e7cee..3ec630a8e 100644 --- a/doc/extdev/index.rst +++ b/doc/extdev/index.rst @@ -187,6 +187,84 @@ as metadata of the extension. Metadata keys currently recognized are: output files can be used when the extension is loaded. Since extensions usually don't negatively influence the process, this defaults to ``True``. +.. _ext-i18n: + +Extension internationalization (`i18n`) and localization (`l10n`) +----------------------------------------------------------------- + +.. versionadded:: 1.8 + +An extension developped outside `Sphinx` own sources could obviously +come with its own messages translations. This is allowed thanks :ref:`i18n-api`, +and brieffly summarized in :func:`sphinx.locale.get_translation` help. + +In practice, you have to: + +#. Choose a name for your messages catalogues and template, which must be unique + (e.g. the name of your extension: ``'myextension'``). +#. Mark in your extension `Python` sources all messages as translatable, + via :func:`sphinx.locale.get_translation` function, usually renamed + ``_()``, e.g.: + + .. code-block:: python + :caption: src/__init__.py + + from sphinx.locale import get_translation + + EXTENSION_NAME = 'myextension' + _ = get_translation(EXTENSION_NAME) + + translated_text = _('Hello Sphinx!') + +#. Setup your extension to be aware of its dedicated translations: + + .. code-block:: python + :caption: src/__init__.py + + def setup(app): + package_dir = path.abspath(path.dirname(__file__)) + locale_dir = os.path.join(package_dir, 'locales') + app.add_message_catalog(EXTENSION_NAME, locale_dir) + +#. Generate messages catalog template ``*.pot`` file, usually in ``locale/`` + source directory, for example via `Babel`_: + + .. code-block:: sh + + $ pybabel extract --output=src/locale/myextension.pot src/ + +#. Create messages catalogs (``*.po``) for each language your extension + will provide localization, for example via `Babel`_: + + .. code-block:: sh + + $ pybabel init --input-file=src/locale/myextension.pot --domain=myextension --output-dir=src/locale --locale=fr_FR + +#. Generate and/or update messages catalogs for all translated languages from + update catalog template, for example via `Babel`_: + + .. code-block:: sh + + $ pybabel update --input-file=src/locale/myextension.pot --domain=myextension --output-dir=src/locale + +#. Update translated messages, thanks your internationalization team. +#. Compile translated messages in ``*.mo`` files, for example via `Babel`_: + + .. code-block:: sh + + $ pybabel compile --directory=src/locale --domain=myextension + +#. Ensure that ``*.mo`` files are distributed when your package will + be installed, by adding equivalent line in your extension ``MANIFEST.in``: + + .. code-block:: ini + :caption: MANIFEST.in + + recursive-include src *.mo + +.. _Babel: http://babel.pocoo.org/ + + APIs used for writing extensions -------------------------------- diff --git a/sphinx/locale/__init__.py b/sphinx/locale/__init__.py index e955e34f5..4c5481f0e 100644 --- a/sphinx/locale/__init__.py +++ b/sphinx/locale/__init__.py @@ -255,17 +255,18 @@ def get_translation(catalog, namespace='general'): import os from sphinx.locale import get_translation - _ = get_translation(__name__) + EXTENSION_NAME = 'myextension' # name of both *.pot, *.po and *.mo files + _ = get_translation(EXTENSION_NAME) text = _('Hello Sphinx!') def setup(app): package_dir = path.abspath(path.dirname(__file__)) locale_dir = os.path.join(package_dir, 'locales') - app.add_message_catalog(__name__, locale_dir) + app.add_message_catalog(EXTENSION_NAME, locale_dir) With this code, sphinx searches a message catalog from - ``${package_dir}/locales/${language}/LC_MESSAGES/${__name__}.mo`` + ``${package_dir}/locales/${language}/LC_MESSAGES/myextension.mo`` The :confval:`language` is used for the searching. .. versionadded:: 1.8 From 7bce985ac971e8eba7c8dff4d3e285cc9301d18c Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Fri, 8 Feb 2019 16:51:06 +0000 Subject: [PATCH 002/121] docs: Rework the "helloworld" tutorial Nothing to drastic going on here, but this format works better for other tutorials we're adding. Signed-off-by: Stephen Finucane --- doc/development/tutorials/helloworld.rst | 192 ++++++++++++++--------- 1 file changed, 115 insertions(+), 77 deletions(-) diff --git a/doc/development/tutorials/helloworld.rst b/doc/development/tutorials/helloworld.rst index 5ce8db66c..b73a12cb0 100644 --- a/doc/development/tutorials/helloworld.rst +++ b/doc/development/tutorials/helloworld.rst @@ -1,39 +1,54 @@ -Developing a "Hello world" directive +Developing a "Hello world" extension ==================================== -The objective of this tutorial is to create a very basic extension that adds a new -directive that outputs a paragraph containing `hello world`. +The objective of this tutorial is to create a very basic extension that adds a +new directive. This directive will output a paragraph containing `hello world`. -Only basic information is provided in this tutorial. For more information, -refer to the :doc:`other tutorials ` that go into more -details. +Only basic information is provided in this tutorial. For more information, refer +to the :doc:`other tutorials ` that go into more details. -.. warning:: For this extension, you will need some basic understanding of docutils_ +.. warning:: + For this extension, you will need some basic understanding of docutils_ and Python. -Creating a new extension file ------------------------------ -Your extension file could be in any folder of your project. In our case, -let's do the following: +Overview +-------- -#. Create an :file:`_ext` folder in :file:`source`. +We want the extension to add the following to Sphinx: + +* A ``helloworld`` directive, that will simply output the text `hello world`. + + +Prerequisites +------------- + +We will not be distributing this plugin via `PyPI`_ and will instead include it +as part of an existing project. This means you will need to use an existing +project or create a new one using :program:`sphinx-quickstart`. + +We assume you are using separate source (:file:`source`) and build +(:file:`build`) folders. Your extension file could be in any folder of your +project. In our case, let's do the following: + +#. Create an :file:`_ext` folder in :file:`source` #. Create a new Python file in the :file:`_ext` folder called - :file:`helloworld.py`. + :file:`helloworld.py` - Here is an example of the folder structure you might obtain: +Here is an example of the folder structure you might obtain: - .. code-block:: text +.. code-block:: text + + └── source +    ├── _ext + │   └── helloworld.py +    ├── _static +    ├── conf.py +    ├── somefolder +    ├── index.rst +    ├── somefile.rst +    └── someotherfile.rst - └── source -    ├── _ext - │   └── helloworld.py -    ├── _static -    ├── _themes -    ├── conf.py -    ├── somefolder -    ├── somefile.rst -    └── someotherfile.rst Writing the extension --------------------- @@ -47,6 +62,7 @@ Open :file:`helloworld.py` and paste the following code in it: class HelloWorld(Directive): + def run(self): paragraph_node = nodes.paragraph(text='Hello World!') return [paragraph_node] @@ -56,30 +72,33 @@ Open :file:`helloworld.py` and paste the following code in it: app.add_directive("helloworld", HelloWorld) -Some essential things are happening in this example, and you will see them -in all directives: +Some essential things are happening in this example, and you will see them for +all directives. -.. rubric:: Directive declaration +.. rubric:: The directive class -Our new directive is declared in the ``HelloWorld`` class, it extends -docutils_' ``Directive`` class. All extensions that create directives -should extend this class. +Our new directive is declared in the ``HelloWorld`` class. -.. rubric:: ``run`` method +.. code-block:: python -This method is a requirement and it is part of every directive. It contains -the main logic of the directive and it returns a list of docutils nodes to -be processed by Sphinx. + class HelloWorld(Directive): + + def run(self): + paragraph_node = nodes.paragraph(text='Hello World!') + return [paragraph_node] + +This class extends the docutils_' ``Directive`` class. All extensions that +create directives should extend this class. .. seealso:: - :doc:`todo` + `The docutils documentation on creating directives `_ -.. rubric:: docutils nodes - -The ``run`` method returns a list of nodes. Nodes are docutils' way of -representing the content of a document. There are many types of nodes -available: text, paragraph, reference, table, etc. +This class contains a ``run`` method. This method is a requirement and it is +part of every directive. It contains the main logic of the directive and it +returns a list of docutils nodes to be processed by Sphinx. These nodes are +docutils' way of representing the content of a document. There are many types of +nodes available: text, paragraph, reference, table, etc. .. seealso:: @@ -89,74 +108,93 @@ The ``nodes.paragraph`` class creates a new paragraph node. A paragraph node typically contains some text that we can set during instantiation using the ``text`` parameter. -.. rubric:: ``setup`` function +.. rubric:: The ``setup`` function + +.. currentmodule:: sphinx.application This function is a requirement. We use it to plug our new directive into Sphinx. -The simplest thing you can do it call the ``app.add_directive`` method. -.. note:: +.. code-block:: python - The first argument is the name of the directive itself as used in an rST file. + def setup(app): + app.add_directive("helloworld", HelloWorld) - In our case, we would use ``helloworld``: +The simplest thing you can do it call the :meth:`~Sphinx.add_directive` +method, which is what we've done here. For this particular call, the first +argument is the name of the directive itself as used in an rST file. In this +case, we would use ``helloworld``. For example: - .. code-block:: rst +.. code-block:: rst - Some intro text here... + Some intro text here... - .. helloworld:: + .. helloworld:: - Some more text here... + Some more text here... -Updating the conf.py file -------------------------- +Using the extension +------------------- -The extension file has to be declared in your :file:`conf.py` file to make -Sphinx aware of it: +The extension has to be declared in your :file:`conf.py` file to make Sphinx +aware of it. There are two steps necessary here: -#. Open :file:`conf.py`. It is in the :file:`source` folder by default. -#. Add ``sys.path.append(os.path.abspath("./_ext"))`` before - the ``extensions`` variable declaration (if it exists). -#. Update or create the ``extensions`` list and add the - extension file name to the list: +#. Add the :file:`_ext` directory to the `Python path`_ using + ``sys.path.append``. This should be placed at the top of the file. - .. code-block:: python +#. Update or create the :confval:`extensions` list and add the extension file + name to the list - extensions.append('helloworld') +For example: -You can now use the extension. +.. code-block:: python -.. admonition:: Example + import os + import sys - .. code-block:: rst + sys.path.append(os.path.abspath("./_ext")) - Some intro text here... + extensions = ['helloworld'] - .. helloworld:: +.. tip:: - Some more text here... + We're not distributing this extension as a `Python package`_, we need to + modify the `Python path`_ so Sphinx can find our extension. This is why we + need the call to ``sys.path.append``. - The sample above would generate: +You can now use the extension in a file. For example: - .. code-block:: text +.. code-block:: rst - Some intro text here... + Some intro text here... - Hello World! + .. helloworld:: - Some more text here... + Some more text here... + +The sample above would generate: + +.. code-block:: text + + Some intro text here... + + Hello World! + + Some more text here... + + +Further reading +--------------- This is the very basic principle of an extension that creates a new directive. For a more advanced example, refer to :doc:`todo`. -Further reading ---------------- - -You can create your own nodes if needed, refer to the -:doc:`todo` for more information. .. _docutils: http://docutils.sourceforge.net/ -.. _`docutils nodes`: http://docutils.sourceforge.net/docs/ref/doctree.html \ No newline at end of file +.. _docutils directives: http://docutils.sourceforge.net/docs/howto/rst-directives.html +.. _docutils nodes: http://docutils.sourceforge.net/docs/ref/doctree.html +.. _PyPI: https://pypi.org/ +.. _Python package: https://packaging.python.org/ +.. _Python path: https://docs.python.org/3/using/cmdline.html#envvar-PYTHONPATH From 513d99c316055f63d77aa3c2c1b9ec73b277d426 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Fri, 8 Feb 2019 16:51:58 +0000 Subject: [PATCH 003/121] docs: Rework "todo" tutorial Adopt the same format as was recently added in the "hello world" tutorial, making this more of a walkthrough as expected from tutorials. Signed-off-by: Stephen Finucane --- doc/development/tutorials/todo.rst | 575 +++++++++++++++++++++-------- 1 file changed, 411 insertions(+), 164 deletions(-) diff --git a/doc/development/tutorials/todo.rst b/doc/development/tutorials/todo.rst index e68a39342..e3c4861c7 100644 --- a/doc/development/tutorials/todo.rst +++ b/doc/development/tutorials/todo.rst @@ -1,152 +1,111 @@ Developing a "TODO" extension ============================= -This section is intended as a walkthrough for the creation of custom extensions. -It covers the basics of writing and activating an extension, as well as -commonly used features of extensions. - -As an example, we will cover a "todo" extension that adds capabilities to -include todo entries in the documentation, and to collect these in a central -place. (A similar "todo" extension is distributed with Sphinx.) +The objective of this tutorial is to create a more comprehensive extension than +that created in :doc:`helloworld`. Whereas that guide just covered writing a +custom :term:`directive`, this guide adds multiple directives, along with custom +nodes, additional config values and custom event handlers. To this end, we will +cover a ``todo`` extension that adds capabilities to include todo entries in the +documentation, and to collect these in a central place. This is similar the +``sphinxext.todo`` extension distributed with Sphinx. -Extension Design ----------------- +Overview +-------- -.. note:: To understand the design this extension, refer to +.. note:: + To understand the design of this extension, refer to :ref:`important-objects` and :ref:`build-phases`. We want the extension to add the following to Sphinx: -* A "todo" directive, containing some content that is marked with "TODO", and - only shown in the output if a new config value is set. (Todo entries should - not be in the output by default.) +* A ``todo`` directive, containing some content that is marked with "TODO" and + only shown in the output if a new config value is set. Todo entries should not + be in the output by default. -* A "todolist" directive that creates a list of all todo entries throughout the +* A ``todolist`` directive that creates a list of all todo entries throughout the documentation. For that, we will need to add the following elements to Sphinx: * New directives, called ``todo`` and ``todolist``. + * New document tree nodes to represent these directives, conventionally also called ``todo`` and ``todolist``. We wouldn't need new nodes if the new directives only produced some content representable by existing nodes. + * A new config value ``todo_include_todos`` (config value names should start with the extension name, in order to stay unique) that controls whether todo entries make it into the output. + * New event handlers: one for the :event:`doctree-resolved` event, to replace the todo and todolist nodes, and one for :event:`env-purge-doc` (the reason for that will be covered later). -The Setup Function ------------------- +Prerequisites +------------- -.. currentmodule:: sphinx.application +As with :doc:`helloworld`, we will not be distributing this plugin via PyPI so +once again we need a Sphinx project to call this from. You can use an existing +project or create a new one using :program:`sphinx-quickstart`. -The new elements are added in the extension's setup function. Let us create a -new Python module called :file:`todo.py` and add the setup function:: +We assume you are using separate source (:file:`source`) and build +(:file:`build`) folders. Your extension file could be in any folder of your +project. In our case, let's do the following: - def setup(app): - app.add_config_value('todo_include_todos', False, 'html') +#. Create an :file:`_ext` folder in :file:`source` +#. Create a new Python file in the :file:`_ext` folder called :file:`todo.py` - app.add_node(todolist) - app.add_node(todo, - html=(visit_todo_node, depart_todo_node), - latex=(visit_todo_node, depart_todo_node), - text=(visit_todo_node, depart_todo_node)) +Here is an example of the folder structure you might obtain: - app.add_directive('todo', TodoDirective) - app.add_directive('todolist', TodolistDirective) - app.connect('doctree-resolved', process_todo_nodes) - app.connect('env-purge-doc', purge_todos) +.. code-block:: text - return {'version': '0.1'} # identifies the version of our extension - -The calls in this function refer to classes and functions not yet written. What -the individual calls do is the following: - -* :meth:`~Sphinx.add_config_value` lets Sphinx know that it should recognize the - new *config value* ``todo_include_todos``, whose default value should be - ``False`` (this also tells Sphinx that it is a boolean value). - - If the third argument was ``'html'``, HTML documents would be full rebuild if the - config value changed its value. This is needed for config values that - influence reading (build :ref:`phase 1 `). - -* :meth:`~Sphinx.add_node` adds a new *node class* to the build system. It also - can specify visitor functions for each supported output format. These visitor - functions are needed when the new nodes stay until :ref:`phase 4 ` - -- since the ``todolist`` node is always replaced in :ref:`phase 3 `, - it doesn't need any. - - We need to create the two node classes ``todo`` and ``todolist`` later. - -* :meth:`~Sphinx.add_directive` adds a new *directive*, given by name and class. - - The handler functions are created later. - -* Finally, :meth:`~Sphinx.connect` adds an *event handler* to the event whose - name is given by the first argument. The event handler function is called - with several arguments which are documented with the event. + └── source +    ├── _ext + │   └── todo.py +    ├── _static +    ├── conf.py +    ├── somefolder +    ├── index.rst +    ├── somefile.rst +    └── someotherfile.rst -The Node Classes ----------------- +Writing the extension +--------------------- -Let's start with the node classes:: +Open :file:`todo.py` and paste the following code in it, all of which we will +explain in detail shortly: + +.. code-block:: python from docutils import nodes + from docutils.parsers.rst import Directive + from sphinx.locale import _ + class todo(nodes.Admonition, nodes.Element): pass + class todolist(nodes.General, nodes.Element): pass + def visit_todo_node(self, node): self.visit_admonition(node) + def depart_todo_node(self, node): self.depart_admonition(node) -Node classes usually don't have to do anything except inherit from the standard -docutils classes defined in :mod:`docutils.nodes`. ``todo`` inherits from -``Admonition`` because it should be handled like a note or warning, ``todolist`` -is just a "general" node. - -.. note:: - - Many extensions will not have to create their own node classes and work fine - with the nodes already provided by `docutils - `__ and :ref:`Sphinx - `. - - -The Directive Classes ---------------------- - -A directive class is a class deriving usually from -:class:`docutils.parsers.rst.Directive`. The directive interface is also -covered in detail in the `docutils documentation`_; the important thing is that -the class should have attributes that configure the allowed markup, -and a ``run`` method that returns a list of nodes. - -The ``todolist`` directive is quite simple:: - - from docutils.parsers.rst import Directive class TodolistDirective(Directive): def run(self): return [todolist('')] -An instance of our ``todolist`` node class is created and returned. The -todolist directive has neither content nor arguments that need to be handled. - -The ``todo`` directive function looks like this:: - - from sphinx.locale import _ class TodoDirective(Directive): @@ -156,7 +115,7 @@ The ``todo`` directive function looks like this:: def run(self): env = self.state.document.settings.env - targetid = "todo-%d" % env.new_serialno('todo') + targetid = 'todo-%d' % env.new_serialno('todo') targetnode = nodes.target('', '', ids=[targetid]) todo_node = todo('\n'.join(self.content)) @@ -165,6 +124,7 @@ The ``todo`` directive function looks like this:: if not hasattr(env, 'todo_all_todos'): env.todo_all_todos = [] + env.todo_all_todos.append({ 'docname': env.docname, 'lineno': self.lineno, @@ -174,55 +134,6 @@ The ``todo`` directive function looks like this:: return [targetnode, todo_node] -Several important things are covered here. First, as you can see, you can refer -to the :ref:`build environment instance ` using ``self.state.document.settings.env``. - -Then, to act as a link target (from the todolist), the todo directive needs to -return a target node in addition to the todo node. The target ID (in HTML, this -will be the anchor name) is generated by using ``env.new_serialno`` which -returns a new unique integer on each call and therefore leads to unique target -names. The target node is instantiated without any text (the first two -arguments). - -On creating admonition node, the content body of the directive are parsed using -``self.state.nested_parse``. The first argument gives the content body, and -the second one gives content offset. The third argument gives the parent node -of parsed result, in our case the ``todo`` node. - -Then, the todo node is added to the environment. This is needed to be able to -create a list of all todo entries throughout the documentation, in the place -where the author puts a ``todolist`` directive. For this case, the environment -attribute ``todo_all_todos`` is used (again, the name should be unique, so it is -prefixed by the extension name). It does not exist when a new environment is -created, so the directive must check and create it if necessary. Various -information about the todo entry's location are stored along with a copy of the -node. - -In the last line, the nodes that should be put into the doctree are returned: -the target node and the admonition node. - -The node structure that the directive returns looks like this:: - - +--------------------+ - | target node | - +--------------------+ - +--------------------+ - | todo node | - +--------------------+ - \__+--------------------+ - | admonition title | - +--------------------+ - | paragraph | - +--------------------+ - | ... | - +--------------------+ - - -The Event Handlers ------------------- - -Finally, let's look at the event handlers. First, the one for the -:event:`env-purge-doc` event:: def purge_todos(app, env, docname): if not hasattr(env, 'todo_all_todos'): @@ -230,17 +141,6 @@ Finally, let's look at the event handlers. First, the one for the env.todo_all_todos = [todo for todo in env.todo_all_todos if todo['docname'] != docname] -Since we store information from source files in the environment, which is -persistent, it may become out of date when the source file changes. Therefore, -before each source file is read, the environment's records of it are cleared, -and the :event:`env-purge-doc` event gives extensions a chance to do the same. -Here we clear out all todos whose docname matches the given one from the -``todo_all_todos`` list. If there are todos left in the document, they will be -added again during parsing. - -The other handler belongs to the :event:`doctree-resolved` event. This event is -emitted at the end of :ref:`phase 3 ` and allows custom resolving -to be done:: def process_todo_nodes(app, doctree, fromdocname): if not app.config.todo_include_todos: @@ -283,17 +183,364 @@ to be done:: node.replace_self(content) -It is a bit more involved. If our new "todo_include_todos" config value is -false, all todo and todolist nodes are removed from the documents. -If not, todo nodes just stay where and how they are. Todolist nodes are -replaced by a list of todo entries, complete with backlinks to the location -where they come from. The list items are composed of the nodes from the todo -entry and docutils nodes created on the fly: a paragraph for each entry, -containing text that gives the location, and a link (reference node containing -an italic node) with the backreference. The reference URI is built by -``app.builder.get_relative_uri`` which creates a suitable URI depending on the -used builder, and appending the todo node's (the target's) ID as the anchor -name. + def setup(app): + app.add_config_value('todo_include_todos', False, 'html') + app.add_node(todolist) + app.add_node(todo, + html=(visit_todo_node, depart_todo_node), + latex=(visit_todo_node, depart_todo_node), + text=(visit_todo_node, depart_todo_node)) + + app.add_directive('todo', TodoDirective) + app.add_directive('todolist', TodolistDirective) + app.connect('doctree-resolved', process_todo_nodes) + app.connect('env-purge-doc', purge_todos) + + return {'version': '0.1'} # identifies the version of our extension + +This is far more extensive extension than the one detailed in :doc:`helloworld`, +however, we will will look at each piece step-by-step to explain what's +happening. + +.. rubric:: The node classes + +Let's start with the node classes: + +.. todo:: Use literal-include + +.. code-block:: python + + class todo(nodes.Admonition, nodes.Element): + pass + + class todolist(nodes.General, nodes.Element): + pass + + def visit_todo_node(self, node): + self.visit_admonition(node) + + def depart_todo_node(self, node): + self.depart_admonition(node) + +Node classes usually don't have to do anything except inherit from the standard +docutils classes defined in :mod:`docutils.nodes`. ``todo`` inherits from +``Admonition`` because it should be handled like a note or warning, ``todolist`` +is just a "general" node. + +.. note:: + + Many extensions will not have to create their own node classes and work fine + with the nodes already provided by `docutils + `__ and :ref:`Sphinx + `. + +.. rubric:: The directive classes + +A directive class is a class deriving usually from +:class:`docutils.parsers.rst.Directive`. The directive interface is also +covered in detail in the `docutils documentation`_; the important thing is that +the class should have attributes that configure the allowed markup, and a +``run`` method that returns a list of nodes. + +Looking first at the ``TodolistDirective`` directive: + +.. code-block:: python + + class TodolistDirective(Directive): + + def run(self): + return [todolist('')] + +It's very simple, creating and returning an instance of our ``todolist`` node +class. The ``TodolistDirective`` directive itself has neither content nor +arguments that need to be handled. That brings us to the ``TodoDirective`` +directive: + +.. code-block:: python + + class TodoDirective(Directive): + + # this enables content in the directive + has_content = True + + def run(self): + env = self.state.document.settings.env + + targetid = "todo-%d" % env.new_serialno('todo') + targetnode = nodes.target('', '', ids=[targetid]) + + todo_node = todo('\n'.join(self.content)) + todo_node += nodes.title(_('Todo'), _('Todo')) + self.state.nested_parse(self.content, self.content_offset, todo_node) + + if not hasattr(env, 'todo_all_todos'): + env.todo_all_todos = [] + + env.todo_all_todos.append({ + 'docname': env.docname, + 'lineno': self.lineno, + 'todo': todo_node.deepcopy(), + 'target': targetnode, + }) + + return [targetnode, todo_node] + +Several important things are covered here. First, as you can see, you can refer +to the :ref:`build environment instance ` using +``self.state.document.settings.env``. Then, to act as a link target (from +``TodolistDirective``), the ``TodoDirective`` directive needs to return a target +node in addition to the ``todo`` node. The target ID (in HTML, this will be the +anchor name) is generated by using ``env.new_serialno`` which returns a new +unique integer on each call and therefore leads to unique target names. The +target node is instantiated without any text (the first two arguments). + +On creating admonition node, the content body of the directive are parsed using +``self.state.nested_parse``. The first argument gives the content body, and +the second one gives content offset. The third argument gives the parent node +of parsed result, in our case the ``todo`` node. Following this, the ``todo`` +node is added to the environment. This is needed to be able to create a list of +all todo entries throughout the documentation, in the place where the author +puts a ``todolist`` directive. For this case, the environment attribute +``todo_all_todos`` is used (again, the name should be unique, so it is prefixed +by the extension name). It does not exist when a new environment is created, so +the directive must check and create it if necessary. Various information about +the todo entry's location are stored along with a copy of the node. + +In the last line, the nodes that should be put into the doctree are returned: +the target node and the admonition node. + +The node structure that the directive returns looks like this:: + + +--------------------+ + | target node | + +--------------------+ + +--------------------+ + | todo node | + +--------------------+ + \__+--------------------+ + | admonition title | + +--------------------+ + | paragraph | + +--------------------+ + | ... | + +--------------------+ + +.. rubric:: The event handlers + +Event handlers are one of Sphinx's most powerful features, providing a way to do +hook into any part of the documentation process. There are many hooks available, +as detailed in :doc:`/extdev/appapi`, and we're going to use a subset of them +here. + +Let's look at the event handlers used in the above example. First, the one for +the :event:`env-purge-doc` event: + +.. code-block:: python + + def purge_todos(app, env, docname): + if not hasattr(env, 'todo_all_todos'): + return + env.todo_all_todos = [todo for todo in env.todo_all_todos + if todo['docname'] != docname] + +Since we store information from source files in the environment, which is +persistent, it may become out of date when the source file changes. Therefore, +before each source file is read, the environment's records of it are cleared, +and the :event:`env-purge-doc` event gives extensions a chance to do the same. +Here we clear out all todos whose docname matches the given one from the +``todo_all_todos`` list. If there are todos left in the document, they will be +added again during parsing. + +The other handler belongs to the :event:`doctree-resolved` event: + +.. code-block:: python + + def process_todo_nodes(app, doctree, fromdocname): + if not app.config.todo_include_todos: + for node in doctree.traverse(todo): + node.parent.remove(node) + + # Replace all todolist nodes with a list of the collected todos. + # Augment each todo with a backlink to the original location. + env = app.builder.env + + for node in doctree.traverse(todolist): + if not app.config.todo_include_todos: + node.replace_self([]) + continue + + content = [] + + for todo_info in env.todo_all_todos: + para = nodes.paragraph() + filename = env.doc2path(todo_info['docname'], base=None) + description = ( + _('(The original entry is located in %s, line %d and can be found ') % + (filename, todo_info['lineno'])) + para += nodes.Text(description, description) + + # Create a reference + newnode = nodes.reference('', '') + innernode = nodes.emphasis(_('here'), _('here')) + newnode['refdocname'] = todo_info['docname'] + newnode['refuri'] = app.builder.get_relative_uri( + fromdocname, todo_info['docname']) + newnode['refuri'] += '#' + todo_info['target']['refid'] + newnode.append(innernode) + para += newnode + para += nodes.Text('.)', '.)') + + # Insert into the todolist + content.append(todo_info['todo']) + content.append(para) + + node.replace_self(content) + +The :event:`doctree-resolved` event is emitted at the end of :ref:`phase 3 +` and allows custom resolving to be done. The handler we have +written for this event is a bit more involved. If the ``todo_include_todos`` +config value (which we'll describe shortly) is false, all ``todo`` and +``todolist`` nodes are removed from the documents. If not, ``todo`` nodes just +stay where and how they are. ``todolist`` nodes are replaced by a list of todo +entries, complete with backlinks to the location where they come from. The list +items are composed of the nodes from the ``todo`` entry and docutils nodes +created on the fly: a paragraph for each entry, containing text that gives the +location, and a link (reference node containing an italic node) with the +backreference. The reference URI is built by ``app.builder.get_relative_uri`` +which creates a suitable URI depending on the used builder, and appending the +todo node's (the target's) ID as the anchor name. + +.. rubric:: The ``setup`` function + +.. currentmodule:: sphinx.application + +As noted :doc:`previously `, the ``setup`` function is a requirement +and is used to plug directives into Sphinx. However, we also use it to hook up +the other parts of our extension. Let's look at our ``setup`` function: + +.. code-block:: python + + def setup(app): + app.add_config_value('todo_include_todos', False, 'html') + + app.add_node(todolist) + app.add_node(todo, + html=(visit_todo_node, depart_todo_node), + latex=(visit_todo_node, depart_todo_node), + text=(visit_todo_node, depart_todo_node)) + + app.add_directive('todo', TodoDirective) + app.add_directive('todolist', TodolistDirective) + app.connect('doctree-resolved', process_todo_nodes) + app.connect('env-purge-doc', purge_todos) + + return {'version': '0.1'} # identifies the version of our extension + +The calls in this function refer to the classes and functions we added earlier. +What the individual calls do is the following: + +* :meth:`~Sphinx.add_config_value` lets Sphinx know that it should recognize the + new *config value* ``todo_include_todos``, whose default value should be + ``False`` (this also tells Sphinx that it is a boolean value). + + If the third argument was ``'html'``, HTML documents would be full rebuild if the + config value changed its value. This is needed for config values that + influence reading (build :ref:`phase 1 `). + +* :meth:`~Sphinx.add_node` adds a new *node class* to the build system. It also + can specify visitor functions for each supported output format. These visitor + functions are needed when the new nodes stay until :ref:`phase 4 ` + -- since the ``todolist`` node is always replaced in :ref:`phase 3 `, + it doesn't need any. + +* :meth:`~Sphinx.add_directive` adds a new *directive*, given by name and class. + +* Finally, :meth:`~Sphinx.connect` adds an *event handler* to the event whose + name is given by the first argument. The event handler function is called + with several arguments which are documented with the event. + +With this, our extension is complete. + + +Using the extension +------------------- + +As before, we need to enable the extension by declaring it in our +:file:`conf.py` file. There are two steps necessary here: + +#. Add the :file:`_ext` directory to the `Python path`_ using + ``sys.path.append``. This should be placed at the top of the file. + +#. Update or create the :confval:`extensions` list and add the extension file + name to the list + +In addition, we may wish to set the ``todo_include_todos`` config value. As +noted above, this defaults to ``False`` but we can set it explicitly. + +For example: + +.. code-block:: python + + import os + import sys + + sys.path.append(os.path.abspath("./_ext")) + + extensions = ['helloworld'] + + todo_include_todos = False + +You can now use the extension throughout your project. For example: + +.. code-block:: rst + :caption: index.rst + + Hello, world + ============ + + .. toctree:: + somefile.rst + someotherfile.rst + + Hello world. Below is the list of TODOs. + + .. todolist:: + +.. code-block:: rst + :caption: somefile.rst + + foo + === + + Some intro text here... + + .. todo:: Fix this + +.. code-block:: rst + :caption: someotherfile.rst + + bar + === + + Some more text here... + + .. todo:: Fix that + +Because we have configured ``todo_include_todos`` to ``False``, we won't +actually see anything rendered for the ``todo`` and ``todolist`` directives. +However, if we toggle this to true, we will see the output described +previously. + + +Further reading +--------------- + +For more information, refer to the `docutils`_ documentation and +:doc:`/extdev/index`. + + +.. _docutils: http://docutils.sourceforge.net/docs/ +.. _Python path: https://docs.python.org/3/using/cmdline.html#envvar-PYTHONPATH .. _docutils documentation: http://docutils.sourceforge.net/docs/ref/rst/directives.html From 93081e2fce3a7795ddbc23fb4f1df9224f17d3fc Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Fri, 8 Feb 2019 17:03:09 +0000 Subject: [PATCH 004/121] doc: Use 'literalinclude' directive for examples This avoid duplication and could conceivably let us test this stuff in code later on. Signed-off-by: Stephen Finucane --- .../tutorials/examples/helloworld.py | 13 + doc/development/tutorials/examples/todo.py | 120 ++++++++ doc/development/tutorials/helloworld.rst | 38 +-- doc/development/tutorials/todo.rst | 263 ++---------------- 4 files changed, 171 insertions(+), 263 deletions(-) create mode 100644 doc/development/tutorials/examples/helloworld.py create mode 100644 doc/development/tutorials/examples/todo.py diff --git a/doc/development/tutorials/examples/helloworld.py b/doc/development/tutorials/examples/helloworld.py new file mode 100644 index 000000000..66ab3295d --- /dev/null +++ b/doc/development/tutorials/examples/helloworld.py @@ -0,0 +1,13 @@ +from docutils import nodes +from docutils.parsers.rst import Directive + + +class HelloWorld(Directive): + + def run(self): + paragraph_node = nodes.paragraph(text='Hello World!') + return [paragraph_node] + + +def setup(app): + app.add_directive("helloworld", HelloWorld) diff --git a/doc/development/tutorials/examples/todo.py b/doc/development/tutorials/examples/todo.py new file mode 100644 index 000000000..bd50ba54a --- /dev/null +++ b/doc/development/tutorials/examples/todo.py @@ -0,0 +1,120 @@ +from docutils import nodes +from docutils.parsers.rst import Directive +from sphinx.locale import _ + + +class todo(nodes.Admonition, nodes.Element): + pass + + +class todolist(nodes.General, nodes.Element): + pass + + +def visit_todo_node(self, node): + self.visit_admonition(node) + + +def depart_todo_node(self, node): + self.depart_admonition(node) + + +class TodolistDirective(Directive): + + def run(self): + return [todolist('')] + + +class TodoDirective(Directive): + + # this enables content in the directive + has_content = True + + def run(self): + env = self.state.document.settings.env + + targetid = 'todo-%d' % env.new_serialno('todo') + targetnode = nodes.target('', '', ids=[targetid]) + + todo_node = todo('\n'.join(self.content)) + todo_node += nodes.title(_('Todo'), _('Todo')) + self.state.nested_parse(self.content, self.content_offset, todo_node) + + if not hasattr(env, 'todo_all_todos'): + env.todo_all_todos = [] + + env.todo_all_todos.append({ + 'docname': env.docname, + 'lineno': self.lineno, + 'todo': todo_node.deepcopy(), + 'target': targetnode, + }) + + return [targetnode, todo_node] + + +def purge_todos(app, env, docname): + if not hasattr(env, 'todo_all_todos'): + return + + env.todo_all_todos = [todo for todo in env.todo_all_todos + if todo['docname'] != docname] + + +def process_todo_nodes(app, doctree, fromdocname): + if not app.config.todo_include_todos: + for node in doctree.traverse(todo): + node.parent.remove(node) + + # Replace all todolist nodes with a list of the collected todos. + # Augment each todo with a backlink to the original location. + env = app.builder.env + + for node in doctree.traverse(todolist): + if not app.config.todo_include_todos: + node.replace_self([]) + continue + + content = [] + + for todo_info in env.todo_all_todos: + para = nodes.paragraph() + filename = env.doc2path(todo_info['docname'], base=None) + description = ( + _('(The original entry is located in %s, line %d and can be found ') % + (filename, todo_info['lineno'])) + para += nodes.Text(description, description) + + # Create a reference + newnode = nodes.reference('', '') + innernode = nodes.emphasis(_('here'), _('here')) + newnode['refdocname'] = todo_info['docname'] + newnode['refuri'] = app.builder.get_relative_uri( + fromdocname, todo_info['docname']) + newnode['refuri'] += '#' + todo_info['target']['refid'] + newnode.append(innernode) + para += newnode + para += nodes.Text('.)', '.)') + + # Insert into the todolist + content.append(todo_info['todo']) + content.append(para) + + node.replace_self(content) + + +def setup(app): + app.add_config_value('todo_include_todos', False, 'html') + + app.add_node(todolist) + app.add_node(todo, + html=(visit_todo_node, depart_todo_node), + latex=(visit_todo_node, depart_todo_node), + text=(visit_todo_node, depart_todo_node)) + + app.add_directive('todo', TodoDirective) + app.add_directive('todolist', TodolistDirective) + app.connect('doctree-resolved', process_todo_nodes) + app.connect('env-purge-doc', purge_todos) + + return {'version': '0.1'} # identifies the version of our extension diff --git a/doc/development/tutorials/helloworld.rst b/doc/development/tutorials/helloworld.rst index b73a12cb0..857b86c9a 100644 --- a/doc/development/tutorials/helloworld.rst +++ b/doc/development/tutorials/helloworld.rst @@ -55,22 +55,9 @@ Writing the extension Open :file:`helloworld.py` and paste the following code in it: -.. code-block:: python - - from docutils import nodes - from docutils.parsers.rst import Directive - - - class HelloWorld(Directive): - - def run(self): - paragraph_node = nodes.paragraph(text='Hello World!') - return [paragraph_node] - - - def setup(app): - app.add_directive("helloworld", HelloWorld) - +.. literalinclude:: examples/helloworld.py + :language: python + :linenos: Some essential things are happening in this example, and you will see them for all directives. @@ -79,13 +66,10 @@ all directives. Our new directive is declared in the ``HelloWorld`` class. -.. code-block:: python - - class HelloWorld(Directive): - - def run(self): - paragraph_node = nodes.paragraph(text='Hello World!') - return [paragraph_node] +.. literalinclude:: examples/helloworld.py + :language: python + :linenos: + :lines: 5-9 This class extends the docutils_' ``Directive`` class. All extensions that create directives should extend this class. @@ -115,10 +99,10 @@ the ``text`` parameter. This function is a requirement. We use it to plug our new directive into Sphinx. -.. code-block:: python - - def setup(app): - app.add_directive("helloworld", HelloWorld) +.. literalinclude:: examples/helloworld.py + :language: python + :linenos: + :lines: 12- The simplest thing you can do it call the :meth:`~Sphinx.add_directive` method, which is what we've done here. For this particular call, the first diff --git a/doc/development/tutorials/todo.rst b/doc/development/tutorials/todo.rst index e3c4861c7..8071bda68 100644 --- a/doc/development/tutorials/todo.rst +++ b/doc/development/tutorials/todo.rst @@ -78,127 +78,9 @@ Writing the extension Open :file:`todo.py` and paste the following code in it, all of which we will explain in detail shortly: -.. code-block:: python - - from docutils import nodes - from docutils.parsers.rst import Directive - from sphinx.locale import _ - - - class todo(nodes.Admonition, nodes.Element): - pass - - - class todolist(nodes.General, nodes.Element): - pass - - - def visit_todo_node(self, node): - self.visit_admonition(node) - - - def depart_todo_node(self, node): - self.depart_admonition(node) - - - class TodolistDirective(Directive): - - def run(self): - return [todolist('')] - - - class TodoDirective(Directive): - - # this enables content in the directive - has_content = True - - def run(self): - env = self.state.document.settings.env - - targetid = 'todo-%d' % env.new_serialno('todo') - targetnode = nodes.target('', '', ids=[targetid]) - - todo_node = todo('\n'.join(self.content)) - todo_node += nodes.title(_('Todo'), _('Todo')) - self.state.nested_parse(self.content, self.content_offset, todo_node) - - if not hasattr(env, 'todo_all_todos'): - env.todo_all_todos = [] - - env.todo_all_todos.append({ - 'docname': env.docname, - 'lineno': self.lineno, - 'todo': todo_node.deepcopy(), - 'target': targetnode, - }) - - return [targetnode, todo_node] - - - def purge_todos(app, env, docname): - if not hasattr(env, 'todo_all_todos'): - return - env.todo_all_todos = [todo for todo in env.todo_all_todos - if todo['docname'] != docname] - - - def process_todo_nodes(app, doctree, fromdocname): - if not app.config.todo_include_todos: - for node in doctree.traverse(todo): - node.parent.remove(node) - - # Replace all todolist nodes with a list of the collected todos. - # Augment each todo with a backlink to the original location. - env = app.builder.env - - for node in doctree.traverse(todolist): - if not app.config.todo_include_todos: - node.replace_self([]) - continue - - content = [] - - for todo_info in env.todo_all_todos: - para = nodes.paragraph() - filename = env.doc2path(todo_info['docname'], base=None) - description = ( - _('(The original entry is located in %s, line %d and can be found ') % - (filename, todo_info['lineno'])) - para += nodes.Text(description, description) - - # Create a reference - newnode = nodes.reference('', '') - innernode = nodes.emphasis(_('here'), _('here')) - newnode['refdocname'] = todo_info['docname'] - newnode['refuri'] = app.builder.get_relative_uri( - fromdocname, todo_info['docname']) - newnode['refuri'] += '#' + todo_info['target']['refid'] - newnode.append(innernode) - para += newnode - para += nodes.Text('.)', '.)') - - # Insert into the todolist - content.append(todo_info['todo']) - content.append(para) - - node.replace_self(content) - - - def setup(app): - app.add_config_value('todo_include_todos', False, 'html') - - app.add_node(todolist) - app.add_node(todo, - html=(visit_todo_node, depart_todo_node), - latex=(visit_todo_node, depart_todo_node), - text=(visit_todo_node, depart_todo_node)) - - app.add_directive('todo', TodoDirective) - app.add_directive('todolist', TodolistDirective) - app.connect('doctree-resolved', process_todo_nodes) - app.connect('env-purge-doc', purge_todos) - - return {'version': '0.1'} # identifies the version of our extension +.. literalinclude:: examples/todo.py + :language: python + :linenos: This is far more extensive extension than the one detailed in :doc:`helloworld`, however, we will will look at each piece step-by-step to explain what's @@ -208,21 +90,10 @@ happening. Let's start with the node classes: -.. todo:: Use literal-include - -.. code-block:: python - - class todo(nodes.Admonition, nodes.Element): - pass - - class todolist(nodes.General, nodes.Element): - pass - - def visit_todo_node(self, node): - self.visit_admonition(node) - - def depart_todo_node(self, node): - self.depart_admonition(node) +.. literalinclude:: examples/todo.py + :language: python + :linenos: + :lines: 6-19 Node classes usually don't have to do anything except inherit from the standard docutils classes defined in :mod:`docutils.nodes`. ``todo`` inherits from @@ -246,46 +117,20 @@ the class should have attributes that configure the allowed markup, and a Looking first at the ``TodolistDirective`` directive: -.. code-block:: python - - class TodolistDirective(Directive): - - def run(self): - return [todolist('')] +.. literalinclude:: examples/todo.py + :language: python + :linenos: + :lines: 22-25 It's very simple, creating and returning an instance of our ``todolist`` node class. The ``TodolistDirective`` directive itself has neither content nor arguments that need to be handled. That brings us to the ``TodoDirective`` directive: -.. code-block:: python - - class TodoDirective(Directive): - - # this enables content in the directive - has_content = True - - def run(self): - env = self.state.document.settings.env - - targetid = "todo-%d" % env.new_serialno('todo') - targetnode = nodes.target('', '', ids=[targetid]) - - todo_node = todo('\n'.join(self.content)) - todo_node += nodes.title(_('Todo'), _('Todo')) - self.state.nested_parse(self.content, self.content_offset, todo_node) - - if not hasattr(env, 'todo_all_todos'): - env.todo_all_todos = [] - - env.todo_all_todos.append({ - 'docname': env.docname, - 'lineno': self.lineno, - 'todo': todo_node.deepcopy(), - 'target': targetnode, - }) - - return [targetnode, todo_node] +.. literalinclude:: examples/todo.py + :language: python + :linenos: + :lines: 28-53 Several important things are covered here. First, as you can see, you can refer to the :ref:`build environment instance ` using @@ -337,13 +182,10 @@ here. Let's look at the event handlers used in the above example. First, the one for the :event:`env-purge-doc` event: -.. code-block:: python - - def purge_todos(app, env, docname): - if not hasattr(env, 'todo_all_todos'): - return - env.todo_all_todos = [todo for todo in env.todo_all_todos - if todo['docname'] != docname] +.. literalinclude:: examples/todo.py + :language: python + :linenos: + :lines: 56-61 Since we store information from source files in the environment, which is persistent, it may become out of date when the source file changes. Therefore, @@ -355,48 +197,10 @@ added again during parsing. The other handler belongs to the :event:`doctree-resolved` event: -.. code-block:: python - - def process_todo_nodes(app, doctree, fromdocname): - if not app.config.todo_include_todos: - for node in doctree.traverse(todo): - node.parent.remove(node) - - # Replace all todolist nodes with a list of the collected todos. - # Augment each todo with a backlink to the original location. - env = app.builder.env - - for node in doctree.traverse(todolist): - if not app.config.todo_include_todos: - node.replace_self([]) - continue - - content = [] - - for todo_info in env.todo_all_todos: - para = nodes.paragraph() - filename = env.doc2path(todo_info['docname'], base=None) - description = ( - _('(The original entry is located in %s, line %d and can be found ') % - (filename, todo_info['lineno'])) - para += nodes.Text(description, description) - - # Create a reference - newnode = nodes.reference('', '') - innernode = nodes.emphasis(_('here'), _('here')) - newnode['refdocname'] = todo_info['docname'] - newnode['refuri'] = app.builder.get_relative_uri( - fromdocname, todo_info['docname']) - newnode['refuri'] += '#' + todo_info['target']['refid'] - newnode.append(innernode) - para += newnode - para += nodes.Text('.)', '.)') - - # Insert into the todolist - content.append(todo_info['todo']) - content.append(para) - - node.replace_self(content) +.. literalinclude:: examples/todo.py + :language: python + :linenos: + :lines: 64-103 The :event:`doctree-resolved` event is emitted at the end of :ref:`phase 3 ` and allows custom resolving to be done. The handler we have @@ -420,23 +224,10 @@ As noted :doc:`previously `, the ``setup`` function is a requirement and is used to plug directives into Sphinx. However, we also use it to hook up the other parts of our extension. Let's look at our ``setup`` function: -.. code-block:: python - - def setup(app): - app.add_config_value('todo_include_todos', False, 'html') - - app.add_node(todolist) - app.add_node(todo, - html=(visit_todo_node, depart_todo_node), - latex=(visit_todo_node, depart_todo_node), - text=(visit_todo_node, depart_todo_node)) - - app.add_directive('todo', TodoDirective) - app.add_directive('todolist', TodolistDirective) - app.connect('doctree-resolved', process_todo_nodes) - app.connect('env-purge-doc', purge_todos) - - return {'version': '0.1'} # identifies the version of our extension +.. literalinclude:: examples/todo.py + :language: python + :linenos: + :lines: 106- The calls in this function refer to the classes and functions we added earlier. What the individual calls do is the following: From b1ebdcd3c68cb3942ad407b39c994b3fa05ad257 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Fri, 8 Feb 2019 17:47:19 +0000 Subject: [PATCH 005/121] doc: Add "recipe" tutorial This is based on a post from opensource.com [1] and demonstrates how one can use indexes for cross-referencing and domains to group these indexes along with domains and roles. The source code was taken from [2] after getting the license changed [3]. [1] https://opensource.com/article/18/11/building-custom-workflows-sphinx [2] https://github.com/ofosos/sphinxrecipes [3] https://github.com/ofosos/sphinxrecipes/issues/1 Signed-off-by: Stephen Finucane --- doc/development/tutorials/examples/recipe.py | 239 +++++++++++++++++++ doc/development/tutorials/index.rst | 1 + doc/development/tutorials/recipe.rst | 224 +++++++++++++++++ doc/usage/restructuredtext/domains.rst | 1 + 4 files changed, 465 insertions(+) create mode 100644 doc/development/tutorials/examples/recipe.py create mode 100644 doc/development/tutorials/recipe.rst diff --git a/doc/development/tutorials/examples/recipe.py b/doc/development/tutorials/examples/recipe.py new file mode 100644 index 000000000..213d30ff6 --- /dev/null +++ b/doc/development/tutorials/examples/recipe.py @@ -0,0 +1,239 @@ +import docutils +from docutils import nodes +from docutils.parsers import rst +from docutils.parsers.rst import directives +import sphinx +from sphinx import addnodes +from sphinx.directives import ObjectDescription +from sphinx.domains import Domain +from sphinx.domains import Index +from sphinx.domains.std import StandardDomain +from sphinx.roles import XRefRole +from sphinx.util.nodes import make_refnode + + +class RecipeDirective(ObjectDescription): + """A custom directive that describes a recipe.""" + + has_content = True + required_arguments = 1 + option_spec = { + 'contains': directives.unchanged_required + } + + def handle_signature(self, sig, signode): + signode += addnodes.desc_name(text=sig) + signode += addnodes.desc_type(text='Recipe') + return sig + + def add_target_and_index(self, name_cls, sig, signode): + signode['ids'].append('recipe' + '-' + sig) + if 'noindex' not in self.options: + name = '{}.{}.{}'.format('rcp', type(self).__name__, sig) + imap = self.env.domaindata['rcp']['obj2ingredient'] + imap[name] = list(self.options.get('contains').split(' ')) + objs = self.env.domaindata['rcp']['objects'] + objs.append((name, + sig, + 'Recipe', + self.env.docname, + 'recipe' + '-' + sig, + 0)) + + +class IngredientIndex(Index): + """A custom directive that creates an ingredient matrix.""" + + name = 'ing' + localname = 'Ingredient Index' + shortname = 'Ingredient' + + def __init__(self, *args, **kwargs): + super(IngredientIndex, self).__init__(*args, **kwargs) + + def generate(self, docnames=None): + """Return entries for the index given by *name*. + + If *docnames* is given, restrict to entries referring to these + docnames. The return value is a tuple of ``(content, collapse)``, + where: + + *collapse* is a boolean that determines if sub-entries should + start collapsed (for output formats that support collapsing + sub-entries). + + *content* is a sequence of ``(letter, entries)`` tuples, where *letter* + is the "heading" for the given *entries*, usually the starting letter. + + *entries* is a sequence of single entries, where a single entry is a + sequence ``[name, subtype, docname, anchor, extra, qualifier, descr]``. + + The items in this sequence have the following meaning: + + - `name` -- the name of the index entry to be displayed + - `subtype` -- sub-entry related type: + - ``0`` -- normal entry + - ``1`` -- entry with sub-entries + - ``2`` -- sub-entry + - `docname` -- docname where the entry is located + - `anchor` -- anchor for the entry within `docname` + - `extra` -- extra info for the entry + - `qualifier` -- qualifier for the description + - `descr` -- description for the entry + + Qualifier and description are not rendered by some builders, such as + the LaTeX builder. + """ + + content = {} + + objs = {name: (dispname, typ, docname, anchor) + for name, dispname, typ, docname, anchor, prio + in self.domain.get_objects()} + + imap = {} + ingr = self.domain.data['obj2ingredient'] + for name, ingr in ingr.items(): + for ig in ingr: + imap.setdefault(ig,[]) + imap[ig].append(name) + + for ingredient in imap.keys(): + lis = content.setdefault(ingredient, []) + objlis = imap[ingredient] + for objname in objlis: + dispname, typ, docname, anchor = objs[objname] + lis.append(( + dispname, 0, docname, + anchor, + docname, '', typ + )) + re = [(k, v) for k, v in sorted(content.items())] + + return (re, True) + + +class RecipeIndex(Index): + name = 'rcp' + localname = 'Recipe Index' + shortname = 'Recipe' + + def __init__(self, *args, **kwargs): + super(RecipeIndex, self).__init__(*args, **kwargs) + + def generate(self, docnames=None): + """Return entries for the index given by *name*. + + If *docnames* is given, restrict to entries referring to these + docnames. The return value is a tuple of ``(content, collapse)``, + where: + + *collapse* is a boolean that determines if sub-entries should + start collapsed (for output formats that support collapsing + sub-entries). + + *content* is a sequence of ``(letter, entries)`` tuples, where *letter* + is the "heading" for the given *entries*, usually the starting letter. + + *entries* is a sequence of single entries, where a single entry is a + sequence ``[name, subtype, docname, anchor, extra, qualifier, descr]``. + + The items in this sequence have the following meaning: + + - `name` -- the name of the index entry to be displayed + - `subtype` -- sub-entry related type: + - ``0`` -- normal entry + - ``1`` -- entry with sub-entries + - ``2`` -- sub-entry + - `docname` -- docname where the entry is located + - `anchor` -- anchor for the entry within `docname` + - `extra` -- extra info for the entry + - `qualifier` -- qualifier for the description + - `descr` -- description for the entry + + Qualifier and description are not rendered by some builders, such as + the LaTeX builder. + """ + + content = {} + items = ((name, dispname, typ, docname, anchor) + for name, dispname, typ, docname, anchor, prio + in self.domain.get_objects()) + items = sorted(items, key=lambda item: item[0]) + for name, dispname, typ, docname, anchor in items: + lis = content.setdefault('Recipe', []) + lis.append(( + dispname, 0, docname, + anchor, + docname, '', typ + )) + re = [(k, v) for k, v in sorted(content.items())] + + return (re, True) + + +class RecipeDomain(Domain): + + name = 'rcp' + label = 'Recipe Sample' + + roles = { + 'reref': XRefRole() + } + + directives = { + 'recipe': RecipeDirective, + } + + indices = { + RecipeIndex, + IngredientIndex + } + + initial_data = { + 'objects': [], # object list + 'obj2ingredient': {}, # name -> object + } + + def get_full_qualified_name(self, node): + """Return full qualified name for a given node""" + return "{}.{}.{}".format('rcp', + type(node).__name__, + node.arguments[0]) + + def get_objects(self): + for obj in self.data['objects']: + yield(obj) + + def resolve_xref(self, env, fromdocname, builder, typ, target, node, + contnode): + + match = [(docname, anchor) + for name, sig, typ, docname, anchor, prio + in self.get_objects() if sig == target] + + if len(match) > 0: + todocname = match[0][0] + targ = match[0][1] + + return make_refnode(builder, fromdocname, todocname, targ, + contnode, targ) + else: + print("Awww, found nothing") + return None + + +def setup(app): + app.add_domain(RecipeDomain) + + StandardDomain.initial_data['labels']['recipeindex'] = ( + 'rcp-rcp', '', 'Recipe Index') + StandardDomain.initial_data['labels']['ingredientindex'] = ( + 'rcp-ing', '', 'Ingredient Index') + + StandardDomain.initial_data['anonlabels']['recipeindex'] = ( + 'rcp-rcp', '') + StandardDomain.initial_data['anonlabels']['ingredientindex'] = ( + 'rcp-ing', '') + + return {'version': '0.1'} # identifies the version of our extension diff --git a/doc/development/tutorials/index.rst b/doc/development/tutorials/index.rst index cb8dce435..a79e6a8b6 100644 --- a/doc/development/tutorials/index.rst +++ b/doc/development/tutorials/index.rst @@ -9,3 +9,4 @@ Refer to the following tutorials to get started with extension development. helloworld todo + recipe diff --git a/doc/development/tutorials/recipe.rst b/doc/development/tutorials/recipe.rst new file mode 100644 index 000000000..67841c3a9 --- /dev/null +++ b/doc/development/tutorials/recipe.rst @@ -0,0 +1,224 @@ +Developing a "recipe" extension +=============================== + +The objective of this tutorial is to illustrate roles, directives and domains. +Once complete, we will be able to use this extension to describe a recipe and +reference that recipe from elsewhere in our documentation. + +.. note:: + + This tutorial is based on a guide first published on `opensource.com`_ and + is provided here with the original author's permission. + + .. _opensource.com: https://opensource.com/article/18/11/building-custom-workflows-sphinx + + +Overview +-------- + +We want the extension to add the following to Sphinx: + +* A ``recipe`` :term:`directive`, containing some content describing the recipe + steps, along with a ``:contains:`` argument highlighting the main ingredients + of the recipe. + +* A ``reref`` :term:`role`, which provides a cross-reference to the recipe + itself. + +* A ``rcp`` :term:`domain`, which allows us to tie together the above role and + domain, along with things like indices. + +For that, we will need to add the following elements to Sphinx: + +* A new directive called ``recipe`` + +* New indexes to allow us to reference ingredient and recipes + +* A new domain called ``rcp``, which will contain the ``recipe`` directive and + ``reref`` role + + +Prerequisites +------------- + +As with :doc:`the previous extensions `, we will not be distributing this +plugin via PyPI so once again we need a Sphinx project to call this from. You +can use an existing project or create a new one using +:program:`sphinx-quickstart`. + +We assume you are using separate source (:file:`source`) and build +(:file:`build`) folders. Your extension file could be in any folder of your +project. In our case, let's do the following: + +#. Create an :file:`_ext` folder in :file:`source` +#. Create a new Python file in the :file:`_ext` folder called :file:`recipe.py` + +Here is an example of the folder structure you might obtain: + +.. code-block:: text + + └── source +    ├── _ext + │   └── todo.py +    ├── conf.py +    └── index.rst + + +Writing the extension +--------------------- + +Open :file:`receipe.py` and paste the following code in it, all of which we +will explain in detail shortly: + +.. literalinclude:: examples/recipe.py + :language: python + :linenos: + +Let's look at each piece of this extension step-by-step to explain what's going +on. + +.. rubric:: The directive class + +The first thing to examine is the ``RecipeNode`` directive: + +.. literalinclude:: examples/recipe.py + :language: python + :linenos: + :lines: 15-40 + +Unlike :doc:`helloworld` and :doc:`todo`, this directive doesn't derive from +:class:`docutils.parsers.rst.Directive` and doesn't define a ``run`` method. +Instead, it derives from :class:`sphinx.directives.ObjectDescription` and +defines ``handle_signature`` and ``add_target_and_index`` methods. This is +because ``ObjectDescription`` is a special-purpose directive that's intended +for describing things like classes, functions, or, in our case, recipes. More +specifically, ``handle_signature`` implements parsing the signature of the +directive and passes on the object's name and type to its superclass, while +``add_taget_and_index`` adds a target (to link to) and an entry to the index +for this node. + +We also see that this directive defines ``has_content``, ``required_arguments`` +and ``option_spec``. Unlike the ``TodoDirective`` directive added in the +:doc:`previous tutorial `, this directive takes a single argument, the +recipe name, and an optional argument, ``contains``, in addition to the nested +reStructuredText in the body. + +.. rubric:: The index classes + +.. currentmodule:: sphinx.domains + +.. todo:: Add brief overview of indices + +.. literalinclude:: examples/recipe.py + :language: python + :linenos: + :lines: 44-172 + +Both ``IngredientIndex`` and ``RecipeIndex`` are derived from :class:`Index`. +They implement custom logic to generate a tuple of values that define the +index. Note that ``RecipeIndex`` is a degenerate index that has only one entry. +Extending it to cover more object types is not yet part of the code. + +Both indices use the method :meth:`Index.generate` to do their work. This +method combines the information from our domain, sorts it, and returns it in a +list structure that will be accepted by Sphinx. This might look complicated but +all it really is is a list of tuples like ``('tomato', 'TomatoSoup', 'test', +'rec-TomatoSoup',...)``. Refer to the :doc:`domain API guide +` for more information on this API. + +.. rubric:: The domain + +A Sphinx domain is a specialized container that ties together roles, +directives, and indices, among other things. Let's look at the domain we're +creating here. + +.. literalinclude:: examples/recipe.py + :language: python + :linenos: + :lines: 175-223 + +There are some interesting things to note about this ``rcp`` domain and domains +in general. Firstly, we actually register our directives, roles and indices +here, via the ``directives``, ``roles`` and ``indices`` attributes, rather than +via calls later on in ``setup``. We can also note that we aren't actually +defining a custom role and are instead reusing the +:class:`sphinx.roles.XRefRole` role and defining the +:class:`sphinx.domains.Domain.resolve_xref` method. This method takes two +arguments, ``typ`` and ``target``, which refer to the cross-reference type and +its target name. We'll use ``target`` to resolve our destination from our +domain's ``objects`` because we currently have only one type of node. + +Moving on, we can see that we've defined two items in ``intitial_data``: +``objects`` and ``obj2ingredient``. These contain a list of all objects defined +(i.e. all recipes) and a hash that maps a canonical ingredient name to the list +of objects. The way we name objects is common across our extension and is +defined in the ``get_full_qualified_name`` method. For each object created, the +canonical name is ``rcp..``, where ```` is the +Python type of the object, and ```` is the name the documentation +writer gives the object. This enables the extension to use different object +types that share the same name. Having a canonical name and central place for +our objects is a huge advantage. Both our indices and our cross-referencing +code use this feature. + +.. rubric:: The ``setup`` function + +.. currentmodule:: sphinx.application + +:doc:`As always `, the ``setup`` function is a requirement and is used to +hook the various parts of our extension into Sphinx. Let's look at the +``setup`` function for this extension. + +.. literalinclude:: examples/recipe.py + :language: python + :linenos: + :lines: 226- + +This looks a little different to what we're used to seeing. There are no calls +to :meth:`~Sphinx.add_directive` or even :meth:`~Sphinx.add_role`. Instead, we +have a single call to :meth:`~Sphinx.add_domain` followed by some +initialization of the :ref:`standard domain `. This is because we +had already registered our directives, roles and indexes as part of the +directive itself. + + +Using the extension +------------------- + +You can now use the extension throughout your project. For example: + +.. code-block:: rst + :caption: index.rst + + Joe's Recipes + ============= + + Below are a collection of my favourite receipes. I highly recommend the + :rcp:reref:`TomatoSoup` receipe in particular! + + .. toctree:: + + tomato-soup + +.. code-block:: rst + :caption: tomato-soup.rst + + The recipe contains `tomato` and `cilantro`. + + .. rcp:recipe:: TomatoSoup + :contains: tomato cilantro salt pepper + + This recipe is a tasty tomato soup, combine all ingredients + and cook. + +The important things to note are the use of the ``:rcp:recipe:`` role to +cross-reference the recipe actually defined elsewhere (using the +``:rcp:recipe:`` directive. + + +Further reading +--------------- + +For more information, refer to the `docutils`_ documentation and +:doc:`/extdev/index`. + +.. _docutils: http://docutils.sourceforge.net/docs/ diff --git a/doc/usage/restructuredtext/domains.rst b/doc/usage/restructuredtext/domains.rst index 3ac90b5fb..5e6c5d56a 100644 --- a/doc/usage/restructuredtext/domains.rst +++ b/doc/usage/restructuredtext/domains.rst @@ -1195,6 +1195,7 @@ Configuration Variables See :ref:`cpp-config`. +.. _domains-std: The Standard Domain ------------------- From 5c061ff2665f7177b110416b49b5dd37aadeda5b Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Mon, 11 Feb 2019 10:44:49 +0000 Subject: [PATCH 006/121] docs: Address review comments helloworld: - Return version metadata from extension - Use 'reST' instead of 'rST' - Don't use single backticks todo: - Return version metadata from extension - Link to events section of API guide, rather than entire document - Include name of phases in when describing build phases - Use more method cross-references where possible - Fix typo in usage example recipe: - Return version metadata from extension - Rework code to simplify things - Remove docstrings from 'generate' functions, which are simply duplicates of the original docstring - Rename 'rcp' directive to 'recipe', the 'reref' role to 'ref', and a whole lot of variables to something more grokable - Fix typos in both documentation and code I've also fixed up the docstrings for some of the 'domain' functions to make them render a little nicer (they took me a while to figure out). Signed-off-by: Stephen Finucane --- doc/development/tutorials/examples/README.rst | 11 + .../tutorials/examples/helloworld.py | 6 + doc/development/tutorials/examples/recipe.py | 210 ++++++------------ doc/development/tutorials/examples/todo.py | 6 +- doc/development/tutorials/helloworld.rst | 17 +- doc/development/tutorials/recipe.rst | 83 ++++--- doc/development/tutorials/todo.rst | 43 ++-- sphinx/domains/__init__.py | 106 ++++++--- 8 files changed, 236 insertions(+), 246 deletions(-) create mode 100644 doc/development/tutorials/examples/README.rst diff --git a/doc/development/tutorials/examples/README.rst b/doc/development/tutorials/examples/README.rst new file mode 100644 index 000000000..2b9c01b5e --- /dev/null +++ b/doc/development/tutorials/examples/README.rst @@ -0,0 +1,11 @@ +:orphan: + +Tutorial examples +================= + +This directory contains a number of examples used in the tutorials. These are +intended to be increasingly complex to demonstrate the various features of +Sphinx, but should aim to be as complicated as necessary but no more. +Individual sections are referenced by line numbers, meaning if you make changes +to the source files, you should update the references in the documentation +accordingly. diff --git a/doc/development/tutorials/examples/helloworld.py b/doc/development/tutorials/examples/helloworld.py index 66ab3295d..d6d81fd4f 100644 --- a/doc/development/tutorials/examples/helloworld.py +++ b/doc/development/tutorials/examples/helloworld.py @@ -11,3 +11,9 @@ class HelloWorld(Directive): def setup(app): app.add_directive("helloworld", HelloWorld) + + return { + 'version': '0.1', + 'parallel_read_safe': True, + 'parallel_write_safe': True, + } diff --git a/doc/development/tutorials/examples/recipe.py b/doc/development/tutorials/examples/recipe.py index 213d30ff6..9c54a93f0 100644 --- a/doc/development/tutorials/examples/recipe.py +++ b/doc/development/tutorials/examples/recipe.py @@ -1,3 +1,5 @@ +from collections import defaultdict + import docutils from docutils import nodes from docutils.parsers import rst @@ -18,33 +20,27 @@ class RecipeDirective(ObjectDescription): has_content = True required_arguments = 1 option_spec = { - 'contains': directives.unchanged_required + 'contains': directives.unchanged_required, } def handle_signature(self, sig, signode): signode += addnodes.desc_name(text=sig) - signode += addnodes.desc_type(text='Recipe') return sig def add_target_and_index(self, name_cls, sig, signode): signode['ids'].append('recipe' + '-' + sig) if 'noindex' not in self.options: - name = '{}.{}.{}'.format('rcp', type(self).__name__, sig) - imap = self.env.domaindata['rcp']['obj2ingredient'] - imap[name] = list(self.options.get('contains').split(' ')) - objs = self.env.domaindata['rcp']['objects'] - objs.append((name, - sig, - 'Recipe', - self.env.docname, - 'recipe' + '-' + sig, - 0)) + ingredients = [ + x.strip() for x in self.options.get('contains').split(',')] + + recipes = self.env.get_domain('recipe') + recipes.add_recipe(sig, ingredients) class IngredientIndex(Index): - """A custom directive that creates an ingredient matrix.""" + """A custom index that creates an ingredient matrix.""" - name = 'ing' + name = 'ingredient' localname = 'Ingredient Index' shortname = 'Ingredient' @@ -52,69 +48,39 @@ class IngredientIndex(Index): super(IngredientIndex, self).__init__(*args, **kwargs) def generate(self, docnames=None): - """Return entries for the index given by *name*. + content = defaultdict(list) - If *docnames* is given, restrict to entries referring to these - docnames. The return value is a tuple of ``(content, collapse)``, - where: + recipes = {name: (dispname, typ, docname, anchor) + for name, dispname, typ, docname, anchor, _ + in self.domain.get_objects()} + recipe_ingredients = self.domain.data['recipe_ingredients'] + ingredient_recipes = defaultdict(list) - *collapse* is a boolean that determines if sub-entries should - start collapsed (for output formats that support collapsing - sub-entries). + # flip from recipe_ingredients to ingredient_recipes + for recipe_name, ingredients in recipe_ingredients.items(): + for ingredient in ingredients: + ingredient_recipes[ingredient].append(recipe_name) - *content* is a sequence of ``(letter, entries)`` tuples, where *letter* - is the "heading" for the given *entries*, usually the starting letter. + # convert the mapping of ingredient to recipes to produce the expected + # output, shown below, using the ingredient name as a key to group + # + # name, subtype, docname, anchor, extra, qualifier, description + for ingredient, recipe_names in ingredient_recipes.items(): + for recipe_name in recipe_names: + dispname, typ, docname, anchor = recipes[recipe_name] + content[ingredient].append( + (dispname, 0, docname, anchor, docname, '', typ)) - *entries* is a sequence of single entries, where a single entry is a - sequence ``[name, subtype, docname, anchor, extra, qualifier, descr]``. + # convert the dict to the sorted list of tuples expected + content = sorted(content.items()) - The items in this sequence have the following meaning: - - - `name` -- the name of the index entry to be displayed - - `subtype` -- sub-entry related type: - - ``0`` -- normal entry - - ``1`` -- entry with sub-entries - - ``2`` -- sub-entry - - `docname` -- docname where the entry is located - - `anchor` -- anchor for the entry within `docname` - - `extra` -- extra info for the entry - - `qualifier` -- qualifier for the description - - `descr` -- description for the entry - - Qualifier and description are not rendered by some builders, such as - the LaTeX builder. - """ - - content = {} - - objs = {name: (dispname, typ, docname, anchor) - for name, dispname, typ, docname, anchor, prio - in self.domain.get_objects()} - - imap = {} - ingr = self.domain.data['obj2ingredient'] - for name, ingr in ingr.items(): - for ig in ingr: - imap.setdefault(ig,[]) - imap[ig].append(name) - - for ingredient in imap.keys(): - lis = content.setdefault(ingredient, []) - objlis = imap[ingredient] - for objname in objlis: - dispname, typ, docname, anchor = objs[objname] - lis.append(( - dispname, 0, docname, - anchor, - docname, '', typ - )) - re = [(k, v) for k, v in sorted(content.items())] - - return (re, True) + return content, True class RecipeIndex(Index): - name = 'rcp' + """A custom index that creates an recipe matrix.""" + + name = 'recipe' localname = 'Recipe Index' shortname = 'Recipe' @@ -122,92 +88,54 @@ class RecipeIndex(Index): super(RecipeIndex, self).__init__(*args, **kwargs) def generate(self, docnames=None): - """Return entries for the index given by *name*. + content = defaultdict(list) - If *docnames* is given, restrict to entries referring to these - docnames. The return value is a tuple of ``(content, collapse)``, - where: + # sort the list of recipes in alphabetical order + recipes = self.domain.get_objects() + recipes = sorted(recipes, key=lambda recipe: recipe[0]) - *collapse* is a boolean that determines if sub-entries should - start collapsed (for output formats that support collapsing - sub-entries). + # generate the expected output, shown below, from the above using the + # first letter of the recipe as a key to group thing + # + # name, subtype, docname, anchor, extra, qualifier, description + for name, dispname, typ, docname, anchor, _ in recipes: + content[dispname[0].lower()].append( + (dispname, 0, docname, anchor, docname, '', typ)) - *content* is a sequence of ``(letter, entries)`` tuples, where *letter* - is the "heading" for the given *entries*, usually the starting letter. + # convert the dict to the sorted list of tuples expected + content = sorted(content.items()) - *entries* is a sequence of single entries, where a single entry is a - sequence ``[name, subtype, docname, anchor, extra, qualifier, descr]``. - - The items in this sequence have the following meaning: - - - `name` -- the name of the index entry to be displayed - - `subtype` -- sub-entry related type: - - ``0`` -- normal entry - - ``1`` -- entry with sub-entries - - ``2`` -- sub-entry - - `docname` -- docname where the entry is located - - `anchor` -- anchor for the entry within `docname` - - `extra` -- extra info for the entry - - `qualifier` -- qualifier for the description - - `descr` -- description for the entry - - Qualifier and description are not rendered by some builders, such as - the LaTeX builder. - """ - - content = {} - items = ((name, dispname, typ, docname, anchor) - for name, dispname, typ, docname, anchor, prio - in self.domain.get_objects()) - items = sorted(items, key=lambda item: item[0]) - for name, dispname, typ, docname, anchor in items: - lis = content.setdefault('Recipe', []) - lis.append(( - dispname, 0, docname, - anchor, - docname, '', typ - )) - re = [(k, v) for k, v in sorted(content.items())] - - return (re, True) + return content, True class RecipeDomain(Domain): - name = 'rcp' + name = 'recipe' label = 'Recipe Sample' - roles = { - 'reref': XRefRole() + 'ref': XRefRole() } - directives = { 'recipe': RecipeDirective, } - indices = { RecipeIndex, IngredientIndex } - initial_data = { - 'objects': [], # object list - 'obj2ingredient': {}, # name -> object + 'recipes': [], # object list + 'recipe_ingredients': {}, # name -> object } def get_full_qualified_name(self, node): - """Return full qualified name for a given node""" - return "{}.{}.{}".format('rcp', - type(node).__name__, - node.arguments[0]) + return '{}.{}'.format('recipe', node.arguments[0]) def get_objects(self): - for obj in self.data['objects']: + for obj in self.data['recipes']: yield(obj) def resolve_xref(self, env, fromdocname, builder, typ, target, node, contnode): - match = [(docname, anchor) for name, sig, typ, docname, anchor, prio in self.get_objects() if sig == target] @@ -219,21 +147,25 @@ class RecipeDomain(Domain): return make_refnode(builder, fromdocname, todocname, targ, contnode, targ) else: - print("Awww, found nothing") + print('Awww, found nothing') return None + def add_recipe(self, signature, ingredients): + """Add a new recipe to the domain.""" + name = '{}.{}'.format('recipe', signature) + anchor = 'recipe-{}'.format(signature) + + self.data['recipe_ingredients'][name] = ingredients + # name, dispname, type, docname, anchor, priority + self.data['recipes'].append( + (name, signature, 'Recipe', self.env.docname, anchor, 0)) + def setup(app): app.add_domain(RecipeDomain) - StandardDomain.initial_data['labels']['recipeindex'] = ( - 'rcp-rcp', '', 'Recipe Index') - StandardDomain.initial_data['labels']['ingredientindex'] = ( - 'rcp-ing', '', 'Ingredient Index') - - StandardDomain.initial_data['anonlabels']['recipeindex'] = ( - 'rcp-rcp', '') - StandardDomain.initial_data['anonlabels']['ingredientindex'] = ( - 'rcp-ing', '') - - return {'version': '0.1'} # identifies the version of our extension + return { + 'version': '0.1', + 'parallel_read_safe': True, + 'parallel_write_safe': True, + } diff --git a/doc/development/tutorials/examples/todo.py b/doc/development/tutorials/examples/todo.py index bd50ba54a..d46f90821 100644 --- a/doc/development/tutorials/examples/todo.py +++ b/doc/development/tutorials/examples/todo.py @@ -117,4 +117,8 @@ def setup(app): app.connect('doctree-resolved', process_todo_nodes) app.connect('env-purge-doc', purge_todos) - return {'version': '0.1'} # identifies the version of our extension + return { + 'version': '0.1', + 'parallel_read_safe': True, + 'parallel_write_safe': True, + } diff --git a/doc/development/tutorials/helloworld.rst b/doc/development/tutorials/helloworld.rst index 857b86c9a..a042f7b05 100644 --- a/doc/development/tutorials/helloworld.rst +++ b/doc/development/tutorials/helloworld.rst @@ -2,12 +2,13 @@ Developing a "Hello world" extension ==================================== The objective of this tutorial is to create a very basic extension that adds a -new directive. This directive will output a paragraph containing `hello world`. +new directive. This directive will output a paragraph containing "hello world". Only basic information is provided in this tutorial. For more information, refer to the :doc:`other tutorials ` that go into more details. .. warning:: + For this extension, you will need some basic understanding of docutils_ and Python. @@ -17,7 +18,7 @@ Overview We want the extension to add the following to Sphinx: -* A ``helloworld`` directive, that will simply output the text `hello world`. +* A ``helloworld`` directive, that will simply output the text "hello world". Prerequisites @@ -104,10 +105,10 @@ Sphinx. :linenos: :lines: 12- -The simplest thing you can do it call the :meth:`~Sphinx.add_directive` -method, which is what we've done here. For this particular call, the first -argument is the name of the directive itself as used in an rST file. In this -case, we would use ``helloworld``. For example: +The simplest thing you can do it call the :meth:`~Sphinx.add_directive` method, +which is what we've done here. For this particular call, the first argument is +the name of the directive itself as used in a reST file. In this case, we would +use ``helloworld``. For example: .. code-block:: rst @@ -117,6 +118,10 @@ case, we would use ``helloworld``. For example: Some more text here... +We also return the :ref:`extension metadata ` that indicates the +version of our extension, along with the fact that it is safe to use the +extension for both parallel reading and writing. + Using the extension ------------------- diff --git a/doc/development/tutorials/recipe.rst b/doc/development/tutorials/recipe.rst index 67841c3a9..25a2c0732 100644 --- a/doc/development/tutorials/recipe.rst +++ b/doc/development/tutorials/recipe.rst @@ -19,14 +19,14 @@ Overview We want the extension to add the following to Sphinx: * A ``recipe`` :term:`directive`, containing some content describing the recipe - steps, along with a ``:contains:`` argument highlighting the main ingredients + steps, along with a ``:contains:`` option highlighting the main ingredients of the recipe. -* A ``reref`` :term:`role`, which provides a cross-reference to the recipe +* A ``ref`` :term:`role`, which provides a cross-reference to the recipe itself. -* A ``rcp`` :term:`domain`, which allows us to tie together the above role and - domain, along with things like indices. +* A ``recipe`` :term:`domain`, which allows us to tie together the above role + and domain, along with things like indices. For that, we will need to add the following elements to Sphinx: @@ -34,24 +34,15 @@ For that, we will need to add the following elements to Sphinx: * New indexes to allow us to reference ingredient and recipes -* A new domain called ``rcp``, which will contain the ``recipe`` directive and - ``reref`` role +* A new domain called ``recipe``, which will contain the ``recipe`` directive + and ``ref`` role Prerequisites ------------- -As with :doc:`the previous extensions `, we will not be distributing this -plugin via PyPI so once again we need a Sphinx project to call this from. You -can use an existing project or create a new one using -:program:`sphinx-quickstart`. - -We assume you are using separate source (:file:`source`) and build -(:file:`build`) folders. Your extension file could be in any folder of your -project. In our case, let's do the following: - -#. Create an :file:`_ext` folder in :file:`source` -#. Create a new Python file in the :file:`_ext` folder called :file:`recipe.py` +We need the same setup as in :doc:`the previous extensions `. This time, +we will be putting out extension in a file called :file:`recipe.py`. Here is an example of the folder structure you might obtain: @@ -59,7 +50,7 @@ Here is an example of the folder structure you might obtain: └── source    ├── _ext - │   └── todo.py + │   └── recipe.py    ├── conf.py    └── index.rst @@ -67,8 +58,8 @@ Here is an example of the folder structure you might obtain: Writing the extension --------------------- -Open :file:`receipe.py` and paste the following code in it, all of which we -will explain in detail shortly: +Open :file:`recipe.py` and paste the following code in it, all of which we will +explain in detail shortly: .. literalinclude:: examples/recipe.py :language: python @@ -79,12 +70,12 @@ on. .. rubric:: The directive class -The first thing to examine is the ``RecipeNode`` directive: +The first thing to examine is the ``RecipeDirective`` directive: .. literalinclude:: examples/recipe.py :language: python :linenos: - :lines: 15-40 + :lines: 17-37 Unlike :doc:`helloworld` and :doc:`todo`, this directive doesn't derive from :class:`docutils.parsers.rst.Directive` and doesn't define a ``run`` method. @@ -100,7 +91,7 @@ for this node. We also see that this directive defines ``has_content``, ``required_arguments`` and ``option_spec``. Unlike the ``TodoDirective`` directive added in the :doc:`previous tutorial `, this directive takes a single argument, the -recipe name, and an optional argument, ``contains``, in addition to the nested +recipe name, and an option, ``contains``, in addition to the nested reStructuredText in the body. .. rubric:: The index classes @@ -112,11 +103,11 @@ reStructuredText in the body. .. literalinclude:: examples/recipe.py :language: python :linenos: - :lines: 44-172 + :lines: 40-108 Both ``IngredientIndex`` and ``RecipeIndex`` are derived from :class:`Index`. They implement custom logic to generate a tuple of values that define the -index. Note that ``RecipeIndex`` is a degenerate index that has only one entry. +index. Note that ``RecipeIndex`` is a simple index that has only one entry. Extending it to cover more object types is not yet part of the code. Both indices use the method :meth:`Index.generate` to do their work. This @@ -135,9 +126,9 @@ creating here. .. literalinclude:: examples/recipe.py :language: python :linenos: - :lines: 175-223 + :lines: 111-161 -There are some interesting things to note about this ``rcp`` domain and domains +There are some interesting things to note about this ``recipe`` domain and domains in general. Firstly, we actually register our directives, roles and indices here, via the ``directives``, ``roles`` and ``indices`` attributes, rather than via calls later on in ``setup``. We can also note that we aren't actually @@ -146,19 +137,21 @@ defining a custom role and are instead reusing the :class:`sphinx.domains.Domain.resolve_xref` method. This method takes two arguments, ``typ`` and ``target``, which refer to the cross-reference type and its target name. We'll use ``target`` to resolve our destination from our -domain's ``objects`` because we currently have only one type of node. +domain's ``recipes`` because we currently have only one type of node. -Moving on, we can see that we've defined two items in ``intitial_data``: -``objects`` and ``obj2ingredient``. These contain a list of all objects defined -(i.e. all recipes) and a hash that maps a canonical ingredient name to the list -of objects. The way we name objects is common across our extension and is -defined in the ``get_full_qualified_name`` method. For each object created, the -canonical name is ``rcp..``, where ```` is the -Python type of the object, and ```` is the name the documentation -writer gives the object. This enables the extension to use different object -types that share the same name. Having a canonical name and central place for -our objects is a huge advantage. Both our indices and our cross-referencing -code use this feature. +Moving on, we can see that we've defined ``initial_data``. The values defined in +``initial_data`` will be copied to ``env.domaindata[domain_name]`` as the +initial data of the domain, and domain instances can access it via +``self.data``. We see that we have defined two items in ``initial_data``: +``recipes`` and ``recipe2ingredient``. These contain a list of all objects +defined (i.e. all recipes) and a hash that maps a canonical ingredient name to +the list of objects. The way we name objects is common across our extension and +is defined in the ``get_full_qualified_name`` method. For each object created, +the canonical name is ``recipe.``, where ```` is the +name the documentation writer gives the object (a recipe). This enables the +extension to use different object types that share the same name. Having a +canonical name and central place for our objects is a huge advantage. Both our +indices and our cross-referencing code use this feature. .. rubric:: The ``setup`` function @@ -171,7 +164,7 @@ hook the various parts of our extension into Sphinx. Let's look at the .. literalinclude:: examples/recipe.py :language: python :linenos: - :lines: 226- + :lines: 164- This looks a little different to what we're used to seeing. There are no calls to :meth:`~Sphinx.add_directive` or even :meth:`~Sphinx.add_role`. Instead, we @@ -192,8 +185,8 @@ You can now use the extension throughout your project. For example: Joe's Recipes ============= - Below are a collection of my favourite receipes. I highly recommend the - :rcp:reref:`TomatoSoup` receipe in particular! + Below are a collection of my favourite recipes. I highly recommend the + :recipe:ref:`TomatoSoup` recipe in particular! .. toctree:: @@ -204,15 +197,15 @@ You can now use the extension throughout your project. For example: The recipe contains `tomato` and `cilantro`. - .. rcp:recipe:: TomatoSoup + .. recipe:recipe:: TomatoSoup :contains: tomato cilantro salt pepper This recipe is a tasty tomato soup, combine all ingredients and cook. -The important things to note are the use of the ``:rcp:recipe:`` role to +The important things to note are the use of the ``:recipe:ref:`` role to cross-reference the recipe actually defined elsewhere (using the -``:rcp:recipe:`` directive. +``:recipe:recipe:`` directive. Further reading diff --git a/doc/development/tutorials/todo.rst b/doc/development/tutorials/todo.rst index 8071bda68..c04e14e99 100644 --- a/doc/development/tutorials/todo.rst +++ b/doc/development/tutorials/todo.rst @@ -174,10 +174,10 @@ The node structure that the directive returns looks like this:: .. rubric:: The event handlers -Event handlers are one of Sphinx's most powerful features, providing a way to do -hook into any part of the documentation process. There are many hooks available, -as detailed in :doc:`/extdev/appapi`, and we're going to use a subset of them -here. +Event handlers are one of Sphinx's most powerful features, providing a way to +do hook into any part of the documentation process. There are many events +provided by Sphinx itself, as detailed in :ref:`the API guide `, and +we're going to use a subset of them here. Let's look at the event handlers used in the above example. First, the one for the :event:`env-purge-doc` event: @@ -203,18 +203,19 @@ The other handler belongs to the :event:`doctree-resolved` event: :lines: 64-103 The :event:`doctree-resolved` event is emitted at the end of :ref:`phase 3 -` and allows custom resolving to be done. The handler we have -written for this event is a bit more involved. If the ``todo_include_todos`` -config value (which we'll describe shortly) is false, all ``todo`` and -``todolist`` nodes are removed from the documents. If not, ``todo`` nodes just -stay where and how they are. ``todolist`` nodes are replaced by a list of todo -entries, complete with backlinks to the location where they come from. The list -items are composed of the nodes from the ``todo`` entry and docutils nodes -created on the fly: a paragraph for each entry, containing text that gives the -location, and a link (reference node containing an italic node) with the -backreference. The reference URI is built by ``app.builder.get_relative_uri`` -which creates a suitable URI depending on the used builder, and appending the -todo node's (the target's) ID as the anchor name. +(resolving) ` and allows custom resolving to be done. The handler +we have written for this event is a bit more involved. If the +``todo_include_todos`` config value (which we'll describe shortly) is false, +all ``todo`` and ``todolist`` nodes are removed from the documents. If not, +``todo`` nodes just stay where and how they are. ``todolist`` nodes are +replaced by a list of todo entries, complete with backlinks to the location +where they come from. The list items are composed of the nodes from the +``todo`` entry and docutils nodes created on the fly: a paragraph for each +entry, containing text that gives the location, and a link (reference node +containing an italic node) with the backreference. The reference URI is built +by :meth:`sphinx.builders.Builder.get_relative_uri`` which creates a suitable +URI depending on the used builder, and appending the todo node's (the target's) +ID as the anchor name. .. rubric:: The ``setup`` function @@ -238,13 +239,13 @@ What the individual calls do is the following: If the third argument was ``'html'``, HTML documents would be full rebuild if the config value changed its value. This is needed for config values that - influence reading (build :ref:`phase 1 `). + influence reading (build :ref:`phase 1 (reading) `). * :meth:`~Sphinx.add_node` adds a new *node class* to the build system. It also can specify visitor functions for each supported output format. These visitor - functions are needed when the new nodes stay until :ref:`phase 4 ` - -- since the ``todolist`` node is always replaced in :ref:`phase 3 `, - it doesn't need any. + functions are needed when the new nodes stay until :ref:`phase 4 (writing) + `. Since the ``todolist`` node is always replaced in + :ref:`phase 3 (resolving) `, it doesn't need any. * :meth:`~Sphinx.add_directive` adds a new *directive*, given by name and class. @@ -279,7 +280,7 @@ For example: sys.path.append(os.path.abspath("./_ext")) - extensions = ['helloworld'] + extensions = ['todo'] todo_include_todos = False diff --git a/sphinx/domains/__init__.py b/sphinx/domains/__init__.py index aa18ab2ed..07e05568a 100644 --- a/sphinx/domains/__init__.py +++ b/sphinx/domains/__init__.py @@ -91,32 +91,54 @@ class Index: def generate(self, docnames=None): # type: (Iterable[str]) -> Tuple[List[Tuple[str, List[IndexEntry]]], bool] - """Return entries for the index given by *name*. If *docnames* is - given, restrict to entries referring to these docnames. + """Get entries for the index. - The return value is a tuple of ``(content, collapse)``, where *collapse* - is a boolean that determines if sub-entries should start collapsed (for - output formats that support collapsing sub-entries). + If ``docnames`` is given, restrict to entries referring to these + docnames. - *content* is a sequence of ``(letter, entries)`` tuples, where *letter* - is the "heading" for the given *entries*, usually the starting letter. + The return value is a tuple of ``(content, collapse)``: - *entries* is a sequence of single entries, where a single entry is a - sequence ``[name, subtype, docname, anchor, extra, qualifier, descr]``. - The items in this sequence have the following meaning: + ``collapse`` + A boolean that determines if sub-entries should start collapsed (for + output formats that support collapsing sub-entries). - - `name` -- the name of the index entry to be displayed - - `subtype` -- sub-entry related type: - 0 -- normal entry - 1 -- entry with sub-entries - 2 -- sub-entry - - `docname` -- docname where the entry is located - - `anchor` -- anchor for the entry within `docname` - - `extra` -- extra info for the entry - - `qualifier` -- qualifier for the description - - `descr` -- description for the entry + ``content``: + A sequence of ``(letter, entries)`` tuples, where ``letter`` is the + "heading" for the given ``entries``, usually the starting letter, and + ``entries`` is a sequence of single entries. Each entry is a sequence + ``[name, subtype, docname, anchor, extra, qualifier, descr]``. The + items in this sequence have the following meaning: - Qualifier and description are not rendered e.g. in LaTeX output. + ``name`` + The name of the index entry to be displayed. + + ``subtype`` + The sub-entry related type. One of: + + ``0`` + A normal entry. + ``1`` + An entry with sub-entries. + ``2`` + A sub-entry. + + ``docname`` + *docname* where the entry is located. + + ``anchor`` + Anchor for the entry within ``docname`` + + ``extra`` + Extra info for the entry. + + ``qualifier`` + Qualifier for the description. + + ``descr`` + Description for the entry. + + Qualifier and description are not rendered for some output formats such + as LaTeX. """ raise NotImplementedError @@ -318,21 +340,37 @@ class Domain: def get_objects(self): # type: () -> Iterable[Tuple[str, str, str, str, str, int]] - """Return an iterable of "object descriptions", which are tuples with - five items: + """Return an iterable of "object descriptions". - * `name` -- fully qualified name - * `dispname` -- name to display when searching/linking - * `type` -- object type, a key in ``self.object_types`` - * `docname` -- the document where it is to be found - * `anchor` -- the anchor name for the object - * `priority` -- how "important" the object is (determines placement - in search results) + Object descriptions are tuples with six items: - - 1: default priority (placed before full-text matches) - - 0: object is important (placed before default-priority objects) - - 2: object is unimportant (placed after full-text matches) - - -1: object should not show up in search at all + ``name`` + Fully qualified name. + + ``dispname`` + Name to display when searching/linking. + + ``type`` + Object type, a key in ``self.object_types``. + + ``docname`` + The document where it is to be found. + + ``anchor`` + The anchor name for the object. + + ``priority`` + How "important" the object is (determines placement in search + results). One of: + + ``1`` + Default priority (placed before full-text matches). + ``0`` + Object is important (placed before default-priority objects). + ``2`` + Object is unimportant (placed after full-text matches). + ``-1`` + Object should not show up in search at all. """ return [] From 0ded648c1a1aa4f7649d89f209f070cef5bbaa7f Mon Sep 17 00:00:00 2001 From: James Knight Date: Thu, 4 Oct 2018 02:55:35 -0400 Subject: [PATCH 007/121] directive-code: do not force linenos value on run Now that `highlightlang` directive is deprecated [1], the `linenothreshold` option is to be used via the `highlight` directive. The `highlight` directive will walk-through literal blocks to apply a `linenos` value if: 1) The literal block has not been explicitly configured with the `linenos` option. 2) If there is enough content (when comparing literal block's line count to `linenothreshold`) that `linenos` should be explicitly enabled or disabled [2]. While the `hightlight` directive should be able to explicitly define if a literal block needs to enable line numbers, the logic is always ignored since the code block and literal include directives already configures `linenos` when checking for line number-specific options on the node [3][4]. This effectively prevents `linenothreshold` from being used. To allow `linenothreshold` to be used in literal blocks, this commit disables the explicit configuration `linenos` on a literal block instance when the `CodeBlock` and `LiteralInclude` directives are processed. [1]: b35198d8475fe89aaf9a5224a9832fb394e73cca [2]: https://github.com/sphinx-doc/sphinx/blob/v1.8.1/sphinx/transforms/post_transforms/code.py#L95-L97 [3]: https://github.com/sphinx-doc/sphinx/blob/v1.8.1/sphinx/directives/code.py#L156-L157 [4]: https://github.com/sphinx-doc/sphinx/blob/v1.8.1/sphinx/directives/code.py#L442-L444 Signed-off-by: James Knight --- sphinx/directives/code.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sphinx/directives/code.py b/sphinx/directives/code.py index 9ac704c55..73afac4ba 100644 --- a/sphinx/directives/code.py +++ b/sphinx/directives/code.py @@ -154,8 +154,8 @@ class CodeBlock(SphinxDirective): code = '\n'.join(lines) literal = nodes.literal_block(code, code) # type: nodes.Element - literal['linenos'] = 'linenos' in self.options or \ - 'lineno-start' in self.options + if 'linenos' in self.options or 'lineno-start' in self.options: + literal['linenos'] = True literal['classes'] += self.options.get('class', []) if self.arguments: # highlight language specified @@ -451,9 +451,9 @@ class LiteralInclude(SphinxDirective): retnode['language'] = 'udiff' elif 'language' in self.options: retnode['language'] = self.options['language'] - retnode['linenos'] = ('linenos' in self.options or - 'lineno-start' in self.options or - 'lineno-match' in self.options) + if ('linenos' in self.options or 'lineno-start' in self.options or + 'lineno-match' in self.options): + retnode['linenos'] = True retnode['classes'] += self.options.get('class', []) extra_args = retnode['highlight_args'] = {} if 'emphasize-lines' in self.options: From 3858a62814f1a3d78f7c2cb7b84e34b3dd056b80 Mon Sep 17 00:00:00 2001 From: James Knight Date: Sat, 16 Feb 2019 21:44:32 -0500 Subject: [PATCH 008/121] test: verify linenothreshold usage Adding a unit test to verify the use of the `linenothreshold` option provided by the `highlight` directive [1]. The included document to test will introduce two sets of `code-block` and `literalinclude` directives where the first entry generates contents using line numbers and the second entry generates contents not using line numbers, respectfully. [1]: https://github.com/sphinx-doc/sphinx/blob/v1.8.4/sphinx/transforms/post_transforms/code.py#L85 Signed-off-by: James Knight --- .../test-directive-code/linenothreshold.rst | 23 +++++++++ .../test-directive-code/literal-short.inc | 3 ++ tests/test_directive_code.py | 49 +++++++++++++++++++ 3 files changed, 75 insertions(+) create mode 100644 tests/roots/test-directive-code/linenothreshold.rst create mode 100644 tests/roots/test-directive-code/literal-short.inc diff --git a/tests/roots/test-directive-code/linenothreshold.rst b/tests/roots/test-directive-code/linenothreshold.rst new file mode 100644 index 000000000..09ee67efc --- /dev/null +++ b/tests/roots/test-directive-code/linenothreshold.rst @@ -0,0 +1,23 @@ +Code Blocks and Literal Includes with Line Numbers via linenothreshold +====================================================================== + +.. highlight:: python + :linenothreshold: 5 + +.. code-block:: + + class Foo: + pass + + class Bar: + def baz(): + pass + +.. code-block:: + + # comment + value = True + +.. literalinclude:: literal.inc + +.. literalinclude:: literal-short.inc diff --git a/tests/roots/test-directive-code/literal-short.inc b/tests/roots/test-directive-code/literal-short.inc new file mode 100644 index 000000000..7a07a3f7a --- /dev/null +++ b/tests/roots/test-directive-code/literal-short.inc @@ -0,0 +1,3 @@ +# Very small literal include (linenothreshold check) + +value = True diff --git a/tests/test_directive_code.py b/tests/test_directive_code.py index 8627820b9..2e1a1fde2 100644 --- a/tests/test_directive_code.py +++ b/tests/test_directive_code.py @@ -565,3 +565,52 @@ def test_code_block_highlighted(app, status, warning): assert codeblocks[1]['language'] == 'python2' assert codeblocks[2]['language'] == 'python3' assert codeblocks[3]['language'] == 'python2' + + +@pytest.mark.sphinx('html', testroot='directive-code') +def test_linenothreshold(app, status, warning): + app.builder.build(['linenothreshold']) + html = (app.outdir / 'linenothreshold.html').text() + + lineos_head = '
'
+    lineos_tail = '
' + + # code-block using linenothreshold + _, matched, html = html.partition(lineos_head + + '1\n' + '2\n' + '3\n' + '4\n' + '5\n' + '6' + lineos_tail) + assert matched + + # code-block not using linenothreshold + html, matched, _ = html.partition(lineos_head + + '1\n' + '2' + lineos_tail) + assert not matched + + # literal include using linenothreshold + _, matched, html = html.partition(lineos_head + + ' 1\n' + ' 2\n' + ' 3\n' + ' 4\n' + ' 5\n' + ' 6\n' + ' 7\n' + ' 8\n' + ' 9\n' + '10\n' + '11\n' + '12\n' + '13' + lineos_tail) + assert matched + + # literal include not using linenothreshold + html, matched, _ = html.partition(lineos_head + + '1\n' + '2\n' + '3' + lineos_tail) + assert not matched From a35040c454aeeb87b3e5681360f1a7b54811cd62 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Mon, 18 Feb 2019 13:38:42 +0000 Subject: [PATCH 009/121] docs: Address further review comments todo: - Subclass SphinxDirective instead of Directive recipe: - Remove unnecessary '__init__' methods Signed-off-by: Stephen Finucane --- doc/development/tutorials/examples/recipe.py | 6 ----- doc/development/tutorials/examples/todo.py | 16 +++++++------- doc/development/tutorials/recipe.rst | 6 ++--- doc/development/tutorials/todo.rst | 23 +++++++++++--------- 4 files changed, 24 insertions(+), 27 deletions(-) diff --git a/doc/development/tutorials/examples/recipe.py b/doc/development/tutorials/examples/recipe.py index 9c54a93f0..6aa17077c 100644 --- a/doc/development/tutorials/examples/recipe.py +++ b/doc/development/tutorials/examples/recipe.py @@ -44,9 +44,6 @@ class IngredientIndex(Index): localname = 'Ingredient Index' shortname = 'Ingredient' - def __init__(self, *args, **kwargs): - super(IngredientIndex, self).__init__(*args, **kwargs) - def generate(self, docnames=None): content = defaultdict(list) @@ -84,9 +81,6 @@ class RecipeIndex(Index): localname = 'Recipe Index' shortname = 'Recipe' - def __init__(self, *args, **kwargs): - super(RecipeIndex, self).__init__(*args, **kwargs) - def generate(self, docnames=None): content = defaultdict(list) diff --git a/doc/development/tutorials/examples/todo.py b/doc/development/tutorials/examples/todo.py index d46f90821..2bcf6788f 100644 --- a/doc/development/tutorials/examples/todo.py +++ b/doc/development/tutorials/examples/todo.py @@ -1,5 +1,7 @@ from docutils import nodes from docutils.parsers.rst import Directive + +from sphinx.util.docutils import SphinxDirective from sphinx.locale import _ @@ -25,26 +27,24 @@ class TodolistDirective(Directive): return [todolist('')] -class TodoDirective(Directive): +class TodoDirective(SphinxDirective): # this enables content in the directive has_content = True def run(self): - env = self.state.document.settings.env - - targetid = 'todo-%d' % env.new_serialno('todo') + targetid = 'todo-%d' % self.env.new_serialno('todo') targetnode = nodes.target('', '', ids=[targetid]) todo_node = todo('\n'.join(self.content)) todo_node += nodes.title(_('Todo'), _('Todo')) self.state.nested_parse(self.content, self.content_offset, todo_node) - if not hasattr(env, 'todo_all_todos'): - env.todo_all_todos = [] + if not hasattr(self.env, 'todo_all_todos'): + self.env.todo_all_todos = [] - env.todo_all_todos.append({ - 'docname': env.docname, + self.env.todo_all_todos.append({ + 'docname': self.env.docname, 'lineno': self.lineno, 'todo': todo_node.deepcopy(), 'target': targetnode, diff --git a/doc/development/tutorials/recipe.rst b/doc/development/tutorials/recipe.rst index 25a2c0732..2a3aa6408 100644 --- a/doc/development/tutorials/recipe.rst +++ b/doc/development/tutorials/recipe.rst @@ -103,7 +103,7 @@ reStructuredText in the body. .. literalinclude:: examples/recipe.py :language: python :linenos: - :lines: 40-108 + :lines: 40-102 Both ``IngredientIndex`` and ``RecipeIndex`` are derived from :class:`Index`. They implement custom logic to generate a tuple of values that define the @@ -126,7 +126,7 @@ creating here. .. literalinclude:: examples/recipe.py :language: python :linenos: - :lines: 111-161 + :lines: 105-155 There are some interesting things to note about this ``recipe`` domain and domains in general. Firstly, we actually register our directives, roles and indices @@ -164,7 +164,7 @@ hook the various parts of our extension into Sphinx. Let's look at the .. literalinclude:: examples/recipe.py :language: python :linenos: - :lines: 164- + :lines: 158- This looks a little different to what we're used to seeing. There are no calls to :meth:`~Sphinx.add_directive` or even :meth:`~Sphinx.add_role`. Instead, we diff --git a/doc/development/tutorials/todo.rst b/doc/development/tutorials/todo.rst index c04e14e99..78a37c2fe 100644 --- a/doc/development/tutorials/todo.rst +++ b/doc/development/tutorials/todo.rst @@ -93,7 +93,7 @@ Let's start with the node classes: .. literalinclude:: examples/todo.py :language: python :linenos: - :lines: 6-19 + :lines: 8-21 Node classes usually don't have to do anything except inherit from the standard docutils classes defined in :mod:`docutils.nodes`. ``todo`` inherits from @@ -120,7 +120,7 @@ Looking first at the ``TodolistDirective`` directive: .. literalinclude:: examples/todo.py :language: python :linenos: - :lines: 22-25 + :lines: 24-27 It's very simple, creating and returning an instance of our ``todolist`` node class. The ``TodolistDirective`` directive itself has neither content nor @@ -130,15 +130,18 @@ directive: .. literalinclude:: examples/todo.py :language: python :linenos: - :lines: 28-53 + :lines: 30-53 -Several important things are covered here. First, as you can see, you can refer -to the :ref:`build environment instance ` using -``self.state.document.settings.env``. Then, to act as a link target (from -``TodolistDirective``), the ``TodoDirective`` directive needs to return a target -node in addition to the ``todo`` node. The target ID (in HTML, this will be the -anchor name) is generated by using ``env.new_serialno`` which returns a new -unique integer on each call and therefore leads to unique target names. The +Several important things are covered here. First, as you can see, we're now +subclassing the :class:`~sphinx.util.docutils.SphinxDirective` helper class +instead of the usual :class:`~docutils.parsers.rst.Directive` class. This +gives us access to the :ref:`build environment instance ` +using the ``self.env`` property. Without this, we'd have to use the rather +convoluted ``self.state.document.settings.env``. Then, to act as a link target +(from ``TodolistDirective``), the ``TodoDirective`` directive needs to return a +target node in addition to the ``todo`` node. The target ID (in HTML, this will +be the anchor name) is generated by using ``env.new_serialno`` which returns a +new unique integer on each call and therefore leads to unique target names. The target node is instantiated without any text (the first two arguments). On creating admonition node, the content body of the directive are parsed using From ac4ec473784deed3f6be8eece1f1f0eccd8490ec Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 20 Feb 2019 12:32:17 +0900 Subject: [PATCH 010/121] Add testcase for specific build --- tests/test_application.py | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/tests/test_application.py b/tests/test_application.py index 87ee72f63..1a4d41289 100644 --- a/tests/test_application.py +++ b/tests/test_application.py @@ -7,6 +7,9 @@ :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ + +from unittest.mock import Mock + import pytest from docutils import nodes @@ -113,3 +116,22 @@ def test_add_is_parallel_allowed(app, status, warning): "for parallel reading, assuming it isn't - please ") in warning.getvalue() app.extensions.pop('write_serial') warning.truncate(0) # reset warnings + + +@pytest.mark.sphinx('dummy', testroot='root') +def test_build_specific(app): + app.builder.build = Mock() + filenames = [app.srcdir / 'index.txt', # normal + app.srcdir / 'images', # without suffix + app.srcdir / 'notfound.txt', # not found + app.srcdir / 'img.png', # unknown suffix + '/index.txt', # external file + app.srcdir / 'subdir', # directory + app.srcdir / 'subdir/includes.txt', # file on subdir + app.srcdir / 'subdir/../subdir/excluded.txt'] # not normalized + app.build(False, filenames) + + expected = ['index', 'images', 'img.png', 'subdir/includes', 'subdir/excluded'] + app.builder.build.assert_called_with(expected, + method='specific', + summary='5 source files given on command line') From 55c5168f338d6a9625c789af6c4b9ab04eb5ec93 Mon Sep 17 00:00:00 2001 From: Tommy Nguyen Date: Thu, 21 Feb 2019 20:11:24 -0500 Subject: [PATCH 011/121] #3620: Defer searchindex.js rather than loading it via ajax --- sphinx/themes/basic/search.html | 7 +------ sphinx/themes/basic/static/searchtools.js | 10 ---------- 2 files changed, 1 insertion(+), 16 deletions(-) diff --git a/sphinx/themes/basic/search.html b/sphinx/themes/basic/search.html index 04f0d1de2..7446a8f25 100644 --- a/sphinx/themes/basic/search.html +++ b/sphinx/themes/basic/search.html @@ -14,12 +14,7 @@ {%- endblock %} {% block extrahead %} - - {# this is used when loading the search index using $.ajax fails, - such as on Chrome for documents on localhost #} - + {{ super() }} {% endblock %} {% block body %} diff --git a/sphinx/themes/basic/static/searchtools.js b/sphinx/themes/basic/static/searchtools.js index bdc270655..4c5826411 100644 --- a/sphinx/themes/basic/static/searchtools.js +++ b/sphinx/themes/basic/static/searchtools.js @@ -75,16 +75,6 @@ var Search = { } }, - loadIndex : function(url) { - $.ajax({type: "GET", url: url, data: null, - dataType: "script", cache: true, - complete: function(jqxhr, textstatus) { - if (textstatus != "success") { - document.getElementById("searchindexloader").src = url; - } - }}); - }, - setIndex : function(index) { var q; this._index = index; From d9d5594c6f02e0e39337baace8fce750a8272980 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 23 Feb 2019 20:31:59 +0900 Subject: [PATCH 012/121] Ignore filenames without file extension given to ``Builder.build_specific()`` So far, ``Builder.build_specific()`` accpets filnames without file extension. On the other hand, ``sphinx-build`` command does not accept such files. So the special handling code is only working for 3rd party applications. The behavior is not consistent. In addition, that is not helpful for users. This removes such behavior from builders. This does not change Sphinx application itself. It only effects to the applications which uses the API directly. --- CHANGES | 3 +++ sphinx/builders/__init__.py | 3 +-- tests/test_application.py | 4 ++-- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 28e99a44d..6a4aa6eeb 100644 --- a/CHANGES +++ b/CHANGES @@ -7,6 +7,9 @@ Dependencies Incompatible changes -------------------- +* Ignore filenames without file extension given to ``Builder.build_specific()`` + API directly + Deprecated ---------- diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index 335880ef0..5cd5312fa 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -298,8 +298,7 @@ class Builder: logger.warning(__('file %r given on command line is not under the ' 'source directory, ignoring'), filename) continue - if not (path.isfile(filename) or - any(path.isfile(filename + suffix) for suffix in suffixes)): + if not path.isfile(filename): logger.warning(__('file %r given on command line does not exist, ' 'ignoring'), filename) continue diff --git a/tests/test_application.py b/tests/test_application.py index 1a4d41289..08c13c5cf 100644 --- a/tests/test_application.py +++ b/tests/test_application.py @@ -131,7 +131,7 @@ def test_build_specific(app): app.srcdir / 'subdir/../subdir/excluded.txt'] # not normalized app.build(False, filenames) - expected = ['index', 'images', 'img.png', 'subdir/includes', 'subdir/excluded'] + expected = ['index', 'img.png', 'subdir/includes', 'subdir/excluded'] app.builder.build.assert_called_with(expected, method='specific', - summary='5 source files given on command line') + summary='4 source files given on command line') From 524ac7ff0a1b1ccd81365c1a3857cd70947acaf1 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 24 Feb 2019 17:44:59 +0900 Subject: [PATCH 013/121] Fix #6096: html: Anchor links are not added to figures --- CHANGES | 2 ++ sphinx/writers/html.py | 4 +--- sphinx/writers/html5.py | 4 +--- tests/test_build_html.py | 9 +++++++++ 4 files changed, 13 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index 2781cddf8..e6ccfad27 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,8 @@ Features added Bugs fixed ---------- +* #6096: html: Anchor links are not added to figures + Testing -------- diff --git a/sphinx/writers/html.py b/sphinx/writers/html.py index 454e7c4d2..3eb9a0911 100644 --- a/sphinx/writers/html.py +++ b/sphinx/writers/html.py @@ -509,9 +509,7 @@ class HTMLTranslator(SphinxTranslator, BaseTranslator): if isinstance(node.parent, nodes.container) and node.parent.get('literal_block'): self.add_permalink_ref(node.parent, _('Permalink to this code')) elif isinstance(node.parent, nodes.figure): - image_nodes = node.parent.traverse(nodes.image) - target_node = image_nodes and image_nodes[0] or node.parent - self.add_permalink_ref(target_node, _('Permalink to this image')) + self.add_permalink_ref(node.parent, _('Permalink to this image')) elif node.parent.get('toctree'): self.add_permalink_ref(node.parent.parent, _('Permalink to this toctree')) diff --git a/sphinx/writers/html5.py b/sphinx/writers/html5.py index 5a10c990f..646d6cc31 100644 --- a/sphinx/writers/html5.py +++ b/sphinx/writers/html5.py @@ -455,9 +455,7 @@ class HTML5Translator(SphinxTranslator, BaseTranslator): if isinstance(node.parent, nodes.container) and node.parent.get('literal_block'): self.add_permalink_ref(node.parent, _('Permalink to this code')) elif isinstance(node.parent, nodes.figure): - image_nodes = node.parent.traverse(nodes.image) - target_node = image_nodes and image_nodes[0] or node.parent - self.add_permalink_ref(target_node, _('Permalink to this image')) + self.add_permalink_ref(node.parent, _('Permalink to this image')) elif node.parent.get('toctree'): self.add_permalink_ref(node.parent.parent, _('Permalink to this toctree')) diff --git a/tests/test_build_html.py b/tests/test_build_html.py index 77c86962e..99d7bf8d4 100644 --- a/tests/test_build_html.py +++ b/tests/test_build_html.py @@ -1254,6 +1254,15 @@ def test_html_inventory(app): 'The basic Sphinx documentation for testing') +@pytest.mark.sphinx('html', testroot='images', confoverrides={'html_sourcelink_suffix': ''}) +def test_html_anchor_for_figure(app): + app.builder.build_all() + content = (app.outdir / 'index.html').text() + assert ('

The caption of pic' + '

' + in content) + + @pytest.mark.sphinx('html', testroot='directives-raw') def test_html_raw_directive(app, status, warning): app.builder.build_all() From 0dec09a0651a458ca5e3830d45f9e1ff1cb156f3 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 22 Feb 2019 13:15:42 +0900 Subject: [PATCH 014/121] Update warning messages for script_files --- sphinx/builders/html.py | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/sphinx/builders/html.py b/sphinx/builders/html.py index bb11bfb4a..2c5ebcd4d 100644 --- a/sphinx/builders/html.py +++ b/sphinx/builders/html.py @@ -109,24 +109,24 @@ class JSContainer(list): """The container for JavaScript scripts.""" def insert(self, index, obj): # type: (int, str) -> None - warnings.warn('builder.script_files is deprecated. ' - 'Please use app.add_js_file() instead.', - RemovedInSphinx30Warning, stacklevel=2) + warnings.warn('To modify script_files in the theme is deprecated. ' + 'Please insert a + + + + 3. Add ``searchbox.html`` to the :confval:`html_sidebars` configuration value. + .. _api role: https://git.savannah.gnu.org/cgit/kenozooid.git/tree/doc/extapi.py .. _xhtml to reST: http://docutils.sourceforge.net/sandbox/xhtml2rest/xhtml2rest.py From 17596b5f3c3cb0b58107af1d426accaf29c7e519 Mon Sep 17 00:00:00 2001 From: Stephen Finucane Date: Mon, 25 Feb 2019 11:02:24 +0000 Subject: [PATCH 018/121] docs: Remove unused imports These were causing flake8 failures. Signed-off-by: Stephen Finucane --- doc/development/tutorials/examples/recipe.py | 6 +----- doc/development/tutorials/examples/todo.py | 2 +- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/doc/development/tutorials/examples/recipe.py b/doc/development/tutorials/examples/recipe.py index 6aa17077c..2464302da 100644 --- a/doc/development/tutorials/examples/recipe.py +++ b/doc/development/tutorials/examples/recipe.py @@ -1,15 +1,11 @@ from collections import defaultdict -import docutils -from docutils import nodes -from docutils.parsers import rst from docutils.parsers.rst import directives -import sphinx + from sphinx import addnodes from sphinx.directives import ObjectDescription from sphinx.domains import Domain from sphinx.domains import Index -from sphinx.domains.std import StandardDomain from sphinx.roles import XRefRole from sphinx.util.nodes import make_refnode diff --git a/doc/development/tutorials/examples/todo.py b/doc/development/tutorials/examples/todo.py index 2bcf6788f..6ba39944f 100644 --- a/doc/development/tutorials/examples/todo.py +++ b/doc/development/tutorials/examples/todo.py @@ -1,8 +1,8 @@ from docutils import nodes from docutils.parsers.rst import Directive -from sphinx.util.docutils import SphinxDirective from sphinx.locale import _ +from sphinx.util.docutils import SphinxDirective class todo(nodes.Admonition, nodes.Element): From 832c81a2caceb7741ecc27200aeb8cda6f065419 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 25 Feb 2019 23:59:51 +0900 Subject: [PATCH 019/121] Update CHANGES for PR #6091 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index e231419de..699437b66 100644 --- a/CHANGES +++ b/CHANGES @@ -17,6 +17,7 @@ Bugs fixed ---------- * #6096: html: Anchor links are not added to figures +* #3620: html: Defer searchindex.js rather than loading it via ajax * #5508: ``linenothreshold`` option for ``highlight`` directive was ignored Testing From c5dbe3c8f8eb992262c835f256d21bed1ae221a6 Mon Sep 17 00:00:00 2001 From: Nathan Shammah Date: Tue, 26 Feb 2019 00:07:31 +0900 Subject: [PATCH 020/121] add QuTiP to projects using sphinx_rtd_theme --- EXAMPLES | 1 + 1 file changed, 1 insertion(+) diff --git a/EXAMPLES b/EXAMPLES index 86b153812..4920967d9 100644 --- a/EXAMPLES +++ b/EXAMPLES @@ -240,6 +240,7 @@ Documentation using sphinx_rtd_theme * `Releases Sphinx extension `__ * `Qtile `__ * `Quex `__ +* `QuTiP `__ * `Satchmo `__ * `Scapy `__ * `SimGrid `__ From a814a2c191d705f41943c066739bba6fa73e42ad Mon Sep 17 00:00:00 2001 From: Timotheus Kampik Date: Tue, 26 Feb 2019 14:59:02 +0100 Subject: [PATCH 021/121] #36 work in review feedback --- doc/faq.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/faq.rst b/doc/faq.rst index 4446463b8..e7c23c131 100644 --- a/doc/faq.rst +++ b/doc/faq.rst @@ -88,7 +88,7 @@ MediaWiki Google Analytics You can use a custom ``layout.html`` template, like this: - .. code-block:: html+django + .. code-block:: html+jinja {% extends "!layout.html" %} @@ -126,10 +126,10 @@ Google Search 1. Go to https://cse.google.com/cse/all to create the Google Search code snippet. - 2. Copy the code snippet and paste it into ``_templates/searchbox`` in your - Sphinx project: + 2. Copy the code snippet and paste it into ``_templates/searchbox.html`` in + your Sphinx project: - .. code-block:: html+django + .. code-block:: html+jinja

{{ _('Quick search') }}

From ceef713e7937dd9f16b1ba2114885a1a64067f51 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 27 Feb 2019 01:09:43 +0900 Subject: [PATCH 022/121] docs: Remove a term "new" from config values --- doc/usage/extensions/autodoc.rst | 2 +- doc/usage/extensions/autosummary.rst | 2 +- doc/usage/extensions/coverage.rst | 2 +- doc/usage/extensions/extlinks.rst | 2 +- doc/usage/extensions/graphviz.rst | 2 +- doc/usage/extensions/intersphinx.rst | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/doc/usage/extensions/autodoc.rst b/doc/usage/extensions/autodoc.rst index cb41cb07d..6d7ba8272 100644 --- a/doc/usage/extensions/autodoc.rst +++ b/doc/usage/extensions/autodoc.rst @@ -315,7 +315,7 @@ inserting them into the page source under a suitable :rst:dir:`py:module`, Configuration ------------- -There are also new config values that you can set: +There are also config values that you can set: .. confval:: autoclass_content diff --git a/doc/usage/extensions/autosummary.rst b/doc/usage/extensions/autosummary.rst index eeb522950..d1ac0ad32 100644 --- a/doc/usage/extensions/autosummary.rst +++ b/doc/usage/extensions/autosummary.rst @@ -131,7 +131,7 @@ Generating stub pages automatically ----------------------------------- If you do not want to create stub pages with :program:`sphinx-autogen`, you can -also use this new config value: +also use these config values: .. confval:: autosummary_generate diff --git a/doc/usage/extensions/coverage.rst b/doc/usage/extensions/coverage.rst index 94d4c6fe4..1fb9b1850 100644 --- a/doc/usage/extensions/coverage.rst +++ b/doc/usage/extensions/coverage.rst @@ -13,7 +13,7 @@ This extension features one additional builder, the :class:`CoverageBuilder`. .. todo:: Write this section. -Several new configuration values can be used to specify what the builder +Several configuration values can be used to specify what the builder should check: .. confval:: coverage_ignore_modules diff --git a/doc/usage/extensions/extlinks.rst b/doc/usage/extensions/extlinks.rst index d818ba09b..e1d729f5c 100644 --- a/doc/usage/extensions/extlinks.rst +++ b/doc/usage/extensions/extlinks.rst @@ -18,7 +18,7 @@ tracker, at :samp:`https://github.com/sphinx-doc/sphinx/issues/{num}`. Typing this URL again and again is tedious, so you can use :mod:`~sphinx.ext.extlinks` to avoid repeating yourself. -The extension adds one new config value: +The extension adds a config value: .. confval:: extlinks diff --git a/doc/usage/extensions/graphviz.rst b/doc/usage/extensions/graphviz.rst index f87f1a4b7..bb50465ad 100644 --- a/doc/usage/extensions/graphviz.rst +++ b/doc/usage/extensions/graphviz.rst @@ -90,7 +90,7 @@ It adds these directives: .. versionadded:: 1.6 All three directives support a ``name`` option to set the label to graph. -There are also these new config values: +There are also these config values: .. confval:: graphviz_dot diff --git a/doc/usage/extensions/intersphinx.rst b/doc/usage/extensions/intersphinx.rst index cfda53e8f..0b2070400 100644 --- a/doc/usage/extensions/intersphinx.rst +++ b/doc/usage/extensions/intersphinx.rst @@ -43,7 +43,7 @@ Configuration ------------- To use Intersphinx linking, add ``'sphinx.ext.intersphinx'`` to your -:confval:`extensions` config value, and use these new config values to activate +:confval:`extensions` config value, and use these config values to activate linking: .. confval:: intersphinx_mapping From 446bee8c661a93a7489d547a4c0473fcbf3f2c42 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 18 Feb 2019 21:53:18 +0900 Subject: [PATCH 023/121] refactor: test_autodoc --- tests/test_autodoc.py | 71 +++++++++++++++++++++++-------------------- 1 file changed, 38 insertions(+), 33 deletions(-) diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py index 42a1f4f3e..27412a9da 100644 --- a/tests/test_autodoc.py +++ b/tests/test_autodoc.py @@ -9,7 +9,6 @@ :license: BSD, see LICENSE for details. """ -import re import platform import sys from warnings import catch_warnings @@ -517,13 +516,11 @@ def test_docstring_processing(): app.disconnect(lid) -@pytest.mark.usefixtures('setup_test') -def test_new_documenter(): - logging.setup(app, app._status, app._warning) - +@pytest.mark.sphinx('html', testroot='ext-autodoc') +def test_new_documenter(app): class MyDocumenter(ModuleLevelDocumenter): objtype = 'integer' - directivetype = 'data' + directivetype = 'integer' priority = 100 @classmethod @@ -535,17 +532,19 @@ def test_new_documenter(): app.add_autodocumenter(MyDocumenter) - def assert_result_contains(item, objtype, name, **kw): - app._warning.truncate(0) - inst = app.registry.documenters[objtype](directive, name) - inst.generate(**kw) - # print '\n'.join(directive.result) - assert app._warning.getvalue() == '' - assert item in directive.result - del directive.result[:] - - options.members = ['integer'] - assert_result_contains('.. py:data:: integer', 'module', 'target') + options = {"members": 'integer'} + actual = do_autodoc(app, 'module', 'target', options) + assert list(actual) == [ + '', + '.. py:module:: target', + '', + '', + '.. py:integer:: integer', + ' :module: target', + '', + ' documentation for the integer', + ' ' + ] @pytest.mark.usefixtures('setup_test') @@ -583,23 +582,29 @@ def test_attrgetter_using(): assert_getter_works('class', 'target.Class', Class, ['meth', 'inheritedmeth']) -@pytest.mark.usefixtures('setup_test') -def test_generate(): - def assert_result_contains(item, objtype, name, **kw): - inst = app.registry.documenters[objtype](directive, name) - inst.generate(**kw) - assert item in directive.result - del directive.result[:] +@pytest.mark.sphinx('html', testroot='ext-autodoc') +def test_py_module(app, warning): + # without py:module + actual = do_autodoc(app, 'method', 'Class.meth') + assert list(actual) == [] + assert ("don't know which module to import for autodocumenting 'Class.meth'" + in warning.getvalue()) - # test auto and given content mixing - directive.env.ref_context['py:module'] = 'target' - assert_result_contains(' Function.', 'method', 'Class.meth') - add_content = ViewList() - add_content.append('Content.', '', 0) - assert_result_contains(' Function.', 'method', - 'Class.meth', more_content=add_content) - assert_result_contains(' Content.', 'method', - 'Class.meth', more_content=add_content) + # with py:module + app.env.ref_context['py:module'] = 'target' + warning.truncate(0) + + actual = do_autodoc(app, 'method', 'Class.meth') + assert list(actual) == [ + '', + '.. py:method:: Class.meth()', + ' :module: target', + '', + ' Function.', + ' ' + ] + assert ("don't know which module to import for autodocumenting 'Class.meth'" + not in warning.getvalue()) @pytest.mark.sphinx('html', testroot='ext-autodoc') From 19b52c6eaa7c419c90b4e4e4142525dc47e6e61a Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 27 Feb 2019 14:42:10 +0900 Subject: [PATCH 024/121] Replace :autolink: roles by class based implementation --- CHANGES | 2 ++ doc/extdev/index.rst | 5 +++++ sphinx/ext/autosummary/__init__.py | 33 ++++++++++++++++++++++++++++-- 3 files changed, 38 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 6a4aa6eeb..2c32ddbb1 100644 --- a/CHANGES +++ b/CHANGES @@ -13,6 +13,8 @@ Incompatible changes Deprecated ---------- +* ``sphinx.ext.autosummary.autolink_role()`` + Features added -------------- diff --git a/doc/extdev/index.rst b/doc/extdev/index.rst index 7b4bbc692..e8ef21494 100644 --- a/doc/extdev/index.rst +++ b/doc/extdev/index.rst @@ -234,6 +234,11 @@ The following is a list of deprecated interfaces. - (will be) Removed - Alternatives + * - ``sphinx.ext.autosummary.autolink_role()`` + - 2.1 + - 4.0 + - ``sphinx.ext.autosummary.AutoLink`` + * - ``encoding`` argument of ``autodoc.Documenter.get_doc()``, ``autodoc.DocstringSignatureMixin.get_doc()``, ``autodoc.DocstringSignatureMixin._find_signature()``, and diff --git a/sphinx/ext/autosummary/__init__.py b/sphinx/ext/autosummary/__init__.py index 4cd1638d6..e88437804 100644 --- a/sphinx/ext/autosummary/__init__.py +++ b/sphinx/ext/autosummary/__init__.py @@ -77,7 +77,7 @@ from sphinx.locale import __ from sphinx.pycode import ModuleAnalyzer, PycodeError from sphinx.util import import_object, rst, logging from sphinx.util.docutils import ( - NullReporter, SphinxDirective, new_document, switch_source_input + NullReporter, SphinxDirective, SphinxRole, new_document, switch_source_input ) from sphinx.util.matching import Matcher @@ -642,6 +642,7 @@ def autolink_role(typ, rawtext, etext, lineno, inliner, options={}, content=[]): Expands to ':obj:`text`' if `text` is an object that can be imported; otherwise expands to '*text*'. """ + warnings.warn('autolink_role() is deprecated.', RemovedInSphinx40Warning) env = inliner.document.settings.env pyobj_role = env.get_domain('py').role('obj') objects, msg = pyobj_role('obj', rawtext, etext, lineno, inliner, options, content) @@ -660,6 +661,34 @@ def autolink_role(typ, rawtext, etext, lineno, inliner, options={}, content=[]): return objects, msg +class AutoLink(SphinxRole): + """Smart linking role. + + Expands to ':obj:`text`' if `text` is an object that can be imported; + otherwise expands to '*text*'. + """ + def run(self): + # type: () -> Tuple[List[nodes.Node], List[nodes.system_message]] + pyobj_role = self.env.get_domain('py').role('obj') + objects, errors = pyobj_role('obj', self.rawtext, self.text, self.lineno, + self.inliner, self.options, self.content) + if errors: + return objects, errors + + assert len(objects) == 1 + pending_xref = cast(addnodes.pending_xref, objects[0]) + try: + # try to import object by name + prefixes = get_import_prefixes_from_env(self.env) + import_by_name(pending_xref['reftarget'], prefixes) + except ImportError: + literal = cast(nodes.literal, pending_xref[0]) + objects[0] = nodes.emphasis(self.rawtext, literal.astext(), + classes=literal['classes']) + + return objects, errors + + def get_rst_suffix(app): # type: (Sphinx) -> str def get_supported_format(suffix): @@ -727,7 +756,7 @@ def setup(app): man=(autosummary_noop, autosummary_noop), texinfo=(autosummary_noop, autosummary_noop)) app.add_directive('autosummary', Autosummary) - app.add_role('autolink', autolink_role) + app.add_role('autolink', AutoLink()) app.connect('doctree-read', process_autosummary_toc) app.connect('builder-inited', process_generate_options) app.add_config_value('autosummary_generate', [], True, [bool]) From af51e9825a6d5071a405b3ec7724ba7862b28cd8 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 27 Feb 2019 14:49:07 +0900 Subject: [PATCH 025/121] refactor: Move implementation of mock to sphinx.ext.autodoc.mock --- CHANGES | 3 + doc/extdev/index.rst | 15 ++ sphinx/ext/autodoc/__init__.py | 17 +- sphinx/ext/autodoc/importer.py | 216 ++--------------- sphinx/ext/autodoc/mock.py | 217 ++++++++++++++++++ sphinx/ext/autosummary/__init__.py | 3 +- ...c_importer.py => test_ext_autodoc_mock.py} | 6 +- 7 files changed, 272 insertions(+), 205 deletions(-) create mode 100644 sphinx/ext/autodoc/mock.py rename tests/{test_ext_autodoc_importer.py => test_ext_autodoc_mock.py} (95%) diff --git a/CHANGES b/CHANGES index 2c32ddbb1..80129eca9 100644 --- a/CHANGES +++ b/CHANGES @@ -13,6 +13,9 @@ Incompatible changes Deprecated ---------- +* ``sphinx.ext.autodoc.importer.MockFinder`` +* ``sphinx.ext.autodoc.importer.MockLoader`` +* ``sphinx.ext.autodoc.importer.mock()`` * ``sphinx.ext.autosummary.autolink_role()`` Features added diff --git a/doc/extdev/index.rst b/doc/extdev/index.rst index e8ef21494..494901f16 100644 --- a/doc/extdev/index.rst +++ b/doc/extdev/index.rst @@ -234,6 +234,21 @@ The following is a list of deprecated interfaces. - (will be) Removed - Alternatives + * - ``sphinx.ext.autodoc.importer.MockFinder`` + - 2.1 + - 4.0 + - ``sphinx.ext.autodoc.mock.MockFinder`` + + * - ``sphinx.ext.autodoc.importer.MockLoader`` + - 2.1 + - 4.0 + - ``sphinx.ext.autodoc.mock.MockLoader`` + + * - ``sphinx.ext.autodoc.importer.mock()`` + - 2.1 + - 4.0 + - ``sphinx.ext.autodoc.mock.mock()`` + * - ``sphinx.ext.autosummary.autolink_role()`` - 2.1 - 4.0 diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index cd3b735e1..14c192913 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -18,9 +18,11 @@ from typing import Any from docutils.statemachine import StringList import sphinx -from sphinx.deprecation import RemovedInSphinx30Warning, RemovedInSphinx40Warning -from sphinx.ext.autodoc.importer import mock, import_object, get_object_members -from sphinx.ext.autodoc.importer import _MockImporter # to keep compatibility # NOQA +from sphinx.deprecation import ( + RemovedInSphinx30Warning, RemovedInSphinx40Warning, deprecated_alias +) +from sphinx.ext.autodoc.importer import import_object, get_object_members +from sphinx.ext.autodoc.mock import mock from sphinx.locale import _, __ from sphinx.pycode import ModuleAnalyzer, PycodeError from sphinx.util import logging @@ -1472,6 +1474,15 @@ def merge_autodoc_default_flags(app, config): ) +from sphinx.ext.autodoc.mock import _MockImporter # NOQA + +deprecated_alias('sphinx.ext.autodoc', + { + '_MockImporter': _MockImporter, + }, + RemovedInSphinx40Warning) + + def setup(app): # type: (Sphinx) -> Dict[str, Any] app.add_autodocumenter(ModuleDocumenter) diff --git a/sphinx/ext/autodoc/importer.py b/sphinx/ext/autodoc/importer.py index f19464b13..a06d93d52 100644 --- a/sphinx/ext/autodoc/importer.py +++ b/sphinx/ext/autodoc/importer.py @@ -8,218 +8,22 @@ :license: BSD, see LICENSE for details. """ -import contextlib -import os import sys import traceback import warnings from collections import namedtuple -from importlib.abc import Loader, MetaPathFinder -from importlib.machinery import ModuleSpec -from types import FunctionType, MethodType, ModuleType -from sphinx.deprecation import RemovedInSphinx30Warning +from sphinx.deprecation import RemovedInSphinx40Warning, deprecated_alias from sphinx.util import logging from sphinx.util.inspect import isenumclass, safe_getattr if False: # For type annotation - from typing import Any, Callable, Dict, Generator, Iterator, List, Optional, Sequence, Tuple, Union # NOQA + from typing import Any, Callable, Dict, List # NOQA logger = logging.getLogger(__name__) -class _MockObject: - """Used by autodoc_mock_imports.""" - - __display_name__ = '_MockObject' - - def __new__(cls, *args, **kwargs): - # type: (Any, Any) -> Any - if len(args) == 3 and isinstance(args[1], tuple): - superclass = args[1][-1].__class__ - if superclass is cls: - # subclassing MockObject - return _make_subclass(args[0], superclass.__display_name__, - superclass=superclass, attributes=args[2]) - - return super(_MockObject, cls).__new__(cls) - - def __init__(self, *args, **kwargs): - # type: (Any, Any) -> None - self.__qualname__ = '' - - def __len__(self): - # type: () -> int - return 0 - - def __contains__(self, key): - # type: (str) -> bool - return False - - def __iter__(self): - # type: () -> Iterator - return iter([]) - - def __mro_entries__(self, bases): - # type: (Tuple) -> Tuple - return (self.__class__,) - - def __getitem__(self, key): - # type: (str) -> _MockObject - return _make_subclass(key, self.__display_name__, self.__class__)() - - def __getattr__(self, key): - # type: (str) -> _MockObject - return _make_subclass(key, self.__display_name__, self.__class__)() - - def __call__(self, *args, **kw): - # type: (Any, Any) -> Any - if args and type(args[0]) in [FunctionType, MethodType]: - # Appears to be a decorator, pass through unchanged - return args[0] - return self - - def __repr__(self): - # type: () -> str - return self.__display_name__ - - -def _make_subclass(name, module, superclass=_MockObject, attributes=None): - # type: (str, str, Any, dict) -> Any - attrs = {'__module__': module, '__display_name__': module + '.' + name} - attrs.update(attributes or {}) - - return type(name, (superclass,), attrs) - - -class _MockModule(ModuleType): - """Used by autodoc_mock_imports.""" - __file__ = os.devnull - - def __init__(self, name, loader=None): - # type: (str, _MockImporter) -> None - super().__init__(name) - self.__all__ = [] # type: List[str] - self.__path__ = [] # type: List[str] - - if loader is not None: - warnings.warn('The loader argument for _MockModule is deprecated.', - RemovedInSphinx30Warning) - - def __getattr__(self, name): - # type: (str) -> _MockObject - return _make_subclass(name, self.__name__)() - - def __repr__(self): - # type: () -> str - return self.__name__ - - -class _MockImporter(MetaPathFinder): - def __init__(self, names): - # type: (List[str]) -> None - self.names = names - self.mocked_modules = [] # type: List[str] - # enable hook by adding itself to meta_path - sys.meta_path.insert(0, self) - - warnings.warn('_MockImporter is now deprecated.', - RemovedInSphinx30Warning) - - def disable(self): - # type: () -> None - # remove `self` from `sys.meta_path` to disable import hook - sys.meta_path = [i for i in sys.meta_path if i is not self] - # remove mocked modules from sys.modules to avoid side effects after - # running auto-documenter - for m in self.mocked_modules: - if m in sys.modules: - del sys.modules[m] - - def find_module(self, name, path=None): - # type: (str, Sequence[Union[bytes, str]]) -> Any - # check if name is (or is a descendant of) one of our base_packages - for n in self.names: - if n == name or name.startswith(n + '.'): - return self - return None - - def load_module(self, name): - # type: (str) -> ModuleType - if name in sys.modules: - # module has already been imported, return it - return sys.modules[name] - else: - logger.debug('[autodoc] adding a mock module %s!', name) - module = _MockModule(name, self) - sys.modules[name] = module - self.mocked_modules.append(name) - return module - - -class MockLoader(Loader): - """A loader for mocking.""" - def __init__(self, finder): - # type: (MockFinder) -> None - super().__init__() - self.finder = finder - - def create_module(self, spec): - # type: (ModuleSpec) -> ModuleType - logger.debug('[autodoc] adding a mock module as %s!', spec.name) - self.finder.mocked_modules.append(spec.name) - return _MockModule(spec.name) - - def exec_module(self, module): - # type: (ModuleType) -> None - pass # nothing to do - - -class MockFinder(MetaPathFinder): - """A finder for mocking.""" - - def __init__(self, modnames): - # type: (List[str]) -> None - super().__init__() - self.modnames = modnames - self.loader = MockLoader(self) - self.mocked_modules = [] # type: List[str] - - def find_spec(self, fullname, path, target=None): - # type: (str, Sequence[Union[bytes, str]], ModuleType) -> ModuleSpec - for modname in self.modnames: - # check if fullname is (or is a descendant of) one of our targets - if modname == fullname or fullname.startswith(modname + '.'): - return ModuleSpec(fullname, self.loader) - - return None - - def invalidate_caches(self): - # type: () -> None - """Invalidate mocked modules on sys.modules.""" - for modname in self.mocked_modules: - sys.modules.pop(modname, None) - - -@contextlib.contextmanager -def mock(modnames): - # type: (List[str]) -> Generator[None, None, None] - """Insert mock modules during context:: - - with mock(['target.module.name']): - # mock modules are enabled here - ... - """ - try: - finder = MockFinder(modnames) - sys.meta_path.insert(0, finder) - yield - finally: - sys.meta_path.remove(finder) - finder.invalidate_caches() - - def import_module(modname, warningiserror=False): # type: (str, bool) -> Any """ @@ -343,3 +147,19 @@ def get_object_members(subject, objpath, attrgetter, analyzer=None): members[name] = Attribute(name, True, INSTANCEATTR) return members + + +from sphinx.ext.autodoc.mock import ( # NOQA + _MockImporter, _MockModule, _MockObject, MockFinder, MockLoader, mock +) + +deprecated_alias('sphinx.ext.autodoc.importer', + { + '_MockImporter': _MockImporter, + '_MockModule': _MockModule, + '_MockObject': _MockObject, + 'MockFinder': MockFinder, + 'MockLoader': MockLoader, + 'mock': mock, + }, + RemovedInSphinx40Warning) diff --git a/sphinx/ext/autodoc/mock.py b/sphinx/ext/autodoc/mock.py new file mode 100644 index 000000000..b4204ef76 --- /dev/null +++ b/sphinx/ext/autodoc/mock.py @@ -0,0 +1,217 @@ +""" + sphinx.ext.autodoc.mock + ~~~~~~~~~~~~~~~~~~~~~~~ + + mock for autodoc + + :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import contextlib +import os +import sys +import warnings +from importlib.abc import Loader, MetaPathFinder +from importlib.machinery import ModuleSpec +from types import FunctionType, MethodType, ModuleType + +from sphinx.deprecation import RemovedInSphinx30Warning +from sphinx.util import logging + +if False: + # For type annotation + from typing import Any, Generator, Iterator, List, Sequence, Tuple, Union # NOQA + +logger = logging.getLogger(__name__) + + +class _MockObject: + """Used by autodoc_mock_imports.""" + + __display_name__ = '_MockObject' + + def __new__(cls, *args, **kwargs): + # type: (Any, Any) -> Any + if len(args) == 3 and isinstance(args[1], tuple): + superclass = args[1][-1].__class__ + if superclass is cls: + # subclassing MockObject + return _make_subclass(args[0], superclass.__display_name__, + superclass=superclass, attributes=args[2]) + + return super(_MockObject, cls).__new__(cls) + + def __init__(self, *args, **kwargs): + # type: (Any, Any) -> None + self.__qualname__ = '' + + def __len__(self): + # type: () -> int + return 0 + + def __contains__(self, key): + # type: (str) -> bool + return False + + def __iter__(self): + # type: () -> Iterator + return iter([]) + + def __mro_entries__(self, bases): + # type: (Tuple) -> Tuple + return (self.__class__,) + + def __getitem__(self, key): + # type: (str) -> _MockObject + return _make_subclass(key, self.__display_name__, self.__class__)() + + def __getattr__(self, key): + # type: (str) -> _MockObject + return _make_subclass(key, self.__display_name__, self.__class__)() + + def __call__(self, *args, **kw): + # type: (Any, Any) -> Any + if args and type(args[0]) in [FunctionType, MethodType]: + # Appears to be a decorator, pass through unchanged + return args[0] + return self + + def __repr__(self): + # type: () -> str + return self.__display_name__ + + +def _make_subclass(name, module, superclass=_MockObject, attributes=None): + # type: (str, str, Any, dict) -> Any + attrs = {'__module__': module, '__display_name__': module + '.' + name} + attrs.update(attributes or {}) + + return type(name, (superclass,), attrs) + + +class _MockModule(ModuleType): + """Used by autodoc_mock_imports.""" + __file__ = os.devnull + + def __init__(self, name, loader=None): + # type: (str, _MockImporter) -> None + super().__init__(name) + self.__all__ = [] # type: List[str] + self.__path__ = [] # type: List[str] + + if loader is not None: + warnings.warn('The loader argument for _MockModule is deprecated.', + RemovedInSphinx30Warning) + + def __getattr__(self, name): + # type: (str) -> _MockObject + return _make_subclass(name, self.__name__)() + + def __repr__(self): + # type: () -> str + return self.__name__ + + +class _MockImporter(MetaPathFinder): + def __init__(self, names): + # type: (List[str]) -> None + self.names = names + self.mocked_modules = [] # type: List[str] + # enable hook by adding itself to meta_path + sys.meta_path.insert(0, self) + + warnings.warn('_MockImporter is now deprecated.', + RemovedInSphinx30Warning) + + def disable(self): + # type: () -> None + # remove `self` from `sys.meta_path` to disable import hook + sys.meta_path = [i for i in sys.meta_path if i is not self] + # remove mocked modules from sys.modules to avoid side effects after + # running auto-documenter + for m in self.mocked_modules: + if m in sys.modules: + del sys.modules[m] + + def find_module(self, name, path=None): + # type: (str, Sequence[Union[bytes, str]]) -> Any + # check if name is (or is a descendant of) one of our base_packages + for n in self.names: + if n == name or name.startswith(n + '.'): + return self + return None + + def load_module(self, name): + # type: (str) -> ModuleType + if name in sys.modules: + # module has already been imported, return it + return sys.modules[name] + else: + logger.debug('[autodoc] adding a mock module %s!', name) + module = _MockModule(name, self) + sys.modules[name] = module + self.mocked_modules.append(name) + return module + + +class MockLoader(Loader): + """A loader for mocking.""" + def __init__(self, finder): + # type: (MockFinder) -> None + super().__init__() + self.finder = finder + + def create_module(self, spec): + # type: (ModuleSpec) -> ModuleType + logger.debug('[autodoc] adding a mock module as %s!', spec.name) + self.finder.mocked_modules.append(spec.name) + return _MockModule(spec.name) + + def exec_module(self, module): + # type: (ModuleType) -> None + pass # nothing to do + + +class MockFinder(MetaPathFinder): + """A finder for mocking.""" + + def __init__(self, modnames): + # type: (List[str]) -> None + super().__init__() + self.modnames = modnames + self.loader = MockLoader(self) + self.mocked_modules = [] # type: List[str] + + def find_spec(self, fullname, path, target=None): + # type: (str, Sequence[Union[bytes, str]], ModuleType) -> ModuleSpec + for modname in self.modnames: + # check if fullname is (or is a descendant of) one of our targets + if modname == fullname or fullname.startswith(modname + '.'): + return ModuleSpec(fullname, self.loader) + + return None + + def invalidate_caches(self): + # type: () -> None + """Invalidate mocked modules on sys.modules.""" + for modname in self.mocked_modules: + sys.modules.pop(modname, None) + + +@contextlib.contextmanager +def mock(modnames): + # type: (List[str]) -> Generator[None, None, None] + """Insert mock modules during context:: + + with mock(['target.module.name']): + # mock modules are enabled here + ... + """ + try: + finder = MockFinder(modnames) + sys.meta_path.insert(0, finder) + yield + finally: + sys.meta_path.remove(finder) + finder.invalidate_caches() diff --git a/sphinx/ext/autosummary/__init__.py b/sphinx/ext/autosummary/__init__.py index e88437804..b201a8a56 100644 --- a/sphinx/ext/autosummary/__init__.py +++ b/sphinx/ext/autosummary/__init__.py @@ -72,7 +72,8 @@ from sphinx.deprecation import RemovedInSphinx40Warning from sphinx.environment.adapters.toctree import TocTree from sphinx.ext.autodoc import get_documenters from sphinx.ext.autodoc.directive import DocumenterBridge, Options -from sphinx.ext.autodoc.importer import import_module, mock +from sphinx.ext.autodoc.importer import import_module +from sphinx.ext.autodoc.mock import mock from sphinx.locale import __ from sphinx.pycode import ModuleAnalyzer, PycodeError from sphinx.util import import_object, rst, logging diff --git a/tests/test_ext_autodoc_importer.py b/tests/test_ext_autodoc_mock.py similarity index 95% rename from tests/test_ext_autodoc_importer.py rename to tests/test_ext_autodoc_mock.py index 08920cc7e..767232bcc 100644 --- a/tests/test_ext_autodoc_importer.py +++ b/tests/test_ext_autodoc_mock.py @@ -1,6 +1,6 @@ """ - test_ext_autodoc_importer - ~~~~~~~~~~~~~~~~~~~~~~~~~ + test_ext_autodoc_mock + ~~~~~~~~~~~~~~~~~~~~~ Test the autodoc extension. @@ -13,7 +13,7 @@ import sys import pytest -from sphinx.ext.autodoc.importer import _MockModule, _MockObject, mock +from sphinx.ext.autodoc.mock import _MockModule, _MockObject, mock def test_MockModule(): From 8408109a253c4f14cbb986853031951936bff637 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 27 Feb 2019 15:19:54 +0900 Subject: [PATCH 026/121] Add CatalogRepository class --- sphinx/util/i18n.py | 49 +++++++++++++++++++++++++++++++++++++++-- tests/test_util_i18n.py | 44 ++++++++++++++++++++++++++++++++++++ 2 files changed, 91 insertions(+), 2 deletions(-) diff --git a/sphinx/util/i18n.py b/sphinx/util/i18n.py index 9196e6fb6..6aa285f5d 100644 --- a/sphinx/util/i18n.py +++ b/sphinx/util/i18n.py @@ -24,14 +24,14 @@ from sphinx.errors import SphinxError from sphinx.locale import __ from sphinx.util import logging from sphinx.util.matching import Matcher -from sphinx.util.osutil import SEP, relpath +from sphinx.util.osutil import SEP, canon_path, relpath logger = logging.getLogger(__name__) if False: # For type annotation - from typing import Callable, List, Set # NOQA + from typing import Callable, Generator, List, Set, Tuple # NOQA from sphinx.environment import BuildEnvironment # NOQA LocaleFileInfoBase = namedtuple('CatalogInfo', 'base_dir,domain,charset') @@ -81,6 +81,51 @@ class CatalogInfo(LocaleFileInfoBase): logger.warning(__('writing error: %s, %s'), self.mo_path, exc) +class CatalogRepository: + """A repository for message catalogs.""" + + def __init__(self, basedir, locale_dirs, language, encoding): + # type: (str, List[str], str, str) -> None + self.basedir = basedir + self._locale_dirs = locale_dirs + self.language = language + self.encoding = encoding + + @property + def locale_dirs(self): + # type: () -> Generator[str, None, None] + if not self.language: + return + + for locale_dir in self._locale_dirs: + locale_dir = path.join(self.basedir, locale_dir) + if path.exists(path.join(locale_dir, self.language, 'LC_MESSAGES')): + yield locale_dir + + @property + def pofiles(self): + # type: () -> Generator[Tuple[str, str], None, None] + for locale_dir in self.locale_dirs: + basedir = path.join(locale_dir, self.language, 'LC_MESSAGES') + for root, dirnames, filenames in os.walk(basedir): + # skip dot-directories + for dirname in dirnames: + if dirname.startswith('.'): + dirnames.remove(dirname) + + for filename in filenames: + if filename.endswith('.po'): + fullpath = path.join(root, filename) + yield basedir, relpath(fullpath, basedir) + + @property + def catalogs(self): + # type: () -> Generator[CatalogInfo, None, None] + for basedir, filename in self.pofiles: + domain = canon_path(path.splitext(filename)[0]) + yield CatalogInfo(basedir, domain, self.encoding) + + def find_catalog(docname, compaction): # type: (str, bool) -> str if compaction: diff --git a/tests/test_util_i18n.py b/tests/test_util_i18n.py index b25e29575..5208689e8 100644 --- a/tests/test_util_i18n.py +++ b/tests/test_util_i18n.py @@ -255,3 +255,47 @@ def test_get_filename_for_language(app): app.env.config.figure_language_filename = '{root}.{invalid}{ext}' with pytest.raises(SphinxError): i18n.get_image_filename_for_language('foo.png', app.env) + + +def test_CatalogRepository(tempdir): + (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES').makedirs() + (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'test1.po').write_text('#') + (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'test2.po').write_text('#') + (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub').makedirs() + (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub' / 'test3.po').write_text('#') + (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub' / 'test4.po').write_text('#') + (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / '.dotdir').makedirs() + (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / '.dotdir' / 'test5.po').write_text('#') + (tempdir / 'loc1' / 'yy' / 'LC_MESSAGES').makedirs() + (tempdir / 'loc1' / 'yy' / 'LC_MESSAGES' / 'test6.po').write_text('#') + (tempdir / 'loc2' / 'xx' / 'LC_MESSAGES').makedirs() + (tempdir / 'loc2' / 'xx' / 'LC_MESSAGES' / 'test1.po').write_text('#') + (tempdir / 'loc2' / 'xx' / 'LC_MESSAGES' / 'test7.po').write_text('#') + + # for language xx + repo = i18n.CatalogRepository(tempdir, ['loc1', 'loc2'], 'xx', 'utf-8') + assert list(repo.locale_dirs) == [str(tempdir / 'loc1'), + str(tempdir / 'loc2')] + assert all(isinstance(c, i18n.CatalogInfo) for c in repo.catalogs) + assert sorted(c.domain for c in repo.catalogs) == ['sub/test3', 'sub/test4', + 'test1', 'test1', 'test2', 'test7'] + + # for language yy + repo = i18n.CatalogRepository(tempdir, ['loc1', 'loc2'], 'yy', 'utf-8') + assert sorted(c.domain for c in repo.catalogs) == ['test6'] + + # unknown languages + repo = i18n.CatalogRepository(tempdir, ['loc1', 'loc2'], 'zz', 'utf-8') + assert sorted(c.domain for c in repo.catalogs) == [] + + # no languages + repo = i18n.CatalogRepository(tempdir, ['loc1', 'loc2'], None, 'utf-8') + assert sorted(c.domain for c in repo.catalogs) == [] + + # unknown locale_dirs + repo = i18n.CatalogRepository(tempdir, ['loc3'], None, 'utf-8') + assert sorted(c.domain for c in repo.catalogs) == [] + + # no locale_dirs + repo = i18n.CatalogRepository(tempdir, [], None, 'utf-8') + assert sorted(c.domain for c in repo.catalogs) == [] From 5f8f902b637a1b018c1d2abfcf19c490f95c18d5 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 27 Feb 2019 15:19:56 +0900 Subject: [PATCH 027/121] Rename find_catalog() to docname_to_domain() --- CHANGES | 1 + doc/extdev/index.rst | 5 +++++ sphinx/builders/__init__.py | 4 ++-- sphinx/builders/gettext.py | 4 ++-- sphinx/transforms/i18n.py | 4 ++-- sphinx/util/i18n.py | 11 +++++++++++ 6 files changed, 23 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index 2c32ddbb1..cc270f818 100644 --- a/CHANGES +++ b/CHANGES @@ -14,6 +14,7 @@ Deprecated ---------- * ``sphinx.ext.autosummary.autolink_role()`` +* ``sphinx.util.i18n.find_catalog()`` Features added -------------- diff --git a/doc/extdev/index.rst b/doc/extdev/index.rst index e8ef21494..150d02f74 100644 --- a/doc/extdev/index.rst +++ b/doc/extdev/index.rst @@ -239,6 +239,11 @@ The following is a list of deprecated interfaces. - 4.0 - ``sphinx.ext.autosummary.AutoLink`` + * - ``sphinx.util.i18n.find_catalog()`` + - 2.1 + - 4.0 + - ``sphinx.util.i18n.docname_to_domain()`` + * - ``encoding`` argument of ``autodoc.Documenter.get_doc()``, ``autodoc.DocstringSignatureMixin.get_doc()``, ``autodoc.DocstringSignatureMixin._find_signature()``, and diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index 5cd5312fa..439952c01 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -23,7 +23,7 @@ from sphinx.util import i18n, import_object, logging, rst, progress_message, sta from sphinx.util.build_phase import BuildPhase from sphinx.util.console import bold # type: ignore from sphinx.util.docutils import sphinx_domains -from sphinx.util.i18n import find_catalog +from sphinx.util.i18n import docname_to_domain from sphinx.util.matching import Matcher from sphinx.util.osutil import SEP, ensuredir, relative_uri, relpath from sphinx.util.parallel import ParallelTasks, SerialTasks, make_chunks, \ @@ -251,7 +251,7 @@ class Builder: # type: (str) -> str docname = self.env.path2doc(path.abspath(fpath)) if docname: - return find_catalog(docname, self.config.gettext_compact) + return docname_to_domain(docname, self.config.gettext_compact) else: return None diff --git a/sphinx/builders/gettext.py b/sphinx/builders/gettext.py index aace9bb49..c885499ed 100644 --- a/sphinx/builders/gettext.py +++ b/sphinx/builders/gettext.py @@ -22,7 +22,7 @@ from sphinx.errors import ThemeError from sphinx.locale import __ from sphinx.util import split_index_msg, logging, status_iterator from sphinx.util.console import bold # type: ignore -from sphinx.util.i18n import find_catalog +from sphinx.util.i18n import docname_to_domain from sphinx.util.nodes import extract_messages, traverse_translatable_index from sphinx.util.osutil import relpath, ensuredir, canon_path from sphinx.util.tags import Tags @@ -140,7 +140,7 @@ class I18nBuilder(Builder): def write_doc(self, docname, doctree): # type: (str, nodes.document) -> None - catalog = self.catalogs[find_catalog(docname, self.config.gettext_compact)] + catalog = self.catalogs[docname_to_domain(docname, self.config.gettext_compact)] for node, msg in extract_messages(doctree): catalog.add(msg, node) diff --git a/sphinx/transforms/i18n.py b/sphinx/transforms/i18n.py index 494dff855..c8628c318 100644 --- a/sphinx/transforms/i18n.py +++ b/sphinx/transforms/i18n.py @@ -21,7 +21,7 @@ from sphinx.domains.std import make_glossary_term, split_term_classifiers from sphinx.locale import __, init as init_locale from sphinx.transforms import SphinxTransform from sphinx.util import split_index_msg, logging -from sphinx.util.i18n import find_catalog +from sphinx.util.i18n import docname_to_domain from sphinx.util.nodes import ( LITERAL_TYPE_NODES, IMAGE_TYPE_NODES, NodeMatcher, extract_messages, is_pending_meta, traverse_translatable_index, @@ -94,7 +94,7 @@ class Locale(SphinxTransform): assert source.startswith(self.env.srcdir) docname = path.splitext(relative_path(path.join(self.env.srcdir, 'dummy'), source))[0] - textdomain = find_catalog(docname, self.config.gettext_compact) + textdomain = docname_to_domain(docname, self.config.gettext_compact) # fetch translations dirs = [path.join(self.env.srcdir, directory) diff --git a/sphinx/util/i18n.py b/sphinx/util/i18n.py index 6aa285f5d..5d136a9b4 100644 --- a/sphinx/util/i18n.py +++ b/sphinx/util/i18n.py @@ -128,6 +128,8 @@ class CatalogRepository: def find_catalog(docname, compaction): # type: (str, bool) -> str + warnings.warn('find_catalog() is deprecated.', + RemovedInSphinx40Warning, stacklevel=2) if compaction: ret = docname.split(SEP, 1)[0] else: @@ -136,6 +138,15 @@ def find_catalog(docname, compaction): return ret +def docname_to_domain(docname, compation): + # type: (str, bool) -> str + """Convert docname to domain for catalogs.""" + if compation: + return docname.split(SEP, 1)[0] + else: + return docname + + def find_catalog_files(docname, srcdir, locale_dirs, lang, compaction): # type: (str, str, List[str], str, bool) -> List[str] if not(lang and locale_dirs): From fb8838ee53508a62e7d5c2636030c65031bd5a20 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 27 Feb 2019 15:19:58 +0900 Subject: [PATCH 028/121] refactor: Use CatalogRepository instead of find_catalog_source_file() --- CHANGES | 2 + doc/extdev/index.rst | 10 +++ sphinx/application.py | 26 ++++---- sphinx/builders/__init__.py | 40 +++++------- sphinx/environment/__init__.py | 16 ++--- sphinx/util/i18n.py | 6 +- .../conf.py | 1 + .../{ => xx/LC_MESSAGES}/bom.po | 0 .../{ => xx/LC_MESSAGES}/admonitions.po | 0 .../test-intl/{ => xx/LC_MESSAGES}/bom.po | 0 .../{ => xx/LC_MESSAGES}/definition_terms.po | 0 .../{ => xx/LC_MESSAGES}/docfields.po | 0 .../{ => xx/LC_MESSAGES}/external_links.po | 0 .../test-intl/{ => xx/LC_MESSAGES}/figure.po | 0 .../{ => xx/LC_MESSAGES}/footnote.po | 0 .../{ => xx/LC_MESSAGES}/glossary_terms.po | 0 .../glossary_terms_inconsistency.po | 0 .../test-intl/{ => xx/LC_MESSAGES}/index.po | 0 .../{ => xx/LC_MESSAGES}/index_entries.po | 0 .../{ => xx/LC_MESSAGES}/label_target.po | 0 .../{ => xx/LC_MESSAGES}/literalblock.po | 0 .../test-intl/{ => xx/LC_MESSAGES}/only.po | 0 .../test-intl/{ => xx/LC_MESSAGES}/raw.po | 0 .../test-intl/{ => xx/LC_MESSAGES}/refs.po | 0 .../LC_MESSAGES}/refs_inconsistency.po | 0 .../LC_MESSAGES}/refs_python_domain.po | 0 .../{ => xx/LC_MESSAGES}/role_xref.po | 0 .../test-intl/{ => xx/LC_MESSAGES}/rubric.po | 0 .../test-intl/{ => xx/LC_MESSAGES}/section.po | 0 .../test-intl/{ => xx/LC_MESSAGES}/seealso.po | 0 .../test-intl/{ => xx/LC_MESSAGES}/sphinx.po | 0 .../test-intl/{ => xx/LC_MESSAGES}/table.po | 0 .../test-intl/{ => xx/LC_MESSAGES}/topic.po | 0 .../{ => xx/LC_MESSAGES}/versionchange.po | 0 .../{ => xx/LC_MESSAGES}/warnings.po | 0 tests/test_catalogs.py | 11 ++-- tests/test_intl.py | 65 ++++++++----------- 37 files changed, 87 insertions(+), 90 deletions(-) rename tests/roots/test-builder-gettext-dont-rebuild-mo/{ => xx/LC_MESSAGES}/bom.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/admonitions.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/bom.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/definition_terms.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/docfields.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/external_links.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/figure.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/footnote.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/glossary_terms.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/glossary_terms_inconsistency.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/index.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/index_entries.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/label_target.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/literalblock.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/only.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/raw.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/refs.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/refs_inconsistency.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/refs_python_domain.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/role_xref.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/rubric.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/section.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/seealso.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/sphinx.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/table.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/topic.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/versionchange.po (100%) rename tests/roots/test-intl/{ => xx/LC_MESSAGES}/warnings.po (100%) diff --git a/CHANGES b/CHANGES index cc270f818..c3255dc8b 100644 --- a/CHANGES +++ b/CHANGES @@ -15,6 +15,8 @@ Deprecated * ``sphinx.ext.autosummary.autolink_role()`` * ``sphinx.util.i18n.find_catalog()`` +* ``sphinx.util.i18n.find_catalog_files()`` +* ``sphinx.util.i18n.find_catalog_source_files()`` Features added -------------- diff --git a/doc/extdev/index.rst b/doc/extdev/index.rst index 150d02f74..e926eb843 100644 --- a/doc/extdev/index.rst +++ b/doc/extdev/index.rst @@ -244,6 +244,16 @@ The following is a list of deprecated interfaces. - 4.0 - ``sphinx.util.i18n.docname_to_domain()`` + * - ``sphinx.util.i18n.find_catalog_files()`` + - 2.1 + - 4.0 + - ``sphinx.util.i18n.CatalogRepository`` + + * - ``sphinx.util.i18n.find_catalog_source_files()`` + - 2.1 + - 4.0 + - ``sphinx.util.i18n.CatalogRepository`` + * - ``encoding`` argument of ``autodoc.Documenter.get_doc()``, ``autodoc.DocstringSignatureMixin.get_doc()``, ``autodoc.DocstringSignatureMixin._find_signature()``, and diff --git a/sphinx/application.py b/sphinx/application.py index 6d553333b..887eae86c 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -40,7 +40,7 @@ from sphinx.util import logging from sphinx.util.build_phase import BuildPhase from sphinx.util.console import bold # type: ignore from sphinx.util.docutils import directive_helper -from sphinx.util.i18n import find_catalog_source_files +from sphinx.util.i18n import CatalogRepository from sphinx.util.logging import prefixed_warnings from sphinx.util.osutil import abspath, ensuredir, relpath from sphinx.util.tags import Tags @@ -265,21 +265,21 @@ class Sphinx: """Load translated strings from the configured localedirs if enabled in the configuration. """ - if self.config.language is not None: + if self.config.language is None: + self.translator, has_translation = locale.init([], None) + else: logger.info(bold(__('loading translations [%s]... ') % self.config.language), nonl=True) - user_locale_dirs = [ - path.join(self.srcdir, x) for x in self.config.locale_dirs] + # compile mo files if sphinx.po file in user locale directories are updated - for catinfo in find_catalog_source_files( - user_locale_dirs, self.config.language, domains=['sphinx'], - charset=self.config.source_encoding): - catinfo.write_mo(self.config.language) - locale_dirs = [None, path.join(package_dir, 'locale')] + user_locale_dirs - else: - locale_dirs = [] - self.translator, has_translation = locale.init(locale_dirs, self.config.language) - if self.config.language is not None: + repo = CatalogRepository(self.srcdir, self.config.locale_dirs, + self.config.language, self.config.source_encoding) + for catalog in repo.catalogs: + if catalog.domain == 'sphinx' and catalog.is_outdated(): + catalog.write_mo(self.config.language) + + locale_dirs = [None, path.join(package_dir, 'locale')] + list(repo.locale_dirs) + self.translator, has_translation = locale.init(locale_dirs, self.config.language) if has_translation or self.config.language == 'en': # "en" never needs to be translated logger.info(__('done')) diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index 439952c01..6726e221f 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -19,12 +19,11 @@ from sphinx.environment.adapters.asset import ImageAdapter from sphinx.errors import SphinxError from sphinx.io import read_doc from sphinx.locale import __ -from sphinx.util import i18n, import_object, logging, rst, progress_message, status_iterator +from sphinx.util import import_object, logging, rst, progress_message, status_iterator from sphinx.util.build_phase import BuildPhase from sphinx.util.console import bold # type: ignore from sphinx.util.docutils import sphinx_domains -from sphinx.util.i18n import docname_to_domain -from sphinx.util.matching import Matcher +from sphinx.util.i18n import CatalogRepository, docname_to_domain from sphinx.util.osutil import SEP, ensuredir, relative_uri, relpath from sphinx.util.parallel import ParallelTasks, SerialTasks, make_chunks, \ parallel_available @@ -236,14 +235,10 @@ class Builder: def compile_all_catalogs(self): # type: () -> None - catalogs = i18n.find_catalog_source_files( - [path.join(self.srcdir, x) for x in self.config.locale_dirs], - self.config.language, - charset=self.config.source_encoding, - force_all=True, - excluded=Matcher(['**/.?**'])) - message = __('all of %d po files') % len(catalogs) - self.compile_catalogs(catalogs, message) + repo = CatalogRepository(self.srcdir, self.config.locale_dirs, + self.config.language, self.config.source_encoding) + message = __('all of %d po files') % len(list(repo.catalogs)) + self.compile_catalogs(set(repo.catalogs), message) def compile_specific_catalogs(self, specified_files): # type: (List[str]) -> None @@ -255,24 +250,21 @@ class Builder: else: return None - specified_domains = set(map(to_domain, specified_files)) - specified_domains.discard(None) - catalogs = i18n.find_catalog_source_files( - [path.join(self.srcdir, x) for x in self.config.locale_dirs], - self.config.language, - domains=list(specified_domains), - charset=self.config.source_encoding, - excluded=Matcher(['**/.?**'])) + catalogs = set() + domains = set(map(to_domain, specified_files)) + repo = CatalogRepository(self.srcdir, self.config.locale_dirs, + self.config.language, self.config.source_encoding) + for catalog in repo.catalogs: + if catalog.domain in domains and catalog.is_outdated(): + catalogs.add(catalog) message = __('targets for %d po files that are specified') % len(catalogs) self.compile_catalogs(catalogs, message) def compile_update_catalogs(self): # type: () -> None - catalogs = i18n.find_catalog_source_files( - [path.join(self.srcdir, x) for x in self.config.locale_dirs], - self.config.language, - charset=self.config.source_encoding, - excluded=Matcher(['**/.?**'])) + repo = CatalogRepository(self.srcdir, self.config.locale_dirs, + self.config.language, self.config.source_encoding) + catalogs = {c for c in repo.catalogs if c.is_outdated()} message = __('targets for %d po files that are out of date') % len(catalogs) self.compile_catalogs(catalogs, message) diff --git a/sphinx/environment/__init__.py b/sphinx/environment/__init__.py index e2e4d7ab8..1dc0e6b58 100644 --- a/sphinx/environment/__init__.py +++ b/sphinx/environment/__init__.py @@ -25,7 +25,7 @@ from sphinx.transforms import SphinxTransformer from sphinx.util import DownloadFiles, FilenameUniqDict from sphinx.util import logging from sphinx.util.docutils import LoggingReporter -from sphinx.util.i18n import find_catalog_files +from sphinx.util.i18n import CatalogRepository, docname_to_domain from sphinx.util.nodes import is_translatable if False: @@ -395,15 +395,13 @@ class BuildEnvironment: # move i18n process into the writing phase, and remove these lines. if builder.use_message_catalog: # add catalog mo file dependency + repo = CatalogRepository(self.srcdir, self.config.locale_dirs, + self.config.language, self.config.source_encoding) for docname in self.found_docs: - catalog_files = find_catalog_files( - docname, - self.srcdir, - self.config.locale_dirs, - self.config.language, - self.config.gettext_compact) - for filename in catalog_files: - self.dependencies[docname].add(filename) + domain = docname_to_domain(docname, self.config.gettext_compact) + for catalog in repo.catalogs: + if catalog.domain == domain: + self.dependencies[docname].add(catalog.mo_path) except OSError as exc: raise DocumentError(__('Failed to scan documents in %s: %r') % (self.srcdir, exc)) diff --git a/sphinx/util/i18n.py b/sphinx/util/i18n.py index 5d136a9b4..e342b1246 100644 --- a/sphinx/util/i18n.py +++ b/sphinx/util/i18n.py @@ -19,7 +19,7 @@ import babel.dates from babel.messages.mofile import write_mo from babel.messages.pofile import read_po -from sphinx.deprecation import RemovedInSphinx30Warning +from sphinx.deprecation import RemovedInSphinx30Warning, RemovedInSphinx40Warning from sphinx.errors import SphinxError from sphinx.locale import __ from sphinx.util import logging @@ -149,6 +149,8 @@ def docname_to_domain(docname, compation): def find_catalog_files(docname, srcdir, locale_dirs, lang, compaction): # type: (str, str, List[str], str, bool) -> List[str] + warnings.warn('find_catalog_files() is deprecated.', + RemovedInSphinx40Warning, stacklevel=2) if not(lang and locale_dirs): return [] @@ -176,6 +178,8 @@ def find_catalog_source_files(locale_dirs, locale, domains=None, gettext_compact default is False. :return: [CatalogInfo(), ...] """ + warnings.warn('find_catalog_source_files() is deprecated.', + RemovedInSphinx40Warning, stacklevel=2) if gettext_compact is not None: warnings.warn('gettext_compact argument for find_catalog_source_files() ' 'is deprecated.', RemovedInSphinx30Warning, stacklevel=2) diff --git a/tests/roots/test-builder-gettext-dont-rebuild-mo/conf.py b/tests/roots/test-builder-gettext-dont-rebuild-mo/conf.py index e69de29bb..d13f727e7 100644 --- a/tests/roots/test-builder-gettext-dont-rebuild-mo/conf.py +++ b/tests/roots/test-builder-gettext-dont-rebuild-mo/conf.py @@ -0,0 +1 @@ +language = 'xx' diff --git a/tests/roots/test-builder-gettext-dont-rebuild-mo/bom.po b/tests/roots/test-builder-gettext-dont-rebuild-mo/xx/LC_MESSAGES/bom.po similarity index 100% rename from tests/roots/test-builder-gettext-dont-rebuild-mo/bom.po rename to tests/roots/test-builder-gettext-dont-rebuild-mo/xx/LC_MESSAGES/bom.po diff --git a/tests/roots/test-intl/admonitions.po b/tests/roots/test-intl/xx/LC_MESSAGES/admonitions.po similarity index 100% rename from tests/roots/test-intl/admonitions.po rename to tests/roots/test-intl/xx/LC_MESSAGES/admonitions.po diff --git a/tests/roots/test-intl/bom.po b/tests/roots/test-intl/xx/LC_MESSAGES/bom.po similarity index 100% rename from tests/roots/test-intl/bom.po rename to tests/roots/test-intl/xx/LC_MESSAGES/bom.po diff --git a/tests/roots/test-intl/definition_terms.po b/tests/roots/test-intl/xx/LC_MESSAGES/definition_terms.po similarity index 100% rename from tests/roots/test-intl/definition_terms.po rename to tests/roots/test-intl/xx/LC_MESSAGES/definition_terms.po diff --git a/tests/roots/test-intl/docfields.po b/tests/roots/test-intl/xx/LC_MESSAGES/docfields.po similarity index 100% rename from tests/roots/test-intl/docfields.po rename to tests/roots/test-intl/xx/LC_MESSAGES/docfields.po diff --git a/tests/roots/test-intl/external_links.po b/tests/roots/test-intl/xx/LC_MESSAGES/external_links.po similarity index 100% rename from tests/roots/test-intl/external_links.po rename to tests/roots/test-intl/xx/LC_MESSAGES/external_links.po diff --git a/tests/roots/test-intl/figure.po b/tests/roots/test-intl/xx/LC_MESSAGES/figure.po similarity index 100% rename from tests/roots/test-intl/figure.po rename to tests/roots/test-intl/xx/LC_MESSAGES/figure.po diff --git a/tests/roots/test-intl/footnote.po b/tests/roots/test-intl/xx/LC_MESSAGES/footnote.po similarity index 100% rename from tests/roots/test-intl/footnote.po rename to tests/roots/test-intl/xx/LC_MESSAGES/footnote.po diff --git a/tests/roots/test-intl/glossary_terms.po b/tests/roots/test-intl/xx/LC_MESSAGES/glossary_terms.po similarity index 100% rename from tests/roots/test-intl/glossary_terms.po rename to tests/roots/test-intl/xx/LC_MESSAGES/glossary_terms.po diff --git a/tests/roots/test-intl/glossary_terms_inconsistency.po b/tests/roots/test-intl/xx/LC_MESSAGES/glossary_terms_inconsistency.po similarity index 100% rename from tests/roots/test-intl/glossary_terms_inconsistency.po rename to tests/roots/test-intl/xx/LC_MESSAGES/glossary_terms_inconsistency.po diff --git a/tests/roots/test-intl/index.po b/tests/roots/test-intl/xx/LC_MESSAGES/index.po similarity index 100% rename from tests/roots/test-intl/index.po rename to tests/roots/test-intl/xx/LC_MESSAGES/index.po diff --git a/tests/roots/test-intl/index_entries.po b/tests/roots/test-intl/xx/LC_MESSAGES/index_entries.po similarity index 100% rename from tests/roots/test-intl/index_entries.po rename to tests/roots/test-intl/xx/LC_MESSAGES/index_entries.po diff --git a/tests/roots/test-intl/label_target.po b/tests/roots/test-intl/xx/LC_MESSAGES/label_target.po similarity index 100% rename from tests/roots/test-intl/label_target.po rename to tests/roots/test-intl/xx/LC_MESSAGES/label_target.po diff --git a/tests/roots/test-intl/literalblock.po b/tests/roots/test-intl/xx/LC_MESSAGES/literalblock.po similarity index 100% rename from tests/roots/test-intl/literalblock.po rename to tests/roots/test-intl/xx/LC_MESSAGES/literalblock.po diff --git a/tests/roots/test-intl/only.po b/tests/roots/test-intl/xx/LC_MESSAGES/only.po similarity index 100% rename from tests/roots/test-intl/only.po rename to tests/roots/test-intl/xx/LC_MESSAGES/only.po diff --git a/tests/roots/test-intl/raw.po b/tests/roots/test-intl/xx/LC_MESSAGES/raw.po similarity index 100% rename from tests/roots/test-intl/raw.po rename to tests/roots/test-intl/xx/LC_MESSAGES/raw.po diff --git a/tests/roots/test-intl/refs.po b/tests/roots/test-intl/xx/LC_MESSAGES/refs.po similarity index 100% rename from tests/roots/test-intl/refs.po rename to tests/roots/test-intl/xx/LC_MESSAGES/refs.po diff --git a/tests/roots/test-intl/refs_inconsistency.po b/tests/roots/test-intl/xx/LC_MESSAGES/refs_inconsistency.po similarity index 100% rename from tests/roots/test-intl/refs_inconsistency.po rename to tests/roots/test-intl/xx/LC_MESSAGES/refs_inconsistency.po diff --git a/tests/roots/test-intl/refs_python_domain.po b/tests/roots/test-intl/xx/LC_MESSAGES/refs_python_domain.po similarity index 100% rename from tests/roots/test-intl/refs_python_domain.po rename to tests/roots/test-intl/xx/LC_MESSAGES/refs_python_domain.po diff --git a/tests/roots/test-intl/role_xref.po b/tests/roots/test-intl/xx/LC_MESSAGES/role_xref.po similarity index 100% rename from tests/roots/test-intl/role_xref.po rename to tests/roots/test-intl/xx/LC_MESSAGES/role_xref.po diff --git a/tests/roots/test-intl/rubric.po b/tests/roots/test-intl/xx/LC_MESSAGES/rubric.po similarity index 100% rename from tests/roots/test-intl/rubric.po rename to tests/roots/test-intl/xx/LC_MESSAGES/rubric.po diff --git a/tests/roots/test-intl/section.po b/tests/roots/test-intl/xx/LC_MESSAGES/section.po similarity index 100% rename from tests/roots/test-intl/section.po rename to tests/roots/test-intl/xx/LC_MESSAGES/section.po diff --git a/tests/roots/test-intl/seealso.po b/tests/roots/test-intl/xx/LC_MESSAGES/seealso.po similarity index 100% rename from tests/roots/test-intl/seealso.po rename to tests/roots/test-intl/xx/LC_MESSAGES/seealso.po diff --git a/tests/roots/test-intl/sphinx.po b/tests/roots/test-intl/xx/LC_MESSAGES/sphinx.po similarity index 100% rename from tests/roots/test-intl/sphinx.po rename to tests/roots/test-intl/xx/LC_MESSAGES/sphinx.po diff --git a/tests/roots/test-intl/table.po b/tests/roots/test-intl/xx/LC_MESSAGES/table.po similarity index 100% rename from tests/roots/test-intl/table.po rename to tests/roots/test-intl/xx/LC_MESSAGES/table.po diff --git a/tests/roots/test-intl/topic.po b/tests/roots/test-intl/xx/LC_MESSAGES/topic.po similarity index 100% rename from tests/roots/test-intl/topic.po rename to tests/roots/test-intl/xx/LC_MESSAGES/topic.po diff --git a/tests/roots/test-intl/versionchange.po b/tests/roots/test-intl/xx/LC_MESSAGES/versionchange.po similarity index 100% rename from tests/roots/test-intl/versionchange.po rename to tests/roots/test-intl/xx/LC_MESSAGES/versionchange.po diff --git a/tests/roots/test-intl/warnings.po b/tests/roots/test-intl/xx/LC_MESSAGES/warnings.po similarity index 100% rename from tests/roots/test-intl/warnings.po rename to tests/roots/test-intl/xx/LC_MESSAGES/warnings.po diff --git a/tests/test_catalogs.py b/tests/test_catalogs.py index 14fca84d5..f5fffa9d6 100644 --- a/tests/test_catalogs.py +++ b/tests/test_catalogs.py @@ -17,18 +17,19 @@ from sphinx.testing.util import find_files @pytest.fixture def setup_test(app_params): srcdir = app_params.kwargs['srcdir'] - locale_dir = srcdir / 'locale' + src_locale_dir = srcdir / 'xx' / 'LC_MESSAGES' + dest_locale_dir = srcdir / 'locale' # copy all catalogs into locale layout directory - for po in find_files(srcdir, '.po'): - copy_po = (locale_dir / 'en' / 'LC_MESSAGES' / po) + for po in find_files(src_locale_dir, '.po'): + copy_po = (dest_locale_dir / 'en' / 'LC_MESSAGES' / po) if not copy_po.parent.exists(): copy_po.parent.makedirs() - shutil.copy(srcdir / po, copy_po) + shutil.copy(src_locale_dir / po, copy_po) yield # delete remnants left over after failed build - locale_dir.rmtree(True) + dest_locale_dir.rmtree(True) (srcdir / '_build').rmtree(True) diff --git a/tests/test_intl.py b/tests/test_intl.py index 367409fd9..002851f07 100644 --- a/tests/test_intl.py +++ b/tests/test_intl.py @@ -41,31 +41,21 @@ def write_mo(pathname, po): return mofile.write_mo(f, po) -@pytest.fixture -def build_mo(): - def builder(srcdir): - """ - :param str srcdir: app.srcdir - """ - srcdir = path(srcdir) - for dirpath, dirs, files in os.walk(srcdir): - dirpath = path(dirpath) - for f in [f for f in files if f.endswith('.po')]: - po = dirpath / f - mo = srcdir / 'xx' / 'LC_MESSAGES' / ( - os.path.relpath(po[:-3], srcdir) + '.mo') - if not mo.parent.exists(): - mo.parent.makedirs() - - if not mo.exists() or mo.stat().st_mtime < po.stat().st_mtime: - # compile .mo file only if needed - write_mo(mo, read_po(po)) - return builder - - @pytest.fixture(autouse=True) -def setup_intl(app_params, build_mo): - build_mo(app_params.kwargs['srcdir']) +def setup_intl(app_params): + srcdir = path(app_params.kwargs['srcdir']) + for dirpath, dirs, files in os.walk(srcdir): + dirpath = path(dirpath) + for f in [f for f in files if f.endswith('.po')]: + po = dirpath / f + mo = srcdir / 'xx' / 'LC_MESSAGES' / ( + os.path.relpath(po[:-3], srcdir) + '.mo') + if not mo.parent.exists(): + mo.parent.makedirs() + + if not mo.exists() or mo.stat().st_mtime < po.stat().st_mtime: + # compile .mo file only if needed + write_mo(mo, read_po(po)) @pytest.fixture(autouse=True) @@ -296,7 +286,7 @@ def test_text_glossary_term_inconsistencies(app, warning): def test_gettext_section(app): app.build() # --- section - expect = read_po(app.srcdir / 'section.po') + expect = read_po(app.srcdir / 'xx' / 'LC_MESSAGES' / 'section.po') actual = read_po(app.outdir / 'section.pot') for expect_msg in [m for m in expect if m.id]: assert expect_msg.id in [m.id for m in actual if m.id] @@ -309,7 +299,7 @@ def test_text_section(app): app.build() # --- section result = (app.outdir / 'section.txt').text() - expect = read_po(app.srcdir / 'section.po') + expect = read_po(app.srcdir / 'xx' / 'LC_MESSAGES' / 'section.po') for expect_msg in [m for m in expect if m.id]: assert expect_msg.string in result @@ -445,7 +435,7 @@ def test_text_admonitions(app): def test_gettext_toctree(app): app.build() # --- toctree - expect = read_po(app.srcdir / 'index.po') + expect = read_po(app.srcdir / 'xx' / 'LC_MESSAGES' / 'index.po') actual = read_po(app.outdir / 'index.pot') for expect_msg in [m for m in expect if m.id]: assert expect_msg.id in [m.id for m in actual if m.id] @@ -457,7 +447,7 @@ def test_gettext_toctree(app): def test_gettext_table(app): app.build() # --- toctree - expect = read_po(app.srcdir / 'table.po') + expect = read_po(app.srcdir / 'xx' / 'LC_MESSAGES' / 'table.po') actual = read_po(app.outdir / 'table.pot') for expect_msg in [m for m in expect if m.id]: assert expect_msg.id in [m.id for m in actual if m.id] @@ -470,7 +460,7 @@ def test_text_table(app): app.build() # --- toctree result = (app.outdir / 'table.txt').text() - expect = read_po(app.srcdir / 'table.po') + expect = read_po(app.srcdir / 'xx' / 'LC_MESSAGES' / 'table.po') for expect_msg in [m for m in expect if m.id]: assert expect_msg.string in result @@ -481,7 +471,7 @@ def test_text_table(app): def test_gettext_topic(app): app.build() # --- topic - expect = read_po(app.srcdir / 'topic.po') + expect = read_po(app.srcdir / 'xx' / 'LC_MESSAGES' / 'topic.po') actual = read_po(app.outdir / 'topic.pot') for expect_msg in [m for m in expect if m.id]: assert expect_msg.id in [m.id for m in actual if m.id] @@ -494,7 +484,7 @@ def test_text_topic(app): app.build() # --- topic result = (app.outdir / 'topic.txt').text() - expect = read_po(app.srcdir / 'topic.po') + expect = read_po(app.srcdir / 'xx' / 'LC_MESSAGES' / 'topic.po') for expect_msg in [m for m in expect if m.id]: assert expect_msg.string in result @@ -505,7 +495,7 @@ def test_text_topic(app): def test_gettext_definition_terms(app): app.build() # --- definition terms: regression test for #2198, #2205 - expect = read_po(app.srcdir / 'definition_terms.po') + expect = read_po(app.srcdir / 'xx' / 'LC_MESSAGES' / 'definition_terms.po') actual = read_po(app.outdir / 'definition_terms.pot') for expect_msg in [m for m in expect if m.id]: assert expect_msg.id in [m.id for m in actual if m.id] @@ -517,7 +507,7 @@ def test_gettext_definition_terms(app): def test_gettext_glossary_terms(app, warning): app.build() # --- glossary terms: regression test for #1090 - expect = read_po(app.srcdir / 'glossary_terms.po') + expect = read_po(app.srcdir / 'xx' / 'LC_MESSAGES' / 'glossary_terms.po') actual = read_po(app.outdir / 'glossary_terms.pot') for expect_msg in [m for m in expect if m.id]: assert expect_msg.id in [m.id for m in actual if m.id] @@ -531,7 +521,7 @@ def test_gettext_glossary_terms(app, warning): def test_gettext_glossary_term_inconsistencies(app): app.build() # --- glossary term inconsistencies: regression test for #1090 - expect = read_po(app.srcdir / 'glossary_terms_inconsistency.po') + expect = read_po(app.srcdir / 'xx' / 'LC_MESSAGES' / 'glossary_terms_inconsistency.po') actual = read_po(app.outdir / 'glossary_terms_inconsistency.pot') for expect_msg in [m for m in expect if m.id]: assert expect_msg.id in [m.id for m in actual if m.id] @@ -543,7 +533,7 @@ def test_gettext_glossary_term_inconsistencies(app): def test_gettext_literalblock(app): app.build() # --- gettext builder always ignores ``only`` directive - expect = read_po(app.srcdir / 'literalblock.po') + expect = read_po(app.srcdir / 'xx' / 'LC_MESSAGES' / 'literalblock.po') actual = read_po(app.outdir / 'literalblock.pot') for expect_msg in [m for m in expect if m.id]: if len(expect_msg.id.splitlines()) == 1: @@ -559,7 +549,7 @@ def test_gettext_literalblock(app): def test_gettext_buildr_ignores_only_directive(app): app.build() # --- gettext builder always ignores ``only`` directive - expect = read_po(app.srcdir / 'only.po') + expect = read_po(app.srcdir / 'xx' / 'LC_MESSAGES' / 'only.po') actual = read_po(app.outdir / 'only.pot') for expect_msg in [m for m in expect if m.id]: assert expect_msg.id in [m.id for m in actual if m.id] @@ -568,7 +558,7 @@ def test_gettext_buildr_ignores_only_directive(app): @sphinx_intl # use individual shared_result directory to avoid "incompatible doctree" error @pytest.mark.sphinx(testroot='builder-gettext-dont-rebuild-mo') -def test_gettext_dont_rebuild_mo(make_app, app_params, build_mo): +def test_gettext_dont_rebuild_mo(make_app, app_params): # --- don't rebuild by .mo mtime def get_number_of_update_targets(app_): app_.env.find_files(app_.config, app_.builder) @@ -579,7 +569,6 @@ def test_gettext_dont_rebuild_mo(make_app, app_params, build_mo): # phase1: build document with non-gettext builder and generate mo file in srcdir app0 = make_app('dummy', *args, **kwargs) - build_mo(app0.srcdir) app0.build() assert (app0.srcdir / 'xx' / 'LC_MESSAGES' / 'bom.mo').exists() # Since it is after the build, the number of documents to be updated is 0 From 3a0a9f659e436f1f38d12a784cb01379e20f139f Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 16 Feb 2019 23:40:45 +0900 Subject: [PATCH 029/121] refactor: import_object() allows to import nested objects (ex. nested class) --- sphinx/util/__init__.py | 34 +++++++++++++++++++--------------- tests/test_util.py | 24 ++++++++++++++++++++++-- 2 files changed, 41 insertions(+), 17 deletions(-) diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py index bfe99778a..9c78630ff 100644 --- a/sphinx/util/__init__.py +++ b/sphinx/util/__init__.py @@ -603,22 +603,26 @@ class PeekableIterator: def import_object(objname, source=None): # type: (str, str) -> Any + """Import python object by qualname.""" try: - module, name = objname.rsplit('.', 1) - except ValueError as err: - raise ExtensionError('Invalid full object name %s' % objname + - (source and ' (needed for %s)' % source or ''), - err) - try: - return getattr(__import__(module, None, None, [name]), name) - except ImportError as err: - raise ExtensionError('Could not import %s' % module + - (source and ' (needed for %s)' % source or ''), - err) - except AttributeError as err: - raise ExtensionError('Could not find %s' % objname + - (source and ' (needed for %s)' % source or ''), - err) + objpath = objname.split('.') + modname = objpath.pop(0) + obj = __import__(modname) + for name in objpath: + modname += '.' + name + try: + obj = getattr(obj, name) + except AttributeError: + __import__(modname) + obj = getattr(obj, name) + + return obj + except (AttributeError, ImportError) as exc: + if source: + raise ExtensionError('Could not import %s (needed for %s)' % + (objname, source), exc) + else: + raise ExtensionError('Could not import %s' % objname, exc) def encode_uri(uri): diff --git a/tests/test_util.py b/tests/test_util.py index 0926096f4..bcac4b654 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -15,11 +15,11 @@ import pytest from mock import patch import sphinx -from sphinx.errors import PycodeError +from sphinx.errors import ExtensionError, PycodeError from sphinx.testing.util import strip_escseq from sphinx.util import ( SkipProgressMessage, display_chunk, encode_uri, ensuredir, get_module_source, - parselinenos, progress_message, status_iterator, xmlname_checker + import_object, parselinenos, progress_message, status_iterator, xmlname_checker ) from sphinx.util import logging @@ -71,6 +71,26 @@ def test_get_module_source(): get_module_source('itertools') +def test_import_object(): + module = import_object('sphinx') + assert module.__name__ == 'sphinx' + + module = import_object('sphinx.application') + assert module.__name__ == 'sphinx.application' + + obj = import_object('sphinx.application.Sphinx') + assert obj.__name__ == 'Sphinx' + + with pytest.raises(ExtensionError) as exc: + import_object('sphinx.unknown_module') + assert exc.value.args[0] == 'Could not import sphinx.unknown_module' + + with pytest.raises(ExtensionError) as exc: + import_object('sphinx.unknown_module', 'my extension') + assert exc.value.args[0] == ('Could not import sphinx.unknown_module ' + '(needed for my extension)') + + @pytest.mark.sphinx('dummy') @patch('sphinx.util.console._tw', 40) # terminal width = 40 def test_status_iterator(app, status, warning): From 49bd372142899093e2340556ffbe1f927127cafb Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 27 Feb 2019 23:20:40 +0900 Subject: [PATCH 030/121] Fix #6028: graphviz: Ensure the graphviz filenames are reproducible --- CHANGES | 1 + sphinx/ext/graphviz.py | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 65f39e538..11e9c6137 100644 --- a/CHANGES +++ b/CHANGES @@ -21,6 +21,7 @@ Bugs fixed * #6046: LaTeX: ``TypeError`` is raised when invalid latex_elements given * #6019: imgconverter: Including multipage PDF fails * #6047: autodoc: ``autofunction`` emits a warning for method objects +* #6028: graphviz: Ensure the graphviz filenames are reproducible Testing -------- diff --git a/sphinx/ext/graphviz.py b/sphinx/ext/graphviz.py index b62d80254..2971f4016 100644 --- a/sphinx/ext/graphviz.py +++ b/sphinx/ext/graphviz.py @@ -194,9 +194,7 @@ class GraphvizSimple(SphinxDirective): node = graphviz() node['code'] = '%s %s {\n%s\n}\n' % \ (self.name, self.arguments[0], '\n'.join(self.content)) - node['options'] = { - 'docname': path.splitext(self.state.document.current_source)[0], - } + node['options'] = {'docname': self.env.docname} if 'graphviz_dot' in self.options: node['options']['graphviz_dot'] = self.options['graphviz_dot'] if 'alt' in self.options: From ec307996172bfe23d46dfacdb0bbaf1caf7412c5 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 27 Feb 2019 23:29:17 +0900 Subject: [PATCH 031/121] Revert "C++, conditionally disable test on sys.maxunicode" This reverts commit 2a544b4ec3bce0bd6c11d7fda8df5a04013eca1f. --- tests/test_domain_cpp.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index 4d7d3e592..0cd3445a5 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -9,7 +9,6 @@ """ import re -import sys import pytest @@ -152,9 +151,8 @@ def test_expressions(): exprCheck(p + "'\\x0A'", t + "10") exprCheck(p + "'\\u0a42'", t + "2626") exprCheck(p + "'\\u0A42'", t + "2626") - if sys.maxunicode > 65535: - exprCheck(p + "'\\U0001f34c'", t + "127820") - exprCheck(p + "'\\U0001F34C'", t + "127820") + exprCheck(p + "'\\U0001f34c'", t + "127820") + exprCheck(p + "'\\U0001F34C'", t + "127820") # TODO: user-defined lit exprCheck('(... + Ns)', '(... + Ns)', id4='flpl2Ns') From 1522baf58aa4368bbc268fa112ed35089fbc85c2 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 27 Feb 2019 23:55:22 +0900 Subject: [PATCH 032/121] Fix #6113: html: Table cells and list items have large margins --- CHANGES | 1 + sphinx/themes/basic/static/basic.css_t | 6 ++++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 699437b66..85b225e31 100644 --- a/CHANGES +++ b/CHANGES @@ -18,6 +18,7 @@ Bugs fixed * #6096: html: Anchor links are not added to figures * #3620: html: Defer searchindex.js rather than loading it via ajax +* #6113: html: Table cells and list items have large margins * #5508: ``linenothreshold`` option for ``highlight`` directive was ignored Testing diff --git a/sphinx/themes/basic/static/basic.css_t b/sphinx/themes/basic/static/basic.css_t index ec30e8432..90a14286f 100644 --- a/sphinx/themes/basic/static/basic.css_t +++ b/sphinx/themes/basic/static/basic.css_t @@ -401,11 +401,13 @@ table.citation td { border-bottom: none; } +th > p:first-child, td > p:first-child { margin-top: 0px; } -td > p:only-child { +th > p:last-child, +td > p:last-child { margin-bottom: 0px; } @@ -482,7 +484,7 @@ li > p:first-child { margin-top: 0px; } -li > p:only-child { +li > p:last-child { margin-bottom: 0px; } From 6c244bdd696ac320d02735cf1724b047515a7847 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 28 Feb 2019 01:39:29 +0900 Subject: [PATCH 033/121] Fix #6067: LaTeX: images having a target are concatenated to next line --- CHANGES | 1 + sphinx/writers/latex.py | 4 ++++ tests/roots/test-images/index.rst | 3 +++ tests/test_build_latex.py | 10 +++++++++- 4 files changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 65f39e538..eb2898927 100644 --- a/CHANGES +++ b/CHANGES @@ -19,6 +19,7 @@ Bugs fixed * LaTeX: Remove extraneous space after author names on PDF title page (refs: #6004) * #6026: LaTeX: A cross reference to definition list does not work * #6046: LaTeX: ``TypeError`` is raised when invalid latex_elements given +* #6067: LaTeX: images having a target are concatenated to next line * #6019: imgconverter: Including multipage PDF fails * #6047: autodoc: ``autofunction`` emits a warning for method objects diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 7cef81ff4..65e64a61b 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -1987,6 +1987,8 @@ class LaTeXTranslator(nodes.NodeVisitor): for id in node.get('ids'): anchor = not self.in_caption self.body += self.hypertarget(id, anchor=anchor) + if not self.is_inline(node): + self.body.append('\n') uri = node.get('refuri', '') if not uri and node.get('refid'): uri = '%' + self.curfilestack[-1] + '#' + node['refid'] @@ -2039,6 +2041,8 @@ class LaTeXTranslator(nodes.NodeVisitor): def depart_reference(self, node): # type: (nodes.Node) -> None self.body.append(self.context.pop()) + if not self.is_inline(node): + self.body.append('\n') def visit_number_reference(self, node): # type: (nodes.Node) -> None diff --git a/tests/roots/test-images/index.rst b/tests/roots/test-images/index.rst index d1478fab1..577dd0f88 100644 --- a/tests/roots/test-images/index.rst +++ b/tests/roots/test-images/index.rst @@ -15,6 +15,9 @@ test-image .. image:: testimäge.png +.. image:: rimg.png + :target: https://www.sphinx-doc.org/ + .. a remote image .. image:: https://www.python.org/static/img/python-logo.png diff --git a/tests/test_build_latex.py b/tests/test_build_latex.py index b81d2a3fe..fe092113e 100644 --- a/tests/test_build_latex.py +++ b/tests/test_build_latex.py @@ -1184,16 +1184,24 @@ def test_latex_raw_directive(app, status, warning): @pytest.mark.sphinx('latex', testroot='images') -def test_latex_remote_images(app, status, warning): +def test_latex_images(app, status, warning): app.builder.build_all() result = (app.outdir / 'Python.tex').text(encoding='utf8') + + # images are copied assert '\\sphinxincludegraphics{{python-logo}.png}' in result assert (app.outdir / 'python-logo.png').exists() + + # not found images assert '\\sphinxincludegraphics{{NOT_EXIST}.PNG}' not in result assert ('WARNING: Could not fetch remote image: ' 'http://example.com/NOT_EXIST.PNG [404]' in warning.getvalue()) + # an image having target + assert ('\\sphinxhref{https://www.sphinx-doc.org/}' + '{\\sphinxincludegraphics{{rimg}.png}}\n\n' in result) + @pytest.mark.sphinx('latex', testroot='latex-index') def test_latex_index(app, status, warning): From 9c2e7b6798c51cf631af5918fc217992ad944e2f Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 28 Feb 2019 02:03:59 +0900 Subject: [PATCH 034/121] Fix #6067: LaTeX: images having a target are not aligned even if specified --- CHANGES | 1 + sphinx/writers/latex.py | 8 ++++++-- tests/roots/test-images/index.rst | 4 ++++ tests/test_build_latex.py | 4 ++++ 4 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index eb2898927..82ad1cdee 100644 --- a/CHANGES +++ b/CHANGES @@ -20,6 +20,7 @@ Bugs fixed * #6026: LaTeX: A cross reference to definition list does not work * #6046: LaTeX: ``TypeError`` is raised when invalid latex_elements given * #6067: LaTeX: images having a target are concatenated to next line +* #6067: LaTeX: images having a target are not aligned even if specified * #6019: imgconverter: Including multipage PDF fails * #6047: autodoc: ``autofunction`` emits a warning for method objects diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 65e64a61b..0eafc0af9 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -1655,7 +1655,11 @@ class LaTeXTranslator(nodes.NodeVisitor): # in reverse order post = [] # type: List[unicode] include_graphics_options = [] - is_inline = self.is_inline(node) + has_hyperlink = isinstance(node.parent, nodes.reference) + if has_hyperlink: + is_inline = self.is_inline(node.parent) + else: + is_inline = self.is_inline(node) if 'width' in attrs: if 'scale' in attrs: w = self.latex_image_length(attrs['width'], attrs['scale']) @@ -1697,7 +1701,7 @@ class LaTeXTranslator(nodes.NodeVisitor): if self.in_parsed_literal: pre.append('{\\sphinxunactivateextrasandspace ') post.append('}') - if not is_inline: + if not is_inline and not has_hyperlink: pre.append('\n\\noindent') post.append('\n') pre.reverse() diff --git a/tests/roots/test-images/index.rst b/tests/roots/test-images/index.rst index 577dd0f88..67b742b27 100644 --- a/tests/roots/test-images/index.rst +++ b/tests/roots/test-images/index.rst @@ -18,6 +18,10 @@ test-image .. image:: rimg.png :target: https://www.sphinx-doc.org/ +.. image:: rimg.png + :align: center + :target: https://www.python.org/ + .. a remote image .. image:: https://www.python.org/static/img/python-logo.png diff --git a/tests/test_build_latex.py b/tests/test_build_latex.py index fe092113e..03558cd92 100644 --- a/tests/test_build_latex.py +++ b/tests/test_build_latex.py @@ -1202,6 +1202,10 @@ def test_latex_images(app, status, warning): assert ('\\sphinxhref{https://www.sphinx-doc.org/}' '{\\sphinxincludegraphics{{rimg}.png}}\n\n' in result) + # a centerized image having target + assert ('\\sphinxhref{https://www.python.org/}{{\\hspace*{\\fill}' + '\\sphinxincludegraphics{{rimg}.png}\\hspace*{\\fill}}}\n\n' in result) + @pytest.mark.sphinx('latex', testroot='latex-index') def test_latex_index(app, status, warning): From 6f973d410be58c5fb2aca5fb6337dff61abc92fe Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 27 Feb 2019 23:20:40 +0900 Subject: [PATCH 035/121] Fix #6028: graphviz: Ensure the graphviz filenames are reproducible --- CHANGES | 1 + sphinx/ext/graphviz.py | 4 +--- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 65f39e538..11e9c6137 100644 --- a/CHANGES +++ b/CHANGES @@ -21,6 +21,7 @@ Bugs fixed * #6046: LaTeX: ``TypeError`` is raised when invalid latex_elements given * #6019: imgconverter: Including multipage PDF fails * #6047: autodoc: ``autofunction`` emits a warning for method objects +* #6028: graphviz: Ensure the graphviz filenames are reproducible Testing -------- diff --git a/sphinx/ext/graphviz.py b/sphinx/ext/graphviz.py index b62d80254..2971f4016 100644 --- a/sphinx/ext/graphviz.py +++ b/sphinx/ext/graphviz.py @@ -194,9 +194,7 @@ class GraphvizSimple(SphinxDirective): node = graphviz() node['code'] = '%s %s {\n%s\n}\n' % \ (self.name, self.arguments[0], '\n'.join(self.content)) - node['options'] = { - 'docname': path.splitext(self.state.document.current_source)[0], - } + node['options'] = {'docname': self.env.docname} if 'graphviz_dot' in self.options: node['options']['graphviz_dot'] = self.options['graphviz_dot'] if 'alt' in self.options: From 0377adb82e7b848c4c50989606772cbd3abec113 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 28 Feb 2019 01:05:37 +0900 Subject: [PATCH 036/121] Fix #6068: doctest: ``skipif`` option may remove the code block from documentation --- CHANGES | 1 + sphinx/ext/doctest.py | 29 +++++++++++++++++++---------- 2 files changed, 20 insertions(+), 10 deletions(-) diff --git a/CHANGES b/CHANGES index 11e9c6137..e4b1dd3c0 100644 --- a/CHANGES +++ b/CHANGES @@ -22,6 +22,7 @@ Bugs fixed * #6019: imgconverter: Including multipage PDF fails * #6047: autodoc: ``autofunction`` emits a warning for method objects * #6028: graphviz: Ensure the graphviz filenames are reproducible +* #6068: doctest: ``skipif`` option may remove the code block from documentation Testing -------- diff --git a/sphinx/ext/doctest.py b/sphinx/ext/doctest.py index f0c418ccf..52f286c02 100644 --- a/sphinx/ext/doctest.py +++ b/sphinx/ext/doctest.py @@ -90,16 +90,6 @@ class TestDirective(SphinxDirective): def run(self): # type: () -> List[nodes.Node] - if 'skipif' in self.options: - condition = self.options['skipif'] - context = {} # type: Dict[str, Any] - if self.config.doctest_global_setup: - exec(self.config.doctest_global_setup, context) - should_skip = eval(condition, context) - if self.config.doctest_global_cleanup: - exec(self.config.doctest_global_cleanup, context) - if should_skip: - return [] # use ordinary docutils nodes for test code: they get special attributes # so that our builder recognizes them, and the other builders are happy. code = '\n'.join(self.content) @@ -161,6 +151,8 @@ class TestDirective(SphinxDirective): self.state.document.reporter.warning( __("'%s' is not a valid pyversion option") % spec, line=self.lineno) + if 'skipif' in self.options: + node['skipif'] = self.options['skipif'] return [node] @@ -411,6 +403,20 @@ Doctest summary return node.line - 1 return None + def skipped(self, node): + # type: (nodes.Element) -> bool + if 'skipif' not in node: + return False + else: + condition = node['skipif'] + context = {} # type: Dict[str, Any] + if self.config.doctest_global_setup: + exec(self.config.doctest_global_setup, context) + should_skip = eval(condition, context) + if self.config.doctest_global_cleanup: + exec(self.config.doctest_global_cleanup, context) + return should_skip + def test_doc(self, docname, doctree): # type: (unicode, nodes.Node) -> None groups = {} # type: Dict[unicode, TestGroup] @@ -437,6 +443,9 @@ Doctest summary return isinstance(node, (nodes.literal_block, nodes.comment)) \ and 'testnodetype' in node for node in doctree.traverse(condition): + if self.skipped(node): + continue + source = node['test'] if 'test' in node else node.astext() filename = self.get_filename_for_node(node, docname) line_number = self.get_line_number(node) From 6109466a8f846ed3e089adfa3d32db30d724b543 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 2 Mar 2019 12:25:07 +0900 Subject: [PATCH 037/121] Stop to access env.versionchanged because of deprecated --- sphinx/environment/__init__.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/sphinx/environment/__init__.py b/sphinx/environment/__init__.py index e2e4d7ab8..3e3406706 100644 --- a/sphinx/environment/__init__.py +++ b/sphinx/environment/__init__.py @@ -311,10 +311,6 @@ class BuildEnvironment: if docname in other.reread_always: self.reread_always.add(docname) - for version, changes in other.versionchanges.items(): - self.versionchanges.setdefault(version, []).extend( - change for change in changes if change[1] in docnames) - for domainname, domain in self.domains.items(): domain.merge_domaindata(docnames, other.domaindata[domainname]) app.emit('env-merge-info', self, docnames, other) From 0d7bc86e7b59759b8476669f19b2390d6ac00d3a Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 2 Mar 2019 15:59:56 +0900 Subject: [PATCH 038/121] refactor: move NoUri to sphinx.errors --- CHANGES | 3 +++ doc/extdev/index.rst | 5 +++++ sphinx/builders/latex/__init__.py | 3 +-- sphinx/builders/manpage.py | 2 +- sphinx/builders/texinfo.py | 2 +- sphinx/domains/cpp.py | 2 +- sphinx/domains/std.py | 3 +-- sphinx/environment/__init__.py | 19 +++++++++++++------ sphinx/environment/adapters/indexentries.py | 3 +-- sphinx/errors.py | 5 +++++ sphinx/ext/todo.py | 2 +- sphinx/transforms/post_transforms/__init__.py | 2 +- 12 files changed, 34 insertions(+), 17 deletions(-) diff --git a/CHANGES b/CHANGES index 18ac5f7b2..b214a89d5 100644 --- a/CHANGES +++ b/CHANGES @@ -13,6 +13,7 @@ Incompatible changes Deprecated ---------- +* ``sphinx.environment.NoUri`` * ``sphinx.ext.autodoc.importer.MockFinder`` * ``sphinx.ext.autodoc.importer.MockLoader`` * ``sphinx.ext.autodoc.importer.mock()`` @@ -21,6 +22,8 @@ Deprecated * ``sphinx.util.i18n.find_catalog_files()`` * ``sphinx.util.i18n.find_catalog_source_files()`` +For more details, see :ref:`deprecation APIs list `. + Features added -------------- diff --git a/doc/extdev/index.rst b/doc/extdev/index.rst index 1cae48860..44bea4845 100644 --- a/doc/extdev/index.rst +++ b/doc/extdev/index.rst @@ -234,6 +234,11 @@ The following is a list of deprecated interfaces. - (will be) Removed - Alternatives + * - ``sphinx.environment.NoUri`` + - 2.1 + - 4.0 + - ``sphinx.errors.NoUri`` + * - ``sphinx.ext.autodoc.importer.MockFinder`` - 2.1 - 4.0 diff --git a/sphinx/builders/latex/__init__.py b/sphinx/builders/latex/__init__.py index 42160487a..bf746b0da 100644 --- a/sphinx/builders/latex/__init__.py +++ b/sphinx/builders/latex/__init__.py @@ -23,9 +23,8 @@ from sphinx.builders.latex.transforms import ( ) from sphinx.builders.latex.util import ExtBabel from sphinx.config import ENUM -from sphinx.environment import NoUri from sphinx.environment.adapters.asset import ImageAdapter -from sphinx.errors import SphinxError +from sphinx.errors import NoUri, SphinxError from sphinx.locale import _, __ from sphinx.transforms import SphinxTransformer from sphinx.util import texescape, logging, progress_message, status_iterator diff --git a/sphinx/builders/manpage.py b/sphinx/builders/manpage.py index 214ed6afa..5e424547c 100644 --- a/sphinx/builders/manpage.py +++ b/sphinx/builders/manpage.py @@ -15,7 +15,7 @@ from docutils.io import FileOutput from sphinx import addnodes from sphinx.builders import Builder -from sphinx.environment import NoUri +from sphinx.errors import NoUri from sphinx.locale import __ from sphinx.util import logging from sphinx.util import progress_message diff --git a/sphinx/builders/texinfo.py b/sphinx/builders/texinfo.py index 2655d7a0b..1d823dab6 100644 --- a/sphinx/builders/texinfo.py +++ b/sphinx/builders/texinfo.py @@ -18,8 +18,8 @@ from docutils.io import FileOutput from sphinx import addnodes from sphinx import package_dir from sphinx.builders import Builder -from sphinx.environment import NoUri from sphinx.environment.adapters.asset import ImageAdapter +from sphinx.errors import NoUri from sphinx.locale import _, __ from sphinx.util import logging from sphinx.util import progress_message, status_iterator diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index 13f905d07..01432abb5 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -19,7 +19,7 @@ from sphinx import addnodes from sphinx.deprecation import RemovedInSphinx40Warning from sphinx.directives import ObjectDescription from sphinx.domains import Domain, ObjType -from sphinx.environment import NoUri +from sphinx.errors import NoUri from sphinx.locale import _, __ from sphinx.roles import XRefRole from sphinx.transforms import SphinxTransform diff --git a/sphinx/domains/std.py b/sphinx/domains/std.py index bb6d81c0f..04e8219c4 100644 --- a/sphinx/domains/std.py +++ b/sphinx/domains/std.py @@ -22,6 +22,7 @@ from sphinx import addnodes from sphinx.deprecation import RemovedInSphinx30Warning from sphinx.directives import ObjectDescription from sphinx.domains import Domain, ObjType +from sphinx.errors import NoUri from sphinx.locale import _, __ from sphinx.roles import XRefRole from sphinx.util import ws_re, logging, docname_join @@ -838,8 +839,6 @@ class StandardDomain(Domain): def _resolve_citation_xref(self, env, fromdocname, builder, typ, target, node, contnode): # type: (BuildEnvironment, str, Builder, str, str, addnodes.pending_xref, nodes.Element) -> nodes.Element # NOQA - from sphinx.environment import NoUri - docname, labelid, lineno = self.data['citations'].get(target, ('', '', 0)) if not docname: if 'ids' in node: diff --git a/sphinx/environment/__init__.py b/sphinx/environment/__init__.py index 1dc0e6b58..726c0a8f0 100644 --- a/sphinx/environment/__init__.py +++ b/sphinx/environment/__init__.py @@ -17,7 +17,9 @@ from io import BytesIO from os import path from sphinx import addnodes -from sphinx.deprecation import RemovedInSphinx30Warning, RemovedInSphinx40Warning +from sphinx.deprecation import ( + RemovedInSphinx30Warning, RemovedInSphinx40Warning, deprecated_alias +) from sphinx.environment.adapters.toctree import TocTree from sphinx.errors import SphinxError, BuildEnvironmentError, DocumentError, ExtensionError from sphinx.locale import __ @@ -78,11 +80,6 @@ versioning_conditions = { } # type: Dict[str, Union[bool, Callable]] -class NoUri(Exception): - """Raised by get_relative_uri if there is no URI available.""" - pass - - class BuildEnvironment: """ The environment in which the ReST files are translated. @@ -784,3 +781,13 @@ class BuildEnvironment: node['version'] = version node.line = lineno self.get_domain('changeset').note_changeset(node) # type: ignore + + +from sphinx.errors import NoUri # NOQA + + +deprecated_alias('sphinx.environment', + { + 'NoUri': NoUri, + }, + RemovedInSphinx30Warning) diff --git a/sphinx/environment/adapters/indexentries.py b/sphinx/environment/adapters/indexentries.py index 1fedbcce4..38d28f0b0 100644 --- a/sphinx/environment/adapters/indexentries.py +++ b/sphinx/environment/adapters/indexentries.py @@ -12,6 +12,7 @@ import re import unicodedata from itertools import groupby +from sphinx.errors import NoUri from sphinx.locale import _, __ from sphinx.util import split_into, logging @@ -33,8 +34,6 @@ class IndexEntries: _fixre=re.compile(r'(.*) ([(][^()]*[)])')): # type: (Builder, bool, Pattern) -> List[Tuple[str, List[Tuple[str, Any]]]] """Create the real index from the collected index entries.""" - from sphinx.environment import NoUri - new = {} # type: Dict[str, List] def add_entry(word, subword, main, link=True, dic=new, key=None): diff --git a/sphinx/errors.py b/sphinx/errors.py index 947a1df27..7f8b1fbd5 100644 --- a/sphinx/errors.py +++ b/sphinx/errors.py @@ -121,3 +121,8 @@ class PycodeError(Exception): if len(self.args) > 1: res += ' (exception was: %r)' % self.args[1] return res + + +class NoUri(Exception): + """Raised by builder.get_relative_uri() if there is no URI available.""" + pass diff --git a/sphinx/ext/todo.py b/sphinx/ext/todo.py index 492578f93..8f4144142 100644 --- a/sphinx/ext/todo.py +++ b/sphinx/ext/todo.py @@ -18,7 +18,7 @@ from docutils.parsers.rst import directives from docutils.parsers.rst.directives.admonitions import BaseAdmonition import sphinx -from sphinx.environment import NoUri +from sphinx.errors import NoUri from sphinx.locale import _, __ from sphinx.util import logging from sphinx.util.docutils import SphinxDirective diff --git a/sphinx/transforms/post_transforms/__init__.py b/sphinx/transforms/post_transforms/__init__.py index 60be2fe05..be144b793 100644 --- a/sphinx/transforms/post_transforms/__init__.py +++ b/sphinx/transforms/post_transforms/__init__.py @@ -13,7 +13,7 @@ from typing import cast from docutils import nodes from sphinx import addnodes -from sphinx.environment import NoUri +from sphinx.errors import NoUri from sphinx.locale import __ from sphinx.transforms import SphinxTransform from sphinx.util import logging From 57a7f76c7769973fca35a9860482a07dedc618ed Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 2 Mar 2019 17:38:54 +0900 Subject: [PATCH 039/121] Fix texinfo: ``make install-info`` causes syntax error --- CHANGES | 1 + sphinx/templates/texinfo/Makefile | 12 ++++++------ 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/CHANGES b/CHANGES index 85b225e31..4dc27fc8e 100644 --- a/CHANGES +++ b/CHANGES @@ -20,6 +20,7 @@ Bugs fixed * #3620: html: Defer searchindex.js rather than loading it via ajax * #6113: html: Table cells and list items have large margins * #5508: ``linenothreshold`` option for ``highlight`` directive was ignored +* texinfo: ``make install-info`` causes syntax error Testing -------- diff --git a/sphinx/templates/texinfo/Makefile b/sphinx/templates/texinfo/Makefile index 276a66136..81c60f502 100644 --- a/sphinx/templates/texinfo/Makefile +++ b/sphinx/templates/texinfo/Makefile @@ -17,15 +17,15 @@ html: $(addsuffix .html,$(ALLDOCS)) pdf: $(addsuffix .pdf,$(ALLDOCS)) install-info: info - for f in *.info; do \\ - cp -t $(infodir) "$$f" && \\ - $(INSTALL_INFO) --info-dir=$(infodir) "$$f" ; \\ + for f in *.info; do \ + cp -t $(infodir) "$$f" && \ + $(INSTALL_INFO) --info-dir=$(infodir) "$$f" ; \ done uninstall-info: info - for f in *.info; do \\ - rm -f "$(infodir)/$$f" ; \\ - $(INSTALL_INFO) --delete --info-dir=$(infodir) "$$f" ; \\ + for f in *.info; do \ + rm -f "$(infodir)/$$f" ; \ + $(INSTALL_INFO) --delete --info-dir=$(infodir) "$$f" ; \ done %.info: %.texi From 3987734c18e46728131ecc6e88a0631999551931 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 2 Mar 2019 17:41:48 +0900 Subject: [PATCH 040/121] Fix texinfo: ``make install-info`` fails on macOS --- CHANGES | 1 + sphinx/templates/texinfo/Makefile | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 4dc27fc8e..f952c826a 100644 --- a/CHANGES +++ b/CHANGES @@ -21,6 +21,7 @@ Bugs fixed * #6113: html: Table cells and list items have large margins * #5508: ``linenothreshold`` option for ``highlight`` directive was ignored * texinfo: ``make install-info`` causes syntax error +* texinfo: ``make install-info`` fails on macOS Testing -------- diff --git a/sphinx/templates/texinfo/Makefile b/sphinx/templates/texinfo/Makefile index 81c60f502..8befee3ca 100644 --- a/sphinx/templates/texinfo/Makefile +++ b/sphinx/templates/texinfo/Makefile @@ -18,7 +18,8 @@ pdf: $(addsuffix .pdf,$(ALLDOCS)) install-info: info for f in *.info; do \ - cp -t $(infodir) "$$f" && \ + mkdir -p $(infodir) && \ + cp "$$f" $(infodir) && \ $(INSTALL_INFO) --info-dir=$(infodir) "$$f" ; \ done From 7a5aa822f6533b3e5596ae4283393e4caaecd8b4 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 2 Mar 2019 18:25:26 +0900 Subject: [PATCH 041/121] Fix #3079: texinfo: image files are not copied on ``make install-info`` --- CHANGES | 3 +++ sphinx/builders/texinfo.py | 13 +++++++------ sphinx/templates/texinfo/Makefile | 8 +++++++- sphinx/writers/texinfo.py | 3 ++- 4 files changed, 19 insertions(+), 8 deletions(-) diff --git a/CHANGES b/CHANGES index 0e0998c32..687f73f39 100644 --- a/CHANGES +++ b/CHANGES @@ -7,6 +7,8 @@ Dependencies Incompatible changes -------------------- +* texinfo: image files are copied into ``name-figure`` directory + Deprecated ---------- @@ -22,6 +24,7 @@ Bugs fixed * #5508: ``linenothreshold`` option for ``highlight`` directive was ignored * texinfo: ``make install-info`` causes syntax error * texinfo: ``make install-info`` fails on macOS +* #3079: texinfo: image files are not copied on ``make install-info`` Testing -------- diff --git a/sphinx/builders/texinfo.py b/sphinx/builders/texinfo.py index 2655d7a0b..3b2816e77 100644 --- a/sphinx/builders/texinfo.py +++ b/sphinx/builders/texinfo.py @@ -27,7 +27,7 @@ from sphinx.util.console import darkgreen # type: ignore from sphinx.util.docutils import new_document from sphinx.util.fileutil import copy_asset_file from sphinx.util.nodes import inline_all_toctrees -from sphinx.util.osutil import SEP, make_filename_from_project +from sphinx.util.osutil import SEP, ensuredir, make_filename_from_project from sphinx.writers.texinfo import TexinfoWriter, TexinfoTranslator if False: @@ -134,6 +134,7 @@ class TexinfoBuilder(Builder): settings.docname = docname doctree.settings = settings docwriter.write(doctree, destination) + self.copy_image_files(targetname[:-5]) def assemble_doctree(self, indexfile, toctree_only, appendices): # type: (str, bool, List[str]) -> nodes.document @@ -180,11 +181,10 @@ class TexinfoBuilder(Builder): def finish(self): # type: () -> None - self.copy_image_files() self.copy_support_files() - def copy_image_files(self): - # type: () -> None + def copy_image_files(self, targetname): + # type: (str) -> None if self.images: stringify_func = ImageAdapter(self.app.env).get_original_image_uri for src in status_iterator(self.images, __('copying images... '), "brown", @@ -192,8 +192,9 @@ class TexinfoBuilder(Builder): stringify_func=stringify_func): dest = self.images[src] try: - copy_asset_file(path.join(self.srcdir, src), - path.join(self.outdir, dest)) + imagedir = path.join(self.outdir, targetname + '-figures') + ensuredir(imagedir) + copy_asset_file(path.join(self.srcdir, dest), imagedir) except Exception as err: logger.warning(__('cannot copy image file %r: %s'), path.join(self.srcdir, src), err) diff --git a/sphinx/templates/texinfo/Makefile b/sphinx/templates/texinfo/Makefile index 8befee3ca..e3b732cda 100644 --- a/sphinx/templates/texinfo/Makefile +++ b/sphinx/templates/texinfo/Makefile @@ -20,12 +20,18 @@ install-info: info for f in *.info; do \ mkdir -p $(infodir) && \ cp "$$f" $(infodir) && \ - $(INSTALL_INFO) --info-dir=$(infodir) "$$f" ; \ + $(INSTALL_INFO) --info-dir=$(infodir) "$$f" && \ + \ + FIGURE_DIR="`basename \"$$f\" .info`-figures" && \ + if [ -e "$$FIGURE_DIR" ]; then \ + cp -r "$$FIGURE_DIR" $(infodir) ; \ + fi; \ done uninstall-info: info for f in *.info; do \ rm -f "$(infodir)/$$f" ; \ + rm -rf "$(infodir)/`basename '$$f' .info`-figures" && \ $(INSTALL_INFO) --delete --info-dir=$(infodir) "$$f" ; \ done diff --git a/sphinx/writers/texinfo.py b/sphinx/writers/texinfo.py index ede48ec60..4262ccd66 100644 --- a/sphinx/writers/texinfo.py +++ b/sphinx/writers/texinfo.py @@ -1355,8 +1355,9 @@ class TexinfoTranslator(SphinxTranslator): width = self.tex_image_length(attrs.get('width', '')) height = self.tex_image_length(attrs.get('height', '')) alt = self.escape_arg(attrs.get('alt', '')) + filename = "%s-figures/%s" % (self.elements['filename'][:-5], name) # type: ignore self.body.append('\n@image{%s,%s,%s,%s,%s}\n' % - (name, width, height, alt, ext[1:])) + (filename, width, height, alt, ext[1:])) def depart_image(self, node): # type: (nodes.Element) -> None From 4b15b6659f4efde6e77dbb5ae39a3fa039d5485f Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 2 Mar 2019 19:04:24 +0900 Subject: [PATCH 042/121] Move ext-i18n section to extdev/i18n.rst --- doc/extdev/i18n.rst | 77 ++++++++++++++++++++++++++++++++++++++++++++ doc/extdev/index.rst | 77 -------------------------------------------- 2 files changed, 77 insertions(+), 77 deletions(-) diff --git a/doc/extdev/i18n.rst b/doc/extdev/i18n.rst index c8c54da36..acf3e83e1 100644 --- a/doc/extdev/i18n.rst +++ b/doc/extdev/i18n.rst @@ -15,3 +15,80 @@ i18n API .. autofunction:: __ + +.. _ext-i18n: + +Extension internationalization (`i18n`) and localization (`l10n`) +----------------------------------------------------------------- + +.. versionadded:: 1.8 + +An extension developped outside `Sphinx` own sources could obviously +come with its own messages translations. This is allowed thanks :ref:`i18n-api`, +and brieffly summarized in :func:`sphinx.locale.get_translation` help. + +In practice, you have to: + +#. Choose a name for your messages catalogues and template, which must be unique + (e.g. the name of your extension: ``'myextension'``). +#. Mark in your extension `Python` sources all messages as translatable, + via :func:`sphinx.locale.get_translation` function, usually renamed + ``_()``, e.g.: + + .. code-block:: python + :caption: src/__init__.py + + from sphinx.locale import get_translation + + EXTENSION_NAME = 'myextension' + _ = get_translation(EXTENSION_NAME) + + translated_text = _('Hello Sphinx!') + +#. Setup your extension to be aware of its dedicated translations: + + .. code-block:: python + :caption: src/__init__.py + + def setup(app): + package_dir = path.abspath(path.dirname(__file__)) + locale_dir = os.path.join(package_dir, 'locales') + app.add_message_catalog(EXTENSION_NAME, locale_dir) + +#. Generate messages catalog template ``*.pot`` file, usually in ``locale/`` + source directory, for example via `Babel`_: + + .. code-block:: sh + + $ pybabel extract --output=src/locale/myextension.pot src/ + +#. Create messages catalogs (``*.po``) for each language your extension + will provide localization, for example via `Babel`_: + + .. code-block:: sh + + $ pybabel init --input-file=src/locale/myextension.pot --domain=myextension --output-dir=src/locale --locale=fr_FR + +#. Generate and/or update messages catalogs for all translated languages from + update catalog template, for example via `Babel`_: + + .. code-block:: sh + + $ pybabel update --input-file=src/locale/myextension.pot --domain=myextension --output-dir=src/locale + +#. Update translated messages, thanks your internationalization team. +#. Compile translated messages in ``*.mo`` files, for example via `Babel`_: + + .. code-block:: sh + + $ pybabel compile --directory=src/locale --domain=myextension + +#. Ensure that ``*.mo`` files are distributed when your package will + be installed, by adding equivalent line in your extension ``MANIFEST.in``: + + .. code-block:: ini + :caption: MANIFEST.in + + recursive-include src *.mo + +.. _Babel: http://babel.pocoo.org/ diff --git a/doc/extdev/index.rst b/doc/extdev/index.rst index a273510e5..e4ab1ce9e 100644 --- a/doc/extdev/index.rst +++ b/doc/extdev/index.rst @@ -187,83 +187,6 @@ as metadata of the extension. Metadata keys currently recognized are: output files can be used when the extension is loaded. Since extensions usually don't negatively influence the process, this defaults to ``True``. -.. _ext-i18n: - -Extension internationalization (`i18n`) and localization (`l10n`) ------------------------------------------------------------------ - -.. versionadded:: 1.8 - -An extension developped outside `Sphinx` own sources could obviously -come with its own messages translations. This is allowed thanks :ref:`i18n-api`, -and brieffly summarized in :func:`sphinx.locale.get_translation` help. - -In practice, you have to: - -#. Choose a name for your messages catalogues and template, which must be unique - (e.g. the name of your extension: ``'myextension'``). -#. Mark in your extension `Python` sources all messages as translatable, - via :func:`sphinx.locale.get_translation` function, usually renamed - ``_()``, e.g.: - - .. code-block:: python - :caption: src/__init__.py - - from sphinx.locale import get_translation - - EXTENSION_NAME = 'myextension' - _ = get_translation(EXTENSION_NAME) - - translated_text = _('Hello Sphinx!') - -#. Setup your extension to be aware of its dedicated translations: - - .. code-block:: python - :caption: src/__init__.py - - def setup(app): - package_dir = path.abspath(path.dirname(__file__)) - locale_dir = os.path.join(package_dir, 'locales') - app.add_message_catalog(EXTENSION_NAME, locale_dir) - -#. Generate messages catalog template ``*.pot`` file, usually in ``locale/`` - source directory, for example via `Babel`_: - - .. code-block:: sh - - $ pybabel extract --output=src/locale/myextension.pot src/ - -#. Create messages catalogs (``*.po``) for each language your extension - will provide localization, for example via `Babel`_: - - .. code-block:: sh - - $ pybabel init --input-file=src/locale/myextension.pot --domain=myextension --output-dir=src/locale --locale=fr_FR - -#. Generate and/or update messages catalogs for all translated languages from - update catalog template, for example via `Babel`_: - - .. code-block:: sh - - $ pybabel update --input-file=src/locale/myextension.pot --domain=myextension --output-dir=src/locale - -#. Update translated messages, thanks your internationalization team. -#. Compile translated messages in ``*.mo`` files, for example via `Babel`_: - - .. code-block:: sh - - $ pybabel compile --directory=src/locale --domain=myextension - -#. Ensure that ``*.mo`` files are distributed when your package will - be installed, by adding equivalent line in your extension ``MANIFEST.in``: - - .. code-block:: ini - :caption: MANIFEST.in - - recursive-include src *.mo - -.. _Babel: http://babel.pocoo.org/ - APIs used for writing extensions -------------------------------- From b3b5a595a91c7afd4da7ae71e762756d638459dd Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 2 Mar 2019 19:45:42 +0900 Subject: [PATCH 043/121] docs: Update docs for i18n --- doc/extdev/i18n.rst | 83 ++++++++++++++++++++------------------- sphinx/locale/__init__.py | 12 +++--- 2 files changed, 48 insertions(+), 47 deletions(-) diff --git a/doc/extdev/i18n.rst b/doc/extdev/i18n.rst index acf3e83e1..c3ec173a2 100644 --- a/doc/extdev/i18n.rst +++ b/doc/extdev/i18n.rst @@ -18,77 +18,80 @@ i18n API .. _ext-i18n: -Extension internationalization (`i18n`) and localization (`l10n`) ------------------------------------------------------------------ +Extension internationalization (`i18n`) and localization (`l10n`) using i18n API +--------------------------------------------------------------------------------- .. versionadded:: 1.8 -An extension developped outside `Sphinx` own sources could obviously -come with its own messages translations. This is allowed thanks :ref:`i18n-api`, -and brieffly summarized in :func:`sphinx.locale.get_translation` help. +An extension may naturally come with message translations. This is briefly +summarized in :func:`sphinx.locale.get_translation` help. In practice, you have to: -#. Choose a name for your messages catalogues and template, which must be unique - (e.g. the name of your extension: ``'myextension'``). -#. Mark in your extension `Python` sources all messages as translatable, - via :func:`sphinx.locale.get_translation` function, usually renamed - ``_()``, e.g.: +#. Choose a name for your message catalog, which must be unique. Usually + the name of your extension is used for the name of message catalog. + +#. Mark in your extension sources all messages as translatable, via + :func:`sphinx.locale.get_translation` function, usually renamed ``_()``, + e.g.: .. code-block:: python - :caption: src/__init__.py + :caption: src/__init__.py - from sphinx.locale import get_translation + from sphinx.locale import get_translation - EXTENSION_NAME = 'myextension' - _ = get_translation(EXTENSION_NAME) + MESSAGE_CATALOG_NAME = 'myextension' + _ = get_translation(MESSAGE_CATALOG_NAME) - translated_text = _('Hello Sphinx!') + translated_text = _('Hello Sphinx!') -#. Setup your extension to be aware of its dedicated translations: +#. Set up your extension to be aware of its dedicated translations: .. code-block:: python - :caption: src/__init__.py + :caption: src/__init__.py - def setup(app): - package_dir = path.abspath(path.dirname(__file__)) - locale_dir = os.path.join(package_dir, 'locales') - app.add_message_catalog(EXTENSION_NAME, locale_dir) + def setup(app): + package_dir = path.abspath(path.dirname(__file__)) + locale_dir = os.path.join(package_dir, 'locales') + app.add_message_catalog(MESSAGE_CATALOG_NAME, locale_dir) -#. Generate messages catalog template ``*.pot`` file, usually in ``locale/`` +#. Generate message catalog template ``*.pot`` file, usually in ``locale/`` source directory, for example via `Babel`_: - .. code-block:: sh + .. code-block:: console - $ pybabel extract --output=src/locale/myextension.pot src/ + $ pybabel extract --output=src/locale/myextension.pot src/ -#. Create messages catalogs (``*.po``) for each language your extension +#. Create message catalogs (``*.po``) for each language which your extension will provide localization, for example via `Babel`_: - .. code-block:: sh + .. code-block:: console - $ pybabel init --input-file=src/locale/myextension.pot --domain=myextension --output-dir=src/locale --locale=fr_FR + $ pybabel init --input-file=src/locale/myextension.pot --domain=myextension --output-dir=src/locale --locale=fr_FR -#. Generate and/or update messages catalogs for all translated languages from - update catalog template, for example via `Babel`_: +#. Translate message catalogs for each language manually - .. code-block:: sh +#. Compile message catalogs into ``*.mo`` files, for example via `Babel`_: - $ pybabel update --input-file=src/locale/myextension.pot --domain=myextension --output-dir=src/locale + .. code-block:: console -#. Update translated messages, thanks your internationalization team. -#. Compile translated messages in ``*.mo`` files, for example via `Babel`_: + $ pybabel compile --directory=src/locale --domain=myextension - .. code-block:: sh - - $ pybabel compile --directory=src/locale --domain=myextension - -#. Ensure that ``*.mo`` files are distributed when your package will +#. Ensure that message catalog files are distributed when your package will be installed, by adding equivalent line in your extension ``MANIFEST.in``: .. code-block:: ini - :caption: MANIFEST.in + :caption: MANIFEST.in - recursive-include src *.mo + recursive-include src *.pot *.po *.mo + + +When the messages on your extension has been changed, you need to also update +message catalog template and message catalogs, for example via `Babel`_: + +.. code-block:: console + + $ pybabel extract --output=src/locale/myextension.pot src/ + $ pybabel update --input-file=src/locale/myextension.pot --domain=myextension --output-dir=src/locale .. _Babel: http://babel.pocoo.org/ diff --git a/sphinx/locale/__init__.py b/sphinx/locale/__init__.py index 94b0b854d..9f0e15af7 100644 --- a/sphinx/locale/__init__.py +++ b/sphinx/locale/__init__.py @@ -255,21 +255,19 @@ def get_translation(catalog, namespace='general'): import os from sphinx.locale import get_translation - EXTENSION_NAME = 'myextension' # name of both *.pot, *.po and *.mo files - _ = get_translation(EXTENSION_NAME) + MESSAGE_CATALOG_NAME = 'myextension' # name of *.pot, *.po and *.mo files + _ = get_translation(MESSAGE_CATALOG_NAME) text = _('Hello Sphinx!') def setup(app): package_dir = path.abspath(path.dirname(__file__)) locale_dir = os.path.join(package_dir, 'locales') - app.add_message_catalog(EXTENSION_NAME, locale_dir) + app.add_message_catalog(MESSAGE_CATALOG_NAME, locale_dir) With this code, sphinx searches a message catalog from - ``${package_dir}/locales/${language}/LC_MESSAGES/myextension.mo`` - (ex. ``sphinxcontrib.applehelp.mo``). Of course, you can use - arbitrary catalog name instead of ``__name__``. The - :confval:`language` is used for the searching. + ``${package_dir}/locales/${language}/LC_MESSAGES/myextension.mo``. + The :confval:`language` is used for the searching. .. versionadded:: 1.8 """ From 615c0f80919b0cf6027a77b2608f870c3848bba2 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 2 Mar 2019 21:07:54 +0900 Subject: [PATCH 044/121] Fix #5391: A cross reference in heading is rendered as literal --- CHANGES | 1 + sphinx/transforms/__init__.py | 6 +----- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index 0e0998c32..32a3e9d9e 100644 --- a/CHANGES +++ b/CHANGES @@ -22,6 +22,7 @@ Bugs fixed * #5508: ``linenothreshold`` option for ``highlight`` directive was ignored * texinfo: ``make install-info`` causes syntax error * texinfo: ``make install-info`` fails on macOS +* #5391: A cross reference in heading is rendered as literal Testing -------- diff --git a/sphinx/transforms/__init__.py b/sphinx/transforms/__init__.py index 890cfcb84..636abfee2 100644 --- a/sphinx/transforms/__init__.py +++ b/sphinx/transforms/__init__.py @@ -340,11 +340,7 @@ class SphinxContentsFilter(ContentsFilter): Used with BuildEnvironment.add_toc_from() to discard cross-file links within table-of-contents link nodes. """ - def visit_pending_xref(self, node): - # type: (addnodes.pending_xref) -> None - text = node.astext() - self.parent.append(nodes.literal(text, text)) - raise nodes.SkipNode + visit_pending_xref = ContentsFilter.ignore_node_but_process_children def visit_image(self, node): # type: (nodes.image) -> None From 1892eac4b9d28ffdbb838847daacaf81fba4cfde Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 3 Mar 2019 14:23:03 +0900 Subject: [PATCH 045/121] test: replace emph_literal_role() by EmphasizedLiteral --- tests/test_roles.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/test_roles.py b/tests/test_roles.py index 5a04b55ad..eb4cf4ecf 100644 --- a/tests/test_roles.py +++ b/tests/test_roles.py @@ -11,11 +11,13 @@ from docutils import nodes from mock import Mock -from sphinx.roles import emph_literal_role +from sphinx.roles import EmphasizedLiteral from sphinx.testing.util import assert_node def test_samp(): + emph_literal_role = EmphasizedLiteral() + # normal case text = 'print 1+{variable}' ret, msg = emph_literal_role('samp', text, text, 0, Mock()) From 259c2bb8a6641d4d93731e92b63c907f82f9a9eb Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 2 Mar 2019 14:50:03 +0900 Subject: [PATCH 046/121] refactor: Rename find_source_node() to get_node_source() --- CHANGES | 1 + doc/extdev/index.rst | 5 +++++ sphinx/util/nodes.py | 13 +++++++++++-- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index c6ea04e5a..e48e5197d 100644 --- a/CHANGES +++ b/CHANGES @@ -17,6 +17,7 @@ Deprecated * ``sphinx.ext.autodoc.importer.MockLoader`` * ``sphinx.ext.autodoc.importer.mock()`` * ``sphinx.ext.autosummary.autolink_role()`` +* ``sphinx.util.node.find_source_node()`` * ``sphinx.util.i18n.find_catalog()`` * ``sphinx.util.i18n.find_catalog_files()`` * ``sphinx.util.i18n.find_catalog_source_files()`` diff --git a/doc/extdev/index.rst b/doc/extdev/index.rst index 1cae48860..679288c68 100644 --- a/doc/extdev/index.rst +++ b/doc/extdev/index.rst @@ -254,6 +254,11 @@ The following is a list of deprecated interfaces. - 4.0 - ``sphinx.ext.autosummary.AutoLink`` + * - ``sphinx.util.node.find_source_node()`` + - 2.1 + - 4.0 + - ``sphinx.util.node.get_node_source()`` + * - ``sphinx.util.i18n.find_catalog()`` - 2.1 - 4.0 diff --git a/sphinx/util/nodes.py b/sphinx/util/nodes.py index b0dd13b38..ba54c717e 100644 --- a/sphinx/util/nodes.py +++ b/sphinx/util/nodes.py @@ -9,11 +9,13 @@ """ import re +import warnings from typing import Any, cast from docutils import nodes from sphinx import addnodes +from sphinx.deprecation import RemovedInSphinx40Warning from sphinx.locale import __ from sphinx.util import logging @@ -152,7 +154,7 @@ def apply_source_workaround(node): # workaround: literal_block under bullet list (#4913) if isinstance(node, nodes.literal_block) and node.source is None: - node.source = find_source_node(node) + node.source = get_node_source(node) # workaround: recommonmark-0.2.0 doesn't set rawsource attribute if not node.rawsource: @@ -170,7 +172,7 @@ def apply_source_workaround(node): ))): logger.debug('[i18n] PATCH: %r to have source and line: %s', get_full_module_name(node), repr_domxml(node)) - node.source = find_source_node(node) + node.source = get_node_source(node) node.line = 0 # need fix docutils to get `node.line` return @@ -278,6 +280,13 @@ def extract_messages(doctree): def find_source_node(node): + # type: (nodes.Element) -> str + warnings.warn('find_source_node() is deprecated.', + RemovedInSphinx40Warning) + return get_node_source(node) + + +def get_node_source(node): # type: (nodes.Element) -> str for pnode in traverse_parent(node): if pnode.source: From 061c80dd880bb9e0a7a56cd9070104c8623fdd01 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 2 Mar 2019 14:50:31 +0900 Subject: [PATCH 047/121] Add copy_source_info() --- sphinx/util/nodes.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sphinx/util/nodes.py b/sphinx/util/nodes.py index ba54c717e..3e83c218d 100644 --- a/sphinx/util/nodes.py +++ b/sphinx/util/nodes.py @@ -476,6 +476,12 @@ def set_role_source_info(inliner, lineno, node): node.source, node.line = inliner.reporter.get_source_and_line(lineno) # type: ignore +def copy_source_info(src, dst): + # type: (nodes.Element, nodes.Element) -> None + dst.source = get_node_source(src) + dst.line = get_node_line(src) + + NON_SMARTQUOTABLE_PARENT_NODES = ( nodes.FixedTextElement, nodes.literal, From 10869289ef543f292870ae3a4568d6aef1a029ea Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 3 Mar 2019 14:56:38 +0900 Subject: [PATCH 048/121] docs: JS domain does not support reset current module --- doc/usage/restructuredtext/domains.rst | 2 -- 1 file changed, 2 deletions(-) diff --git a/doc/usage/restructuredtext/domains.rst b/doc/usage/restructuredtext/domains.rst index 3ac90b5fb..a0ff0d9c4 100644 --- a/doc/usage/restructuredtext/domains.rst +++ b/doc/usage/restructuredtext/domains.rst @@ -1294,8 +1294,6 @@ The JavaScript domain (name **js**) provides the following directives: specified. If this option is specified, the directive will only update the current module name. - To clear the current module, set the module name to ``null`` or ``None`` - .. versionadded:: 1.6 .. rst:directive:: .. js:function:: name(signature) From bde9cab7feb93fe533ac351a0d7500ae181c35ce Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 3 Mar 2019 18:21:53 +0900 Subject: [PATCH 049/121] Add sphinx.testing.restructuredtext.parse() --- CHANGES | 2 ++ sphinx/testing/restructuredtext.py | 38 ++++++++++++++++++++++++++++++ tests/test_directive_other.py | 31 +++++++----------------- 3 files changed, 49 insertions(+), 22 deletions(-) create mode 100644 sphinx/testing/restructuredtext.py diff --git a/CHANGES b/CHANGES index 0e0998c32..0c280a67a 100644 --- a/CHANGES +++ b/CHANGES @@ -26,6 +26,8 @@ Bugs fixed Testing -------- +* Add a helper function: ``sphinx.testing.restructuredtext.parse()`` + Release 2.0.0 beta1 (in development) ==================================== diff --git a/sphinx/testing/restructuredtext.py b/sphinx/testing/restructuredtext.py new file mode 100644 index 000000000..8bf1c041e --- /dev/null +++ b/sphinx/testing/restructuredtext.py @@ -0,0 +1,38 @@ +""" + sphinx.testing.restructuredtext + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + + :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +from os import path + +from docutils.core import publish_doctree + +from sphinx.io import SphinxStandaloneReader +from sphinx.parsers import RSTParser +from sphinx.util.docutils import sphinx_domains + + +if False: + # For type annotation + from docutils import nodes # NOQA + from sphinx.application import Sphinx # NOQA + + +def parse(app, text, docname='index'): + # type: (Sphinx, str, str) -> nodes.document + """Parse a string as reStructuredText with Sphinx application.""" + try: + app.env.temp_data['docname'] = docname + parser = RSTParser() + parser.set_application(app) + with sphinx_domains(app.env): + return publish_doctree(text, path.join(app.srcdir, docname + '.rst'), + reader=SphinxStandaloneReader(app), + parser=parser, + settings_overrides={'env': app.env, + 'gettext_compact': True}) + finally: + app.env.temp_data.pop('docname', None) diff --git a/tests/test_directive_other.py b/tests/test_directive_other.py index cbbebee5c..376b9cd69 100644 --- a/tests/test_directive_other.py +++ b/tests/test_directive_other.py @@ -10,25 +10,12 @@ import pytest from docutils import nodes -from docutils.core import publish_doctree from sphinx import addnodes -from sphinx.io import SphinxStandaloneReader -from sphinx.parsers import RSTParser +from sphinx.testing import restructuredtext from sphinx.testing.util import assert_node -def parse(app, docname, text): - app.env.temp_data['docname'] = docname - parser = RSTParser() - parser.set_application(app) - return publish_doctree(text, app.srcdir / docname + '.rst', - reader=SphinxStandaloneReader(app), - parser=parser, - settings_overrides={'env': app.env, - 'gettext_compact': True}) - - @pytest.mark.sphinx(testroot='toctree-glob') def test_toctree(app): text = (".. toctree::\n" @@ -38,7 +25,7 @@ def test_toctree(app): " baz\n") app.env.find_files(app.config, app.builder) - doctree = parse(app, 'index', text) + doctree = restructuredtext.parse(app, text, 'index') assert_node(doctree, [nodes.document, nodes.compound, addnodes.toctree]) assert_node(doctree[0][0], entries=[(None, 'foo'), (None, 'bar/index'), (None, 'baz')], @@ -55,7 +42,7 @@ def test_relative_toctree(app): " ../quux\n") app.env.find_files(app.config, app.builder) - doctree = parse(app, 'bar/index', text) + doctree = restructuredtext.parse(app, text, 'bar/index') assert_node(doctree, [nodes.document, nodes.compound, addnodes.toctree]) assert_node(doctree[0][0], entries=[(None, 'bar/bar_1'), (None, 'bar/bar_2'), (None, 'bar/bar_3'), @@ -72,7 +59,7 @@ def test_toctree_urls_and_titles(app): " The BAR \n") app.env.find_files(app.config, app.builder) - doctree = parse(app, 'index', text) + doctree = restructuredtext.parse(app, text, 'index') assert_node(doctree, [nodes.document, nodes.compound, addnodes.toctree]) assert_node(doctree[0][0], entries=[('Sphinx', 'https://www.sphinx-doc.org/'), @@ -89,7 +76,7 @@ def test_toctree_glob(app): " *\n") app.env.find_files(app.config, app.builder) - doctree = parse(app, 'index', text) + doctree = restructuredtext.parse(app, text, 'index') assert_node(doctree, [nodes.document, nodes.compound, addnodes.toctree]) assert_node(doctree[0][0], entries=[(None, 'baz'), (None, 'foo'), (None, 'quux')], @@ -103,7 +90,7 @@ def test_toctree_glob(app): " *\n") app.env.find_files(app.config, app.builder) - doctree = parse(app, 'index', text) + doctree = restructuredtext.parse(app, text, 'index') assert_node(doctree, [nodes.document, nodes.compound, addnodes.toctree]) assert_node(doctree[0][0], entries=[(None, 'foo'), (None, 'baz'), (None, 'quux')], @@ -117,7 +104,7 @@ def test_toctree_glob(app): " foo\n") app.env.find_files(app.config, app.builder) - doctree = parse(app, 'index', text) + doctree = restructuredtext.parse(app, text, 'index') assert_node(doctree, [nodes.document, nodes.compound, addnodes.toctree]) assert_node(doctree[0][0], entries=[(None, 'baz'), (None, 'foo'), (None, 'quux'), (None, 'foo')], @@ -132,7 +119,7 @@ def test_toctree_glob_and_url(app): " https://example.com/?q=sphinx\n") app.env.find_files(app.config, app.builder) - doctree = parse(app, 'index', text) + doctree = restructuredtext.parse(app, text, 'index') assert_node(doctree, [nodes.document, nodes.compound, addnodes.toctree]) assert_node(doctree[0][0], entries=[(None, 'https://example.com/?q=sphinx')], @@ -147,7 +134,7 @@ def test_toctree_twice(app): " foo\n") app.env.find_files(app.config, app.builder) - doctree = parse(app, 'index', text) + doctree = restructuredtext.parse(app, text, 'index') assert_node(doctree, [nodes.document, nodes.compound, addnodes.toctree]) assert_node(doctree[0][0], entries=[(None, 'foo'), (None, 'foo')], From c4a45b4a019790b17ed94cfba860226820fde0cd Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 3 Mar 2019 18:05:01 +0900 Subject: [PATCH 050/121] Close #2155: Support ``code`` directive --- CHANGES | 1 + sphinx/directives/__init__.py | 37 ++++++++++++++++-------- sphinx/directives/patches.py | 48 +++++++++++++++++++++++++++++++ tests/test_directive_patch.py | 54 +++++++++++++++++++++++++++++++++++ 4 files changed, 128 insertions(+), 12 deletions(-) create mode 100644 tests/test_directive_patch.py diff --git a/CHANGES b/CHANGES index 0c280a67a..1ae36d21b 100644 --- a/CHANGES +++ b/CHANGES @@ -22,6 +22,7 @@ Bugs fixed * #5508: ``linenothreshold`` option for ``highlight`` directive was ignored * texinfo: ``make install-info`` causes syntax error * texinfo: ``make install-info`` fails on macOS +* #2155: Support ``code`` directive Testing -------- diff --git a/sphinx/directives/__init__.py b/sphinx/directives/__init__.py index 8dbb1cec6..99d579863 100644 --- a/sphinx/directives/__init__.py +++ b/sphinx/directives/__init__.py @@ -19,18 +19,6 @@ from sphinx.util import docutils from sphinx.util.docfields import DocFieldTransformer from sphinx.util.docutils import SphinxDirective -# import all directives sphinx provides -from sphinx.directives.code import ( # noqa - Highlight, CodeBlock, LiteralInclude -) -from sphinx.directives.other import ( # noqa - TocTree, Author, Index, VersionChange, SeeAlso, - TabularColumns, Centered, Acks, HList, Only, Include, Class -) -from sphinx.directives.patches import ( # noqa - Figure, Meta -) - if False: # For type annotation from typing import Any, Dict # NOQA @@ -46,6 +34,19 @@ nl_escape_re = re.compile(r'\\\n') strip_backslash_re = re.compile(r'\\(.)') +def optional_int(argument): + """ + Check for an integer argument or None value; raise ``ValueError`` if not. + """ + if argument is None: + return None + else: + value = int(argument) + if value < 0: + raise ValueError('negative value; must be positive or zero') + return value + + class ObjectDescription(SphinxDirective): """ Directive to describe a class, function or similar object. Not used @@ -243,6 +244,18 @@ class DefaultDomain(SphinxDirective): self.env.temp_data['default_domain'] = self.env.domains.get(domain_name) return [] +# import all directives sphinx provides (for compatibility) +from sphinx.directives.code import ( # noqa + Highlight, CodeBlock, LiteralInclude +) +from sphinx.directives.other import ( # noqa + TocTree, Author, Index, VersionChange, SeeAlso, + TabularColumns, Centered, Acks, HList, Only, Include, Class +) +from sphinx.directives.patches import ( # noqa + Figure, Meta +) + def setup(app): # type: (Sphinx) -> Dict[str, Any] diff --git a/sphinx/directives/patches.py b/sphinx/directives/patches.py index 3c31571ac..9d339e5a5 100644 --- a/sphinx/directives/patches.py +++ b/sphinx/directives/patches.py @@ -14,6 +14,7 @@ from docutils.parsers.rst import directives from docutils.parsers.rst.directives import images, html, tables from sphinx import addnodes +from sphinx.directives import optional_int from sphinx.util.docutils import SphinxDirective from sphinx.util.nodes import set_source_info @@ -110,6 +111,52 @@ class ListTable(tables.ListTable): return title, message +class Code(SphinxDirective): + """Parse and mark up content of a code block. + + This is compatible with docutils' :rst:dir:`code` directive. + """ + optional_arguments = 1 + option_spec = { + 'class': directives.class_option, + 'name': directives.unchanged, + 'number-lines': optional_int, + } + has_content = True + + def run(self): + # type: () -> List[nodes.Node] + self.assert_has_content() + + code = '\n'.join(self.content) + node = nodes.literal_block(code, code, + classes=self.options.get('classes', []), + highlight_args={}) + self.add_name(node) + set_source_info(self, node) + + if self.arguments: + # highlight language specified + node['language'] = self.arguments[0] + node['force_highlighting'] = True + else: + # no highlight language specified. Then this directive refers the current + # highlight setting via ``highlight`` directive or ``highlight_language`` + # configuration. + node['language'] = self.env.temp_data.get('highlight_language', + self.config.highlight_language) + node['force_highlighting'] = False + + if 'number-lines' in self.options: + node['linenos'] = True + + # if number given, treat as lineno-start. + if self.options['number-lines']: + node['highlight_args']['linenostart'] = self.options['number-lines'] + + return [node] + + class MathDirective(SphinxDirective): has_content = True required_arguments = 0 @@ -171,6 +218,7 @@ def setup(app): directives.register_directive('table', RSTTable) directives.register_directive('csv-table', CSVTable) directives.register_directive('list-table', ListTable) + directives.register_directive('code', Code) directives.register_directive('math', MathDirective) return { diff --git a/tests/test_directive_patch.py b/tests/test_directive_patch.py new file mode 100644 index 000000000..4f61f2d0b --- /dev/null +++ b/tests/test_directive_patch.py @@ -0,0 +1,54 @@ +""" + test_directive_patch + ~~~~~~~~~~~~~~~~~~~ + + Test the patched directives. + + :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +from docutils import nodes + +from sphinx.testing import restructuredtext +from sphinx.testing.util import assert_node + + +def test_code_directive(app): + # normal case + text = ('.. code::\n' + '\n' + ' print("hello world")\n') + + doctree = restructuredtext.parse(app, text) + assert_node(doctree, [nodes.document, nodes.literal_block, 'print("hello world")']) + assert_node(doctree[0], language="default", highlight_args={}) + + # with language + text = ('.. code:: python\n' + '\n' + ' print("hello world")\n') + + doctree = restructuredtext.parse(app, text) + assert_node(doctree, [nodes.document, nodes.literal_block, 'print("hello world")']) + assert_node(doctree[0], language="python", highlight_args={}) + + # :number-lines: option + text = ('.. code:: python\n' + ' :number-lines:\n' + '\n' + ' print("hello world")\n') + + doctree = restructuredtext.parse(app, text) + assert_node(doctree, [nodes.document, nodes.literal_block, 'print("hello world")']) + assert_node(doctree[0], language="python", linenos=True, highlight_args={}) + + # :number-lines: option + text = ('.. code:: python\n' + ' :number-lines: 5\n' + '\n' + ' print("hello world")\n') + + doctree = restructuredtext.parse(app, text) + assert_node(doctree, [nodes.document, nodes.literal_block, 'print("hello world")']) + assert_node(doctree[0], language="python", linenos=True, highlight_args={'linenostart': 5}) From 3f22d512ec407a7c19892a389d7547633e0c2f53 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 3 Mar 2019 14:38:05 +0900 Subject: [PATCH 051/121] Add a helper method ``SphinxDirective.set_source_info()`` --- CHANGES | 2 ++ sphinx/directives/code.py | 5 ++--- sphinx/directives/other.py | 11 +++++------ sphinx/directives/patches.py | 2 +- sphinx/domains/changeset.py | 5 ++--- sphinx/ext/doctest.py | 3 +-- sphinx/ext/ifconfig.py | 3 +-- sphinx/ext/todo.py | 3 +-- sphinx/util/docutils.py | 5 +++++ 9 files changed, 20 insertions(+), 19 deletions(-) diff --git a/CHANGES b/CHANGES index e48e5197d..8b2dc95e2 100644 --- a/CHANGES +++ b/CHANGES @@ -25,6 +25,8 @@ Deprecated Features added -------------- +* Add a helper method ``SphinxDirective.set_source_info()`` + Bugs fixed ---------- diff --git a/sphinx/directives/code.py b/sphinx/directives/code.py index 73afac4ba..75ab61796 100644 --- a/sphinx/directives/code.py +++ b/sphinx/directives/code.py @@ -20,7 +20,6 @@ from sphinx.locale import __ from sphinx.util import logging from sphinx.util import parselinenos from sphinx.util.docutils import SphinxDirective -from sphinx.util.nodes import set_source_info if False: # For type annotation @@ -173,7 +172,7 @@ class CodeBlock(SphinxDirective): extra_args['hl_lines'] = hl_lines if 'lineno-start' in self.options: extra_args['linenostart'] = self.options['lineno-start'] - set_source_info(self, literal) + self.set_source_info(literal) caption = self.options.get('caption') if caption: @@ -446,7 +445,7 @@ class LiteralInclude(SphinxDirective): text, lines = reader.read(location=location) retnode = nodes.literal_block(text, text, source=filename) # type: nodes.Element - set_source_info(self, retnode) + self.set_source_info(retnode) if self.options.get('diff'): # if diff is set, set udiff retnode['language'] = 'udiff' elif 'language' in self.options: diff --git a/sphinx/directives/other.py b/sphinx/directives/other.py index 2efca0722..cc2268a41 100644 --- a/sphinx/directives/other.py +++ b/sphinx/directives/other.py @@ -21,8 +21,7 @@ from sphinx.locale import _ from sphinx.util import url_re, docname_join from sphinx.util.docutils import SphinxDirective from sphinx.util.matching import Matcher, patfilter -from sphinx.util.nodes import explicit_title_re, set_source_info, \ - process_index_entry +from sphinx.util.nodes import explicit_title_re, process_index_entry if False: # For type annotation @@ -77,7 +76,7 @@ class TocTree(SphinxDirective): subnode['includehidden'] = 'includehidden' in self.options subnode['numbered'] = self.options.get('numbered', 0) subnode['titlesonly'] = 'titlesonly' in self.options - set_source_info(self, subnode) + self.set_source_info(subnode) wrappernode = nodes.compound(classes=['toctree-wrapper']) wrappernode.append(subnode) self.add_name(wrappernode) @@ -204,7 +203,7 @@ class Index(SphinxDirective): indexnode = addnodes.index() indexnode['entries'] = [] indexnode['inline'] = False - set_source_info(self, indexnode) + self.set_source_info(indexnode) for entry in arguments: indexnode['entries'].extend(process_index_entry(entry, targetid)) return [indexnode, targetnode] @@ -231,7 +230,7 @@ class TabularColumns(SphinxDirective): # type: () -> List[nodes.Node] node = addnodes.tabular_col_spec() node['spec'] = self.arguments[0] - set_source_info(self, node) + self.set_source_info(node) return [node] @@ -330,7 +329,7 @@ class Only(SphinxDirective): # type: () -> List[nodes.Node] node = addnodes.only() node.document = self.state.document - set_source_info(self, node) + self.set_source_info(node) node['expr'] = self.arguments[0] # Same as util.nested_parse_with_titles but try to handle nested diff --git a/sphinx/directives/patches.py b/sphinx/directives/patches.py index 3c31571ac..0f6883609 100644 --- a/sphinx/directives/patches.py +++ b/sphinx/directives/patches.py @@ -132,7 +132,7 @@ class MathDirective(SphinxDirective): label=self.options.get('label'), nowrap='nowrap' in self.options) ret = [node] # type: List[nodes.Node] - set_source_info(self, node) + self.set_source_info(node) self.add_target(ret) return ret diff --git a/sphinx/domains/changeset.py b/sphinx/domains/changeset.py index 030d88ad3..aeea645c1 100644 --- a/sphinx/domains/changeset.py +++ b/sphinx/domains/changeset.py @@ -19,7 +19,6 @@ from sphinx.deprecation import DeprecatedDict, RemovedInSphinx30Warning from sphinx.domains import Domain from sphinx.locale import _ from sphinx.util.docutils import SphinxDirective -from sphinx.util.nodes import set_source_info if False: @@ -68,7 +67,7 @@ class VersionChange(SphinxDirective): # type: () -> List[nodes.Node] node = addnodes.versionmodified() node.document = self.state.document - set_source_info(self, node) + self.set_source_info(node) node['type'] = self.name node['version'] = self.arguments[0] text = versionlabels[self.name] % self.arguments[0] @@ -76,7 +75,7 @@ class VersionChange(SphinxDirective): inodes, messages = self.state.inline_text(self.arguments[1], self.lineno + 1) para = nodes.paragraph(self.arguments[1], '', *inodes, translatable=False) - set_source_info(self, para) + self.set_source_info(para) node.append(para) else: messages = [] diff --git a/sphinx/ext/doctest.py b/sphinx/ext/doctest.py index a47d05b55..d7a18ba17 100644 --- a/sphinx/ext/doctest.py +++ b/sphinx/ext/doctest.py @@ -29,7 +29,6 @@ from sphinx.locale import __ from sphinx.util import logging from sphinx.util.console import bold # type: ignore from sphinx.util.docutils import SphinxDirective -from sphinx.util.nodes import set_source_info from sphinx.util.osutil import relpath if False: @@ -104,7 +103,7 @@ class TestDirective(SphinxDirective): else: groups = ['default'] node = nodetype(code, code, testnodetype=self.name, groups=groups) - set_source_info(self, node) + self.set_source_info(node) if test is not None: # only save if it differs from code node['test'] = test diff --git a/sphinx/ext/ifconfig.py b/sphinx/ext/ifconfig.py index 4fd5fa391..04653ebc4 100644 --- a/sphinx/ext/ifconfig.py +++ b/sphinx/ext/ifconfig.py @@ -23,7 +23,6 @@ from docutils import nodes import sphinx from sphinx.util.docutils import SphinxDirective -from sphinx.util.nodes import set_source_info if False: # For type annotation @@ -47,7 +46,7 @@ class IfConfig(SphinxDirective): # type: () -> List[nodes.Node] node = ifconfig() node.document = self.state.document - set_source_info(self, node) + self.set_source_info(node) node['expr'] = self.arguments[0] self.state.nested_parse(self.content, self.content_offset, node, match_titles=True) diff --git a/sphinx/ext/todo.py b/sphinx/ext/todo.py index 492578f93..0361f3786 100644 --- a/sphinx/ext/todo.py +++ b/sphinx/ext/todo.py @@ -22,7 +22,6 @@ from sphinx.environment import NoUri from sphinx.locale import _, __ from sphinx.util import logging from sphinx.util.docutils import SphinxDirective -from sphinx.util.nodes import set_source_info from sphinx.util.texescape import tex_escape_map if False: @@ -68,7 +67,7 @@ class Todo(BaseAdmonition, SphinxDirective): return [todo] elif isinstance(todo, todo_node): todo.insert(0, nodes.title(text=_('Todo'))) - set_source_info(self, todo) + self.set_source_info(todo) targetid = 'index-%s' % self.env.new_serialno('index') # Stash the target to be retrieved later in latex_visit_todo_node. diff --git a/sphinx/util/docutils.py b/sphinx/util/docutils.py index 393f97abf..6a580d1ae 100644 --- a/sphinx/util/docutils.py +++ b/sphinx/util/docutils.py @@ -383,6 +383,11 @@ class SphinxDirective(Directive): """Reference to the :class:`.Config` object.""" return self.env.config + def set_source_info(self, node): + # type: (nodes.Node) -> None + """Set source and line number to the node.""" + node.source, node.line = self.state_machine.get_source_and_line(self.lineno) + class SphinxRole: """A base class for Sphinx roles. From 346d33bf540213b0d1ac0f58b8d29fbb1796db3d Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Mon, 4 Mar 2019 23:32:19 +0900 Subject: [PATCH 052/121] Fix #6136: ``:name:`` option for ``math`` directive causes a crash --- CHANGES | 1 + sphinx/directives/patches.py | 9 ++++++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index fd408cd1f..41c5212c2 100644 --- a/CHANGES +++ b/CHANGES @@ -25,6 +25,7 @@ Bugs fixed * #6047: autodoc: ``autofunction`` emits a warning for method objects * #6028: graphviz: Ensure the graphviz filenames are reproducible * #6068: doctest: ``skipif`` option may remove the code block from documentation +* #6136: ``:name:`` option for ``math`` directive causes a crash Testing -------- diff --git a/sphinx/directives/patches.py b/sphinx/directives/patches.py index 9b4ce6b25..42288d9b0 100644 --- a/sphinx/directives/patches.py +++ b/sphinx/directives/patches.py @@ -123,13 +123,16 @@ class MathDirective(SphinxDirective): latex = '\n'.join(self.content) if self.arguments and self.arguments[0]: latex = self.arguments[0] + '\n\n' + latex + label = self.options.get('label', self.options.get('name')) node = nodes.math_block(latex, latex, docname=self.state.document.settings.env.docname, - number=self.options.get('name'), - label=self.options.get('label'), + number=None, + label=label, nowrap='nowrap' in self.options) - ret = [node] + self.add_name(node) set_source_info(self, node) + + ret = [node] self.add_target(ret) return ret From dbefc9865d8c2c4006ed52475d1bff865358cd00 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Wed, 6 Mar 2019 23:44:44 +0900 Subject: [PATCH 053/121] Clean up import for annotations --- sphinx/builders/__init__.py | 2 +- sphinx/builders/_epub_base.py | 1 - sphinx/builders/epub3.py | 3 +-- sphinx/builders/latex/__init__.py | 3 +-- sphinx/builders/latex/transforms.py | 2 +- sphinx/builders/linkcheck.py | 2 +- sphinx/config.py | 2 +- sphinx/directives/__init__.py | 2 -- sphinx/directives/other.py | 2 +- sphinx/domains/javascript.py | 1 - sphinx/domains/math.py | 2 +- sphinx/domains/python.py | 2 +- sphinx/environment/__init__.py | 2 +- sphinx/environment/collectors/asset.py | 3 +-- sphinx/environment/collectors/metadata.py | 1 - sphinx/environment/collectors/title.py | 1 - sphinx/environment/collectors/toctree.py | 3 +-- sphinx/ext/autodoc/__init__.py | 4 +--- sphinx/ext/autodoc/directive.py | 3 +-- sphinx/ext/autodoc/importer.py | 2 +- sphinx/ext/autosectionlabel.py | 5 ----- sphinx/ext/autosummary/generate.py | 2 -- sphinx/ext/coverage.py | 2 +- sphinx/ext/doctest.py | 2 +- sphinx/ext/imgmath.py | 1 - sphinx/ext/inheritance_diagram.py | 2 +- sphinx/ext/intersphinx.py | 2 +- sphinx/ext/mathbase.py | 2 +- sphinx/highlighting.py | 2 +- sphinx/io.py | 5 ++--- sphinx/jinja2glue.py | 2 +- sphinx/locale/__init__.py | 2 +- sphinx/pycode/parser.py | 2 +- sphinx/setup_command.py | 2 +- sphinx/testing/util.py | 1 - sphinx/theming.py | 2 +- sphinx/transforms/post_transforms/compat.py | 6 +----- sphinx/util/__init__.py | 2 +- sphinx/util/docfields.py | 1 - sphinx/util/docutils.py | 1 - sphinx/util/images.py | 2 +- sphinx/util/inventory.py | 2 +- sphinx/util/logging.py | 1 - sphinx/util/nodes.py | 2 +- sphinx/util/osutil.py | 2 +- sphinx/util/pycompat.py | 2 +- sphinx/writers/xml.py | 2 +- 47 files changed, 36 insertions(+), 66 deletions(-) diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index 335880ef0..4a9de5bbc 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -40,7 +40,7 @@ except ImportError: if False: # For type annotation - from typing import Any, Callable, Dict, Iterable, List, Sequence, Set, Tuple, Type, Union # NOQA + from typing import Any, Dict, Iterable, List, Sequence, Set, Tuple, Type, Union # NOQA from sphinx.application import Sphinx # NOQA from sphinx.config import Config # NOQA from sphinx.environment import BuildEnvironment # NOQA diff --git a/sphinx/builders/_epub_base.py b/sphinx/builders/_epub_base.py index 00fa7187d..90ab6c12d 100644 --- a/sphinx/builders/_epub_base.py +++ b/sphinx/builders/_epub_base.py @@ -36,7 +36,6 @@ except ImportError: if False: # For type annotation from typing import Any, Dict, List, Set, Tuple # NOQA - from sphinx.application import Sphinx # NOQA logger = logging.getLogger(__name__) diff --git a/sphinx/builders/epub3.py b/sphinx/builders/epub3.py index f97d96396..3116cd493 100644 --- a/sphinx/builders/epub3.py +++ b/sphinx/builders/epub3.py @@ -25,8 +25,7 @@ from sphinx.util.osutil import make_filename if False: # For type annotation - from typing import Any, Dict, Iterable, List, Set, Tuple # NOQA - from docutils import nodes # NOQA + from typing import Any, Dict, List, Set, Tuple # NOQA from sphinx.application import Sphinx # NOQA from sphinx.config import Config # NOQA diff --git a/sphinx/builders/latex/__init__.py b/sphinx/builders/latex/__init__.py index 42160487a..9b202499b 100644 --- a/sphinx/builders/latex/__init__.py +++ b/sphinx/builders/latex/__init__.py @@ -11,6 +11,7 @@ import os from os import path +from docutils import nodes from docutils.frontend import OptionParser import sphinx.builders.latex.nodes # NOQA # Workaround: import this before writer to avoid ImportError @@ -42,7 +43,6 @@ from sphinx.writers.latex import ( if False: # For type annotation - from docutils import nodes # NOQA from typing import Any, Dict, Iterable, List, Tuple, Union # NOQA from sphinx.application import Sphinx # NOQA from sphinx.config import Config # NOQA @@ -295,7 +295,6 @@ class LaTeXBuilder(Builder): def assemble_doctree(self, indexfile, toctree_only, appendices): # type: (str, bool, List[str]) -> nodes.document - from docutils import nodes # NOQA self.docnames = set([indexfile] + appendices) logger.info(darkgreen(indexfile) + " ", nonl=True) tree = self.env.get_doctree(indexfile) diff --git a/sphinx/builders/latex/transforms.py b/sphinx/builders/latex/transforms.py index 579a753b4..1306e7bc1 100644 --- a/sphinx/builders/latex/transforms.py +++ b/sphinx/builders/latex/transforms.py @@ -21,7 +21,7 @@ from sphinx.util.nodes import NodeMatcher if False: # For type annotation - from typing import Any, Dict, List, Set, Tuple, Union # NOQA + from typing import Any, List, Set, Tuple # NOQA URI_SCHEMES = ('mailto:', 'http:', 'https:', 'ftp:') diff --git a/sphinx/builders/linkcheck.py b/sphinx/builders/linkcheck.py index 1161edb9d..84a69436a 100644 --- a/sphinx/builders/linkcheck.py +++ b/sphinx/builders/linkcheck.py @@ -30,7 +30,7 @@ from sphinx.util.requests import is_ssl_error if False: # For type annotation - from typing import Any, Dict, List, Set, Tuple, Union # NOQA + from typing import Any, Dict, List, Set, Tuple # NOQA from sphinx.application import Sphinx # NOQA from sphinx.util.requests.requests import Response # NOQA diff --git a/sphinx/config.py b/sphinx/config.py index f844549da..5ba2c2a3d 100644 --- a/sphinx/config.py +++ b/sphinx/config.py @@ -27,7 +27,7 @@ from sphinx.util.typing import NoneType if False: # For type annotation - from typing import Any, Callable, Dict, Generator, Iterator, List, Set, Tuple, Union # NOQA + from typing import Callable, Dict, Generator, Iterator, List, Set, Tuple # NOQA from sphinx.application import Sphinx # NOQA from sphinx.environment import BuildEnvironment # NOQA from sphinx.util.tags import Tags # NOQA diff --git a/sphinx/directives/__init__.py b/sphinx/directives/__init__.py index 8dbb1cec6..c639885f6 100644 --- a/sphinx/directives/__init__.py +++ b/sphinx/directives/__init__.py @@ -35,8 +35,6 @@ if False: # For type annotation from typing import Any, Dict # NOQA from sphinx.application import Sphinx # NOQA - from sphinx.config import Config # NOQA - from sphinx.environment import BuildEnvironment # NOQA from sphinx.util.docfields import Field # NOQA from sphinx.util.typing import DirectiveOption # NOQA diff --git a/sphinx/directives/other.py b/sphinx/directives/other.py index 2efca0722..149ccd857 100644 --- a/sphinx/directives/other.py +++ b/sphinx/directives/other.py @@ -26,7 +26,7 @@ from sphinx.util.nodes import explicit_title_re, set_source_info, \ if False: # For type annotation - from typing import Any, Dict, Generator, List, Tuple # NOQA + from typing import Any, Dict, List # NOQA from sphinx.application import Sphinx # NOQA diff --git a/sphinx/domains/javascript.py b/sphinx/domains/javascript.py index af553c1ac..5d8b4f1e0 100644 --- a/sphinx/domains/javascript.py +++ b/sphinx/domains/javascript.py @@ -24,7 +24,6 @@ from sphinx.util.nodes import make_refnode if False: # For type annotation from typing import Any, Dict, Iterator, List, Tuple # NOQA - from docutils import nodes # NOQA from sphinx.application import Sphinx # NOQA from sphinx.builders import Builder # NOQA from sphinx.environment import BuildEnvironment # NOQA diff --git a/sphinx/domains/math.py b/sphinx/domains/math.py index 3c284394d..bc0ef8328 100644 --- a/sphinx/domains/math.py +++ b/sphinx/domains/math.py @@ -20,7 +20,7 @@ from sphinx.util.nodes import make_refnode if False: # For type annotation - from typing import Any, Callable, Dict, Iterable, List, Tuple, Type, Union # NOQA + from typing import Any, Dict, Iterable, List, Tuple # NOQA from sphinx import addnodes # NOQA from sphinx.application import Sphinx # NOQA from sphinx.builders import Builder # NOQA diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index 2dc51dc33..6c4030a6c 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -26,7 +26,7 @@ from sphinx.util.nodes import make_refnode if False: # For type annotation - from typing import Any, Dict, Iterable, Iterator, List, Tuple, Type, Union # NOQA + from typing import Any, Dict, Iterable, Iterator, List, Tuple, Type # NOQA from sphinx.application import Sphinx # NOQA from sphinx.builders import Builder # NOQA from sphinx.environment import BuildEnvironment # NOQA diff --git a/sphinx/environment/__init__.py b/sphinx/environment/__init__.py index 3e3406706..6158d9f51 100644 --- a/sphinx/environment/__init__.py +++ b/sphinx/environment/__init__.py @@ -30,7 +30,7 @@ from sphinx.util.nodes import is_translatable if False: # For type annotation - from typing import Any, Callable, Dict, IO, Iterator, List, Optional, Pattern, Set, Tuple, Type, Union, Generator # NOQA + from typing import Any, Callable, Dict, IO, Iterator, List, Optional, Set, Tuple, Union # NOQA from docutils import nodes # NOQA from sphinx.application import Sphinx # NOQA from sphinx.builders import Builder # NOQA diff --git a/sphinx/environment/collectors/asset.py b/sphinx/environment/collectors/asset.py index 07f4cef4f..a0c009463 100644 --- a/sphinx/environment/collectors/asset.py +++ b/sphinx/environment/collectors/asset.py @@ -24,8 +24,7 @@ from sphinx.util.images import guess_mimetype if False: # For type annotation - from typing import Dict, List, Set, Tuple # NOQA - from docutils import nodes # NOQA + from typing import Dict, List, Set # NOQA from sphinx.sphinx import Sphinx # NOQA from sphinx.environment import BuildEnvironment # NOQA diff --git a/sphinx/environment/collectors/metadata.py b/sphinx/environment/collectors/metadata.py index bba32e7fb..9168e7840 100644 --- a/sphinx/environment/collectors/metadata.py +++ b/sphinx/environment/collectors/metadata.py @@ -17,7 +17,6 @@ from sphinx.environment.collectors import EnvironmentCollector if False: # For type annotation from typing import Dict, Set # NOQA - from docutils import nodes # NOQA from sphinx.sphinx import Sphinx # NOQA from sphinx.environment import BuildEnvironment # NOQA diff --git a/sphinx/environment/collectors/title.py b/sphinx/environment/collectors/title.py index 12478e9a4..0f43eb0af 100644 --- a/sphinx/environment/collectors/title.py +++ b/sphinx/environment/collectors/title.py @@ -16,7 +16,6 @@ from sphinx.transforms import SphinxContentsFilter if False: # For type annotation from typing import Dict, Set # NOQA - from docutils import nodes # NOQA from sphinx.sphinx import Sphinx # NOQA from sphinx.environment import BuildEnvironment # NOQA diff --git a/sphinx/environment/collectors/toctree.py b/sphinx/environment/collectors/toctree.py index b4a344c12..53009c753 100644 --- a/sphinx/environment/collectors/toctree.py +++ b/sphinx/environment/collectors/toctree.py @@ -21,9 +21,8 @@ from sphinx.util import url_re, logging if False: # For type annotation - from typing import Any, Dict, List, Set, Tuple, Type, TypeVar # NOQA + from typing import Dict, List, Set, Tuple, Type, TypeVar # NOQA from sphinx.application import Sphinx # NOQA - from sphinx.builders import Builder # NOQA from sphinx.environment import BuildEnvironment # NOQA N = TypeVar('N') diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index cd3b735e1..f4b0c368f 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -33,9 +33,7 @@ from sphinx.util.inspect import Signature, isdescriptor, safe_getmembers, \ if False: # For type annotation from types import ModuleType # NOQA - from typing import Any, Callable, Dict, Iterator, List, Sequence, Set, Tuple, Type, Union # NOQA - from docutils import nodes # NOQA - from docutils.utils import Reporter # NOQA + from typing import Callable, Dict, Iterator, List, Sequence, Set, Tuple, Type, Union # NOQA from sphinx.application import Sphinx # NOQA from sphinx.config import Config # NOQA from sphinx.environment import BuildEnvironment # NOQA diff --git a/sphinx/ext/autodoc/directive.py b/sphinx/ext/autodoc/directive.py index 57ba12017..8b41d7fe1 100644 --- a/sphinx/ext/autodoc/directive.py +++ b/sphinx/ext/autodoc/directive.py @@ -17,9 +17,8 @@ from sphinx.util.nodes import nested_parse_with_titles if False: # For type annotation - from typing import Any, Callable, Dict, List, Set, Type # NOQA + from typing import Callable, Dict, List, Set, Type # NOQA from docutils.parsers.rst.state import RSTState # NOQA - from docutils.statemachine import StateMachine, StringList # NOQA from docutils.utils import Reporter # NOQA from sphinx.config import Config # NOQA from sphinx.environment import BuildEnvironment # NOQA diff --git a/sphinx/ext/autodoc/importer.py b/sphinx/ext/autodoc/importer.py index f19464b13..acdbe4d6e 100644 --- a/sphinx/ext/autodoc/importer.py +++ b/sphinx/ext/autodoc/importer.py @@ -24,7 +24,7 @@ from sphinx.util.inspect import isenumclass, safe_getattr if False: # For type annotation - from typing import Any, Callable, Dict, Generator, Iterator, List, Optional, Sequence, Tuple, Union # NOQA + from typing import Any, Callable, Dict, Generator, Iterator, List, Sequence, Tuple, Union # NOQA logger = logging.getLogger(__name__) diff --git a/sphinx/ext/autosectionlabel.py b/sphinx/ext/autosectionlabel.py index 4c353049c..de46cec52 100644 --- a/sphinx/ext/autosectionlabel.py +++ b/sphinx/ext/autosectionlabel.py @@ -24,11 +24,6 @@ if False: logger = logging.getLogger(__name__) -if False: - # For type annotation - from typing import Any, Dict # NOQA - from sphinx.application import Sphinx # NOQA - def get_node_depth(node): i = 0 diff --git a/sphinx/ext/autosummary/generate.py b/sphinx/ext/autosummary/generate.py index 83918e998..1e9dbedc8 100644 --- a/sphinx/ext/autosummary/generate.py +++ b/sphinx/ext/autosummary/generate.py @@ -41,9 +41,7 @@ from sphinx.util.rst import escape as rst_escape if False: # For type annotation from typing import Any, Callable, Dict, List, Tuple, Type, Union # NOQA - from sphinx import addnodes # NOQA from sphinx.builders import Builder # NOQA - from sphinx.environment import BuildEnvironment # NOQA from sphinx.ext.autodoc import Documenter # NOQA diff --git a/sphinx/ext/coverage.py b/sphinx/ext/coverage.py index 15e738497..63beecd61 100644 --- a/sphinx/ext/coverage.py +++ b/sphinx/ext/coverage.py @@ -23,7 +23,7 @@ from sphinx.util.inspect import safe_getattr if False: # For type annotation - from typing import Any, Callable, Dict, IO, List, Pattern, Set, Tuple # NOQA + from typing import Any, Dict, IO, List, Pattern, Set, Tuple # NOQA from sphinx.application import Sphinx # NOQA logger = logging.getLogger(__name__) diff --git a/sphinx/ext/doctest.py b/sphinx/ext/doctest.py index a47d05b55..8901b98f0 100644 --- a/sphinx/ext/doctest.py +++ b/sphinx/ext/doctest.py @@ -34,7 +34,7 @@ from sphinx.util.osutil import relpath if False: # For type annotation - from typing import Any, Callable, Dict, IO, Iterable, List, Optional, Sequence, Set, Tuple, Type # NOQA + from typing import Any, Callable, Dict, Iterable, List, Optional, Sequence, Set, Tuple, Type # NOQA from sphinx.application import Sphinx # NOQA logger = logging.getLogger(__name__) diff --git a/sphinx/ext/imgmath.py b/sphinx/ext/imgmath.py index 3c6aca78b..eb0d35c25 100644 --- a/sphinx/ext/imgmath.py +++ b/sphinx/ext/imgmath.py @@ -31,7 +31,6 @@ from sphinx.util.png import read_png_depth, write_png_depth if False: # For type annotation from typing import Any, Dict, List, Tuple, Union # NOQA - from sphinx.addnodes import displaymath # NOQA from sphinx.application import Sphinx # NOQA from sphinx.builders import Builder # NOQA from sphinx.config import Config # NOQA diff --git a/sphinx/ext/inheritance_diagram.py b/sphinx/ext/inheritance_diagram.py index ed583b694..cfdac4803 100644 --- a/sphinx/ext/inheritance_diagram.py +++ b/sphinx/ext/inheritance_diagram.py @@ -55,7 +55,7 @@ from sphinx.util.docutils import SphinxDirective if False: # For type annotation - from typing import Any, Dict, List, Tuple, Dict, Optional # NOQA + from typing import Any, Dict, List, Optional, Tuple # NOQA from sphinx.application import Sphinx # NOQA from sphinx.environment import BuildEnvironment # NOQA from sphinx.writers.html import HTMLTranslator # NOQA diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index 1258cd84e..616e254e6 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -41,7 +41,7 @@ from sphinx.util.inventory import InventoryFile if False: # For type annotation - from typing import Any, Dict, IO, List, Tuple, Union # NOQA + from typing import Any, Dict, IO, List, Tuple # NOQA from sphinx.application import Sphinx # NOQA from sphinx.config import Config # NOQA from sphinx.environment import BuildEnvironment # NOQA diff --git a/sphinx/ext/mathbase.py b/sphinx/ext/mathbase.py index 90ad4563d..0c89fd1ed 100644 --- a/sphinx/ext/mathbase.py +++ b/sphinx/ext/mathbase.py @@ -22,7 +22,7 @@ from sphinx.domains.math import MathReferenceRole as EqXRefRole # NOQA # to ke if False: # For type annotation - from typing import Any, Callable, List, Tuple # NOQA + from typing import Callable, Tuple # NOQA from sphinx.application import Sphinx # NOQA from sphinx.writers.html import HTMLTranslator # NOQA diff --git a/sphinx/highlighting.py b/sphinx/highlighting.py index 98e391e9d..c53149ce6 100644 --- a/sphinx/highlighting.py +++ b/sphinx/highlighting.py @@ -14,7 +14,7 @@ import warnings from pygments import highlight from pygments.filters import ErrorToken from pygments.formatters import HtmlFormatter, LatexFormatter -from pygments.lexer import Lexer # NOQA +from pygments.lexer import Lexer from pygments.lexers import get_lexer_by_name, guess_lexer from pygments.lexers import PythonLexer, Python3Lexer, PythonConsoleLexer, \ CLexer, TextLexer, RstLexer diff --git a/sphinx/io.py b/sphinx/io.py index 5a93fb334..368f661d5 100644 --- a/sphinx/io.py +++ b/sphinx/io.py @@ -9,6 +9,7 @@ """ import codecs import warnings +from typing import Any from docutils.core import Publisher from docutils.io import FileInput, NullOutput @@ -16,7 +17,6 @@ from docutils.parsers.rst import Parser as RSTParser from docutils.readers import standalone from docutils.statemachine import StringList, string2lines from docutils.writers import UnfilteredWriter -from typing import Any, Union # NOQA from sphinx.deprecation import RemovedInSphinx30Warning from sphinx.transforms import ( @@ -39,14 +39,13 @@ from sphinx.versioning import UIDTransform if False: # For type annotation - from typing import Any, Dict, List, Tuple, Type, Union # NOQA + from typing import Dict, List, Tuple, Type # NOQA from docutils import nodes # NOQA from docutils.frontend import Values # NOQA from docutils.io import Input # NOQA from docutils.parsers import Parser # NOQA from docutils.transforms import Transform # NOQA from sphinx.application import Sphinx # NOQA - from sphinx.builders import Builder # NOQA from sphinx.environment import BuildEnvironment # NOQA diff --git a/sphinx/jinja2glue.py b/sphinx/jinja2glue.py index f81f86528..f767bd7f7 100644 --- a/sphinx/jinja2glue.py +++ b/sphinx/jinja2glue.py @@ -23,7 +23,7 @@ from sphinx.util.osutil import mtimes_of_files if False: # For type annotation - from typing import Any, Callable, Dict, List, Iterator, Tuple, Union # NOQA + from typing import Dict, List, Union # NOQA from jinja2.environment import Environment # NOQA from sphinx.builders import Builder # NOQA from sphinx.theming import Theme # NOQA diff --git a/sphinx/locale/__init__.py b/sphinx/locale/__init__.py index 166b473a6..77566ec04 100644 --- a/sphinx/locale/__init__.py +++ b/sphinx/locale/__init__.py @@ -18,7 +18,7 @@ from sphinx.deprecation import RemovedInSphinx30Warning if False: # For type annotation - from typing import Any, Callable, Dict, Iterable, Iterator, List, Tuple, Union # NOQA + from typing import Any, Callable, Dict, Iterable, List, Tuple, Union # NOQA class _TranslationProxy(UserString): diff --git a/sphinx/pycode/parser.py b/sphinx/pycode/parser.py index 1b1018721..bf80f4367 100644 --- a/sphinx/pycode/parser.py +++ b/sphinx/pycode/parser.py @@ -18,7 +18,7 @@ from tokenize import COMMENT, NL if False: # For type annotation - from typing import Any, Dict, IO, List, Tuple # NOQA + from typing import Any, Dict, List, Tuple # NOQA comment_re = re.compile('^\\s*#: ?(.*)\r?\n?$') indent_re = re.compile('^\\s*$') diff --git a/sphinx/setup_command.py b/sphinx/setup_command.py index 57f6f0c53..9445e4e0a 100644 --- a/sphinx/setup_command.py +++ b/sphinx/setup_command.py @@ -25,7 +25,7 @@ from sphinx.util.osutil import abspath if False: # For type annotation - from typing import Any, Dict, List, Tuple # NOQA + from typing import Any, Dict # NOQA class BuildDoc(Command): diff --git a/sphinx/testing/util.py b/sphinx/testing/util.py index bf25a20e9..fbd05c5d1 100644 --- a/sphinx/testing/util.py +++ b/sphinx/testing/util.py @@ -25,7 +25,6 @@ from sphinx.util.osutil import relpath if False: # For type annotation - from typing import List # NOQA from typing import Any, Dict, Generator, IO, List, Pattern # NOQA diff --git a/sphinx/theming.py b/sphinx/theming.py index f669adabf..669e71dde 100644 --- a/sphinx/theming.py +++ b/sphinx/theming.py @@ -27,7 +27,7 @@ logger = logging.getLogger(__name__) if False: # For type annotation - from typing import Any, Dict, Iterator, List, Tuple # NOQA + from typing import Any, Dict, List # NOQA from sphinx.application import Sphinx # NOQA NODEFAULT = object() diff --git a/sphinx/transforms/post_transforms/compat.py b/sphinx/transforms/post_transforms/compat.py index d1e8aedd5..67b67f8d4 100644 --- a/sphinx/transforms/post_transforms/compat.py +++ b/sphinx/transforms/post_transforms/compat.py @@ -20,12 +20,8 @@ from sphinx.util import logging if False: # For type annotation - from typing import Any, Callable, Dict, Iterable, List, Tuple # NOQA - from docutils.parsers.rst.states import Inliner # NOQA - from docutils.writers.html4css1 import Writer # NOQA + from typing import Any, Dict # NOQA from sphinx.application import Sphinx # NOQA - from sphinx.builders import Builder # NOQA - from sphinx.environment import BuildEnvironment # NOQA logger = logging.getLogger(__name__) diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py index bfe99778a..def90125c 100644 --- a/sphinx/util/__init__.py +++ b/sphinx/util/__init__.py @@ -48,7 +48,7 @@ from sphinx.util.matching import patfilter # noqa if False: # For type annotation - from typing import Any, Callable, Dict, IO, Iterable, Iterator, List, Pattern, Sequence, Set, Tuple, Type, Union # NOQA + from typing import Any, Callable, Dict, IO, Iterable, Iterator, List, Pattern, Set, Tuple, Type, Union # NOQA logger = logging.getLogger(__name__) diff --git a/sphinx/util/docfields.py b/sphinx/util/docfields.py index 66f074702..591ca0786 100644 --- a/sphinx/util/docfields.py +++ b/sphinx/util/docfields.py @@ -18,7 +18,6 @@ from sphinx import addnodes if False: # For type annotation from typing import Any, Dict, Type, Union # NOQA - from sphinx.domains import Domain # NOQA from sphinx.environment import BuildEnvironment # NOQA from sphinx.util.typing import TextlikeNode # NOQA diff --git a/sphinx/util/docutils.py b/sphinx/util/docutils.py index 393f97abf..b441b24bb 100644 --- a/sphinx/util/docutils.py +++ b/sphinx/util/docutils.py @@ -42,7 +42,6 @@ if False: from sphinx.builders import Builder # NOQA from sphinx.config import Config # NOQA from sphinx.environment import BuildEnvironment # NOQA - from sphinx.io import SphinxFileInput # NOQA from sphinx.util.typing import RoleFunction # NOQA diff --git a/sphinx/util/images.py b/sphinx/util/images.py index 72f976740..0e5f3e81b 100644 --- a/sphinx/util/images.py +++ b/sphinx/util/images.py @@ -27,7 +27,7 @@ except ImportError: if False: # For type annotation - from typing import Dict, IO, List, Tuple # NOQA + from typing import IO, Tuple # NOQA mime_suffixes = OrderedDict([ ('.gif', 'image/gif'), diff --git a/sphinx/util/inventory.py b/sphinx/util/inventory.py index 786898181..0fdc3e833 100644 --- a/sphinx/util/inventory.py +++ b/sphinx/util/inventory.py @@ -15,7 +15,7 @@ from sphinx.util import logging if False: # For type annotation - from typing import Callable, Dict, IO, Iterator, Tuple # NOQA + from typing import Callable, IO, Iterator # NOQA from sphinx.builders import Builder # NOQA from sphinx.environment import BuildEnvironment # NOQA from sphinx.util.typing import Inventory # NOQA diff --git a/sphinx/util/logging.py b/sphinx/util/logging.py index ba71ecbe1..afa4ebd23 100644 --- a/sphinx/util/logging.py +++ b/sphinx/util/logging.py @@ -22,7 +22,6 @@ from sphinx.util.console import colorize if False: # For type annotation from typing import Any, Dict, Generator, IO, List, Tuple, Type, Union # NOQA - from docutils import nodes # NOQA from sphinx.application import Sphinx # NOQA diff --git a/sphinx/util/nodes.py b/sphinx/util/nodes.py index b0dd13b38..bb850342c 100644 --- a/sphinx/util/nodes.py +++ b/sphinx/util/nodes.py @@ -19,7 +19,7 @@ from sphinx.util import logging if False: # For type annotation - from typing import Any, Callable, Iterable, List, Optional, Set, Tuple, Type # NOQA + from typing import Callable, Iterable, List, Optional, Set, Tuple, Type # NOQA from docutils.parsers.rst.states import Inliner # NOQA from docutils.statemachine import StringList # NOQA from sphinx.builders import Builder # NOQA diff --git a/sphinx/util/osutil.py b/sphinx/util/osutil.py index 646a92f1b..6a070a27a 100644 --- a/sphinx/util/osutil.py +++ b/sphinx/util/osutil.py @@ -24,7 +24,7 @@ from sphinx.deprecation import RemovedInSphinx30Warning, RemovedInSphinx40Warnin if False: # For type annotation - from typing import Any, Iterator, List, Tuple, Union # NOQA + from typing import Any, Iterator, List, Tuple # NOQA # Errnos that we need. EEXIST = getattr(errno, 'EEXIST', 0) # RemovedInSphinx40Warning diff --git a/sphinx/util/pycompat.py b/sphinx/util/pycompat.py index fe5f0803e..dca2849c2 100644 --- a/sphinx/util/pycompat.py +++ b/sphinx/util/pycompat.py @@ -22,7 +22,7 @@ from sphinx.util.typing import NoneType if False: # For type annotation - from typing import Any, Callable, Generator # NOQA + from typing import Any, Callable # NOQA logger = logging.getLogger(__name__) diff --git a/sphinx/writers/xml.py b/sphinx/writers/xml.py index 9560c4006..8f6d393e2 100644 --- a/sphinx/writers/xml.py +++ b/sphinx/writers/xml.py @@ -12,7 +12,7 @@ from docutils.writers.docutils_xml import Writer as BaseXMLWriter if False: # For type annotation - from typing import Any, Tuple # NOQA + from typing import Any # NOQA from sphinx.builders import Builder # NOQA From 1aa7d45695f7df0144651c90d032fbc41a19f10a Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen Date: Thu, 7 Mar 2019 09:16:13 +0100 Subject: [PATCH 054/121] C++, fix alias declarations. Based on sphinx-doc/sphinx#6131. Defer parsing to transform time, and make sure alias nodes are copied in a reasonable way. Fixes sphinx-doc/sphinx#5946 --- CHANGES | 1 + sphinx/domains/cpp.py | 53 +++++++++++++++++++++---------------------- 2 files changed, 27 insertions(+), 27 deletions(-) diff --git a/CHANGES b/CHANGES index b047332a1..49a2e7e37 100644 --- a/CHANGES +++ b/CHANGES @@ -26,6 +26,7 @@ Bugs fixed * texinfo: ``make install-info`` fails on macOS * #3079: texinfo: image files are not copied on ``make install-info`` * #5391: A cross reference in heading is rendered as literal +* #5946: C++, fix ``cpp:alias`` problems in LaTeX (and singlehtml) Testing -------- diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index 13f905d07..b099f5260 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -6734,27 +6734,20 @@ class CPPNamespacePopObject(SphinxDirective): class AliasNode(nodes.Element): - def __init__(self, sig, warnEnv): - """ - :param sig: The name or function signature to alias. - :param warnEnv: An object which must have the following attributes: - env: a Sphinx environment - whatever DefinitionParser requires of warnEnv - """ + def __init__(self, sig, env=None, parentKey=None): super().__init__() self.sig = sig - env = warnEnv.env - if 'cpp:parent_symbol' not in env.temp_data: - root = env.domaindata['cpp']['root_symbol'] - env.temp_data['cpp:parent_symbol'] = root - self.parentKey = env.temp_data['cpp:parent_symbol'].get_lookup_key() - try: - parser = DefinitionParser(sig, warnEnv, warnEnv.env.config) - self.ast, self.isShorthand = parser.parse_xref_object() - parser.assert_end() - except DefinitionError as e: - warnEnv.warn(e) - self.ast = None + if env is not None: + if 'cpp:parent_symbol' not in env.temp_data: + root = env.domaindata['cpp']['root_symbol'] + env.temp_data['cpp:parent_symbol'] = root + self.parentKey = env.temp_data['cpp:parent_symbol'].get_lookup_key() + else: + assert parentKey is not None + self.parentKey = parentKey + + def copy(self): + return self.__class__(self.sig, env=None, parentKey=self.parentKey) class AliasTransform(SphinxTransform): @@ -6763,8 +6756,20 @@ class AliasTransform(SphinxTransform): def apply(self, **kwargs): # type: (Any) -> None for node in self.document.traverse(AliasNode): + class Warner: + def warn(self, msg): + logger.warning(msg, location=node) + warner = Warner() sig = node.sig - ast = node.ast + parentKey = node.parentKey + try: + parser = DefinitionParser(sig, warner, self.env.config) + ast, isShorthand = parser.parse_xref_object() + parser.assert_end() + except DefinitionError as e: + warner.warn(e) + ast, isShorthand = None, None + if ast is None: # could not be parsed, so stop here signode = addnodes.desc_signature(sig, '') @@ -6774,8 +6779,6 @@ class AliasTransform(SphinxTransform): node.replace_self(signode) continue - isShorthand = node.isShorthand - parentKey = node.parentKey rootSymbol = self.env.domains['cpp'].data['root_symbol'] parentSymbol = rootSymbol.direct_lookup(parentKey) if not parentSymbol: @@ -6833,10 +6836,6 @@ class AliasTransform(SphinxTransform): class CPPAliasObject(ObjectDescription): option_spec = {} # type: Dict - def warn(self, msg): - # type: (Union[str, Exception]) -> None - self.state_machine.reporter.warning(msg, line=self.lineno) - def run(self): # type: () -> List[nodes.Node] """ @@ -6859,7 +6858,7 @@ class CPPAliasObject(ObjectDescription): self.names = [] # type: List[str] signatures = self.get_signatures() for i, sig in enumerate(signatures): - node.append(AliasNode(sig, self)) + node.append(AliasNode(sig, env=self.env)) contentnode = addnodes.desc_content() node.append(contentnode) From 386ec9cd9a39b4cfa65eebd6a026e57351ba3370 Mon Sep 17 00:00:00 2001 From: Antony Lee Date: Thu, 7 Mar 2019 14:17:41 +0100 Subject: [PATCH 055/121] Fix doc typo. --- 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 fbbd61717..d0da75d4d 100644 --- a/doc/usage/restructuredtext/domains.rst +++ b/doc/usage/restructuredtext/domains.rst @@ -1084,7 +1084,7 @@ Overloaded (member) functions When a (member) function is referenced using just its name, the reference will point to an arbitrary matching overload. -The :rst:role:`cpp:any` and :rst:role:`cpp:func` roles will an alternative +The :rst:role:`cpp:any` and :rst:role:`cpp:func` roles use an alternative format, which simply is a complete function declaration. This will resolve to the exact matching overload. As example, consider the following class declaration: From 94957ebaa5a3e566174c659403cbc6ad6bd5fbcc Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 8 Mar 2019 00:19:49 +0900 Subject: [PATCH 056/121] Fix AttributeError in sphinx.builders.latex Because sphinx.builders.latex.nodes and docutils.nodes are conflicted. --- sphinx/builders/latex/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sphinx/builders/latex/__init__.py b/sphinx/builders/latex/__init__.py index 9b202499b..65791b354 100644 --- a/sphinx/builders/latex/__init__.py +++ b/sphinx/builders/latex/__init__.py @@ -11,7 +11,6 @@ import os from os import path -from docutils import nodes from docutils.frontend import OptionParser import sphinx.builders.latex.nodes # NOQA # Workaround: import this before writer to avoid ImportError @@ -41,6 +40,9 @@ from sphinx.writers.latex import ( ADDITIONAL_SETTINGS, DEFAULT_SETTINGS, LaTeXWriter, LaTeXTranslator ) +# load docutils.nodes after loading sphinx.builders.latex.nodes +from docutils import nodes # NOQA + if False: # For type annotation from typing import Any, Dict, Iterable, List, Tuple, Union # NOQA From c83f2a0272f3178342918c27985b9098844314a0 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 7 Mar 2019 23:35:36 +0900 Subject: [PATCH 057/121] Fix #6140: Use unittest.mock instead of mock --- setup.py | 1 - tests/test_build.py | 2 +- tests/test_config.py | 10 ++++++---- tests/test_domain_js.py | 3 ++- tests/test_domain_py.py | 3 ++- tests/test_domain_std.py | 3 ++- tests/test_environment_indexentries.py | 3 +-- tests/test_ext_autosummary.py | 4 ++-- tests/test_ext_intersphinx.py | 2 +- tests/test_ext_napoleon.py | 4 +--- tests/test_ext_napoleon_docstring.py | 4 +--- tests/test_highlighting.py | 3 ++- tests/test_roles.py | 3 ++- tests/test_util.py | 2 +- tests/test_util_fileutil.py | 2 +- 15 files changed, 25 insertions(+), 24 deletions(-) diff --git a/setup.py b/setup.py index 79c466321..eccceebb3 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,6 @@ extras_require = { 'colorama>=0.3.5', ], 'test': [ - 'mock', 'pytest', 'pytest-cov', 'html5lib', diff --git a/tests/test_build.py b/tests/test_build.py index 8072906a2..fa620d352 100644 --- a/tests/test_build.py +++ b/tests/test_build.py @@ -10,8 +10,8 @@ import sys from textwrap import dedent +from unittest import mock -import mock import pytest from docutils import nodes diff --git a/tests/test_config.py b/tests/test_config.py index fadf7d6c4..a5da0d6ec 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -8,7 +8,9 @@ :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ -import mock + +from unittest import mock + import pytest import sphinx @@ -257,7 +259,7 @@ def test_conf_warning_message(logger, name, default, annotation, actual, message config.add(name, default, False, annotation or ()) config.init_values() check_confval_types(None, config) - logger.warning.assert_called() + assert logger.warning.called assert logger.warning.call_args[0][0] == message @@ -276,7 +278,7 @@ def test_check_enum_failed(logger): config.add('value', 'default', False, ENUM('default', 'one', 'two')) config.init_values() check_confval_types(None, config) - logger.warning.assert_called() + assert logger.warning.called @mock.patch("sphinx.config.logger") @@ -294,4 +296,4 @@ def test_check_enum_for_list_failed(logger): config.add('value', 'default', False, ENUM('default', 'one', 'two')) config.init_values() check_confval_types(None, config) - logger.warning.assert_called() + assert logger.warning.called diff --git a/tests/test_domain_js.py b/tests/test_domain_js.py index 174a431bf..613623ee5 100644 --- a/tests/test_domain_js.py +++ b/tests/test_domain_js.py @@ -8,9 +8,10 @@ :license: BSD, see LICENSE for details. """ +from unittest.mock import Mock + import pytest from docutils import nodes -from mock import Mock from sphinx import addnodes from sphinx.domains.javascript import JavaScriptDomain diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index ff6387101..c4a50b742 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -8,9 +8,10 @@ :license: BSD, see LICENSE for details. """ +from unittest.mock import Mock + import pytest from docutils import nodes -from mock import Mock from sphinx import addnodes from sphinx.domains.python import py_sig_re, _pseudo_parse_arglist, PythonDomain diff --git a/tests/test_domain_std.py b/tests/test_domain_std.py index dda8a4313..15daeeea6 100644 --- a/tests/test_domain_std.py +++ b/tests/test_domain_std.py @@ -8,7 +8,8 @@ :license: BSD, see LICENSE for details. """ -import mock +from unittest import mock + from docutils import nodes from sphinx.domains.std import StandardDomain diff --git a/tests/test_environment_indexentries.py b/tests/test_environment_indexentries.py index 4475fb273..62e4ffb79 100644 --- a/tests/test_environment_indexentries.py +++ b/tests/test_environment_indexentries.py @@ -9,8 +9,7 @@ """ from collections import namedtuple - -import mock +from unittest import mock from sphinx import locale from sphinx.environment.adapters.indexentries import IndexEntries diff --git a/tests/test_ext_autosummary.py b/tests/test_ext_autosummary.py index 63026beb5..3cc9710d8 100644 --- a/tests/test_ext_autosummary.py +++ b/tests/test_ext_autosummary.py @@ -10,11 +10,13 @@ import sys from io import StringIO +from unittest.mock import Mock import pytest from sphinx.ext.autosummary import mangle_signature, import_by_name, extract_summary from sphinx.testing.util import etree_parse +from sphinx.util.docutils import new_document html_warnfile = StringIO() @@ -57,8 +59,6 @@ def test_mangle_signature(): def test_extract_summary(capsys): - from sphinx.util.docutils import new_document - from mock import Mock settings = Mock(language_code='', id_prefix='', auto_id_prefix='', diff --git a/tests/test_ext_intersphinx.py b/tests/test_ext_intersphinx.py index 45684123f..93bf16834 100644 --- a/tests/test_ext_intersphinx.py +++ b/tests/test_ext_intersphinx.py @@ -11,8 +11,8 @@ import os import unittest from io import BytesIO +from unittest import mock -import mock import pytest import requests from docutils import nodes diff --git a/tests/test_ext_napoleon.py b/tests/test_ext_napoleon.py index 9127109d9..19eb536fa 100644 --- a/tests/test_ext_napoleon.py +++ b/tests/test_ext_napoleon.py @@ -10,9 +10,7 @@ """ from collections import namedtuple -from unittest import TestCase - -import mock +from unittest import TestCase, mock from sphinx.application import Sphinx from sphinx.ext.napoleon import _process_docstring, _skip_member, Config, setup diff --git a/tests/test_ext_napoleon_docstring.py b/tests/test_ext_napoleon_docstring.py index 71ac1870e..fa75062b3 100644 --- a/tests/test_ext_napoleon_docstring.py +++ b/tests/test_ext_napoleon_docstring.py @@ -12,9 +12,7 @@ from collections import namedtuple from inspect import cleandoc from textwrap import dedent -from unittest import TestCase - -import mock +from unittest import TestCase, mock from sphinx.ext.napoleon import Config from sphinx.ext.napoleon.docstring import GoogleDocstring, NumpyDocstring diff --git a/tests/test_highlighting.py b/tests/test_highlighting.py index efe2871c8..fca51d02f 100644 --- a/tests/test_highlighting.py +++ b/tests/test_highlighting.py @@ -8,7 +8,8 @@ :license: BSD, see LICENSE for details. """ -import mock +from unittest import mock + from pygments.formatters.html import HtmlFormatter from pygments.lexer import RegexLexer from pygments.token import Text, Name diff --git a/tests/test_roles.py b/tests/test_roles.py index eb4cf4ecf..8f0e546b6 100644 --- a/tests/test_roles.py +++ b/tests/test_roles.py @@ -8,8 +8,9 @@ :license: BSD, see LICENSE for details. """ +from unittest.mock import Mock + from docutils import nodes -from mock import Mock from sphinx.roles import EmphasizedLiteral from sphinx.testing.util import assert_node diff --git a/tests/test_util.py b/tests/test_util.py index 0926096f4..ae93603b8 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -10,9 +10,9 @@ import os import tempfile +from unittest.mock import patch import pytest -from mock import patch import sphinx from sphinx.errors import PycodeError diff --git a/tests/test_util_fileutil.py b/tests/test_util_fileutil.py index 635559efa..7e0d261bd 100644 --- a/tests/test_util_fileutil.py +++ b/tests/test_util_fileutil.py @@ -8,7 +8,7 @@ :license: BSD, see LICENSE for details. """ -import mock +from unittest import mock from sphinx.jinja2glue import BuiltinTemplateLoader from sphinx.util.fileutil import copy_asset, copy_asset_file From b74dbeb87ae18217225130e5ac16c7ffbe409a2a Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Fri, 8 Mar 2019 00:26:51 +0000 Subject: [PATCH 058/121] propogate cite_reference node classes to pending_xref node --- sphinx/transforms/__init__.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sphinx/transforms/__init__.py b/sphinx/transforms/__init__.py index ffcb6928a..3bc74c25d 100644 --- a/sphinx/transforms/__init__.py +++ b/sphinx/transforms/__init__.py @@ -220,6 +220,8 @@ class CitationReferences(SphinxTransform): refnode.source = citnode.source or citnode.parent.source refnode.line = citnode.line or citnode.parent.line refnode += nodes.Text('[' + cittext + ']') + for class_name in citnode.attributes.get('classes', []): + refnode.set_class(class_name) citnode.parent.replace(citnode, refnode) From f2ba53f20b3902b5cc12f014e11251402603d90f Mon Sep 17 00:00:00 2001 From: Luc Saffre Date: Wed, 6 Mar 2019 09:49:52 +0200 Subject: [PATCH 059/121] Fixed a bug in intersphinx failure reporting --- sphinx/ext/intersphinx.py | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index 33e218531..313fc8970 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -183,7 +183,7 @@ def fetch_inventory(app, uri, inv): f = open(path.join(app.srcdir, inv), 'rb') except Exception as err: err.args = ('intersphinx inventory %r not fetchable due to %s: %s', - inv, err.__class__, err) + inv, err.__class__, str(err)) raise try: if hasattr(f, 'url'): @@ -201,7 +201,7 @@ def fetch_inventory(app, uri, inv): raise ValueError('unknown or unsupported inventory version: %r' % exc) except Exception as err: err.args = ('intersphinx inventory %r not readable due to %s: %s', - inv, err.__class__.__name__, err) + inv, err.__class__.__name__, str(err)) raise else: return invdata @@ -265,10 +265,9 @@ def load_mappings(app): for fail in failures: logger.info(*fail) else: + issues = '\n'.join([f[0] % f[1:] for f in failures]) logger.warning(__("failed to reach any of the inventories " - "with the following issues:")) - for fail in failures: - logger.warning(*fail) + "with the following issues:") + "\n" + issues) if update: inventories.clear() From 2f97fd4b0c73f2c50402eb5e0287a712b378fe30 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Fri, 8 Mar 2019 22:15:36 +0900 Subject: [PATCH 060/121] Update CHANGES for PR #6139, #6148 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 41c5212c2..048989a41 100644 --- a/CHANGES +++ b/CHANGES @@ -26,6 +26,7 @@ Bugs fixed * #6028: graphviz: Ensure the graphviz filenames are reproducible * #6068: doctest: ``skipif`` option may remove the code block from documentation * #6136: ``:name:`` option for ``math`` directive causes a crash +* #6139: intersphinx: ValueError on failure reporting Testing -------- From 71dec3b38e8231125bcc25b3bf6e484df921194f Mon Sep 17 00:00:00 2001 From: Martin Packman Date: Mon, 4 Mar 2019 15:58:12 +0000 Subject: [PATCH 061/121] Fix UnboundLocalError when building changes Split testing of changes builder to its own test file and root. Improve coverage a little, and add case that fails if a module directive is included in the rst source. Correctly handle changesets with a module declared. Fixes https://github.com/sphinx-doc/sphinx/issues/6134 --- sphinx/builders/changes.py | 3 +- tests/roots/test-changes/base.rst | 20 ++++++++++ tests/roots/test-changes/c-api.rst | 24 ++++++++++++ tests/roots/test-changes/conf.py | 6 +++ tests/roots/test-changes/contents.rst | 13 +++++++ tests/roots/test-changes/library/utils.rst | 25 +++++++++++++ tests/test_build.py | 4 +- tests/test_build_changes.py | 43 ++++++++++++++++++++++ 8 files changed, 134 insertions(+), 4 deletions(-) create mode 100644 tests/roots/test-changes/base.rst create mode 100644 tests/roots/test-changes/c-api.rst create mode 100644 tests/roots/test-changes/conf.py create mode 100644 tests/roots/test-changes/contents.rst create mode 100644 tests/roots/test-changes/library/utils.rst create mode 100644 tests/test_build_changes.py diff --git a/sphinx/builders/changes.py b/sphinx/builders/changes.py index 308ae9656..aa5fea5a5 100644 --- a/sphinx/builders/changes.py +++ b/sphinx/builders/changes.py @@ -85,8 +85,7 @@ class ChangesBuilder(Builder): entry = '%s: %s.' % (descname, ttext) apichanges.append((entry, changeset.docname, changeset.lineno)) elif descname or changeset.module: - if not changeset.module: - module = _('Builtins') + module = changeset.module or _('Builtins') if not descname: descname = _('Module level') if context: diff --git a/tests/roots/test-changes/base.rst b/tests/roots/test-changes/base.rst new file mode 100644 index 000000000..a1b28398a --- /dev/null +++ b/tests/roots/test-changes/base.rst @@ -0,0 +1,20 @@ +Version markup +-------------- + +.. versionadded:: 0.6 + Some funny **stuff**. + +.. versionchanged:: 0.6 + Even more funny stuff. + +.. deprecated:: 0.6 + Boring stuff. + +.. versionadded:: 1.2 + + First paragraph of versionadded. + +.. versionchanged:: 1.2 + First paragraph of versionchanged. + + Second paragraph of versionchanged. diff --git a/tests/roots/test-changes/c-api.rst b/tests/roots/test-changes/c-api.rst new file mode 100644 index 000000000..22c0c30c6 --- /dev/null +++ b/tests/roots/test-changes/c-api.rst @@ -0,0 +1,24 @@ +.. highlightlang:: c + + +Memory +====== + +.. c:function:: void* Test_Malloc(size_t n) + + Allocate *n* bytes of memory. + + .. versionchanged:: 0.6 + + Can now be replaced with a different allocator. + +System +------ + +Access to the system allocator. + +.. versionadded:: 0.6 + +.. c:function:: void* Test_SysMalloc(size_t n) + + Allocate *n* bytes of memory using system allocator. diff --git a/tests/roots/test-changes/conf.py b/tests/roots/test-changes/conf.py new file mode 100644 index 000000000..94cb629dc --- /dev/null +++ b/tests/roots/test-changes/conf.py @@ -0,0 +1,6 @@ +# -*- coding: utf-8 -*- + +project = 'Sphinx ChangesBuilder tests' +copyright = '2007-2019 by the Sphinx team, see AUTHORS' +version = '0.6' +release = '0.6alpha1' diff --git a/tests/roots/test-changes/contents.rst b/tests/roots/test-changes/contents.rst new file mode 100644 index 000000000..ced802608 --- /dev/null +++ b/tests/roots/test-changes/contents.rst @@ -0,0 +1,13 @@ +Index for ChangesBuilder tests +============================== + +Contents: + +.. toctree:: + :maxdepth: 2 + :caption: Table of Contents + :name: mastertoc + + base + c-api + library/utils diff --git a/tests/roots/test-changes/library/utils.rst b/tests/roots/test-changes/library/utils.rst new file mode 100644 index 000000000..86446995b --- /dev/null +++ b/tests/roots/test-changes/library/utils.rst @@ -0,0 +1,25 @@ +:mod:`utils` --- Fake utilities module for tests +================================================ + +.. module:: utils + :synopsis: Utility functions + +-------------- + +The :mod:`utils` module is a pretend python module for changes testing. + + +Classes +------- + +.. class:: Path + + Class for handling paths. + + .. versionadded:: 0.5 + + Innovative new way to handle paths. + + .. deprecated:: 0.6 + + So, that was a bad idea it turns out. diff --git a/tests/test_build.py b/tests/test_build.py index 857e3c8b7..e2243a869 100644 --- a/tests/test_build.py +++ b/tests/test_build.py @@ -61,13 +61,13 @@ def nonascii_srcdir(request, rootdir, sphinx_test_tempdir): # note: this test skips building docs for some builders because they have independent testcase. -# (html, epub, latex, texinfo and manpage) +# (html, changes, epub, latex, texinfo and manpage) @pytest.mark.parametrize( "buildername", [ # note: no 'html' - if it's ok with dirhtml it's ok with html 'dirhtml', 'singlehtml', 'pickle', 'json', 'text', 'htmlhelp', 'qthelp', - 'applehelp', 'changes', 'xml', 'pseudoxml', 'linkcheck', + 'applehelp', 'xml', 'pseudoxml', 'linkcheck', ], ) @mock.patch('sphinx.builders.linkcheck.requests.head', diff --git a/tests/test_build_changes.py b/tests/test_build_changes.py new file mode 100644 index 000000000..911dcd0d1 --- /dev/null +++ b/tests/test_build_changes.py @@ -0,0 +1,43 @@ +# -*- coding: utf-8 -*- +""" + test_build_changes + ~~~~~~~~~~~~~~~~~~ + + Test the ChangesBuilder class. + + :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. + :license: BSD, see LICENSE for details. +""" + +import pytest + + +@pytest.mark.sphinx('changes', testroot='changes') +def test_build(app): + app.build() + + # TODO: Use better checking of html content + htmltext = (app.outdir / 'changes.html').text() + assert 'New in version 0.6: Some funny stuff.' in htmltext + assert 'Changed in version 0.6: Even more funny stuff.' in htmltext + assert 'Deprecated since version 0.6: Boring stuff.' in htmltext + + path_html = ( + 'Path: deprecated: Deprecated since version 0.6:' + ' So, that was a bad idea it turns out.') + assert path_html in htmltext + + malloc_html = ( + 'Test_Malloc: changed: Changed in version 0.6:' + ' Can now be replaced with a different allocator.') + assert malloc_html in htmltext + + +@pytest.mark.sphinx( + 'changes', testroot='changes', srcdir='changes-none', + confoverrides={'version': '0.7', 'release': '0.7b1'}) +def test_no_changes(app, status): + app.build() + + assert 'no changes in version 0.7.' in status.getvalue() + assert not (app.outdir / 'changes.html').exists() From 08d7b4de2e69527a6840123232031705fbefc72a Mon Sep 17 00:00:00 2001 From: Chris Sewell Date: Fri, 8 Mar 2019 14:10:14 +0000 Subject: [PATCH 062/121] modify deprecated method --- sphinx/transforms/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sphinx/transforms/__init__.py b/sphinx/transforms/__init__.py index 0386d7625..9ff5aeccd 100644 --- a/sphinx/transforms/__init__.py +++ b/sphinx/transforms/__init__.py @@ -221,9 +221,8 @@ class CitationReferences(SphinxTransform): refnode.source = citation_ref.source or citation_ref.parent.source refnode.line = citation_ref.line or citation_ref.parent.line refnode += nodes.Text('[' + cittext + ']') - for class_name in citnode.attributes.get('classes', []): - refnode.set_class(class_name) - citnode.parent.replace(citnode, refnode) + for class_name in citation_ref.attributes.get('classes', []): + refnode['classes'].append(class_name) citation_ref.parent.replace(citation_ref, refnode) From 65970a3033cab10da15342969ba023be76e904ea Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Thu, 7 Mar 2019 23:35:36 +0900 Subject: [PATCH 063/121] Fix #6140: Use unittest.mock instead of mock --- setup.py | 1 - tests/test_build.py | 2 +- tests/test_config.py | 10 ++++++---- tests/test_domain_js.py | 3 ++- tests/test_domain_py.py | 3 ++- tests/test_domain_std.py | 3 ++- tests/test_environment_indexentries.py | 3 +-- tests/test_ext_autosummary.py | 4 ++-- tests/test_ext_intersphinx.py | 2 +- tests/test_ext_napoleon.py | 4 +--- tests/test_ext_napoleon_docstring.py | 4 +--- tests/test_highlighting.py | 3 ++- tests/test_roles.py | 3 ++- tests/test_util.py | 2 +- tests/test_util_fileutil.py | 2 +- 15 files changed, 25 insertions(+), 24 deletions(-) diff --git a/setup.py b/setup.py index 79c466321..eccceebb3 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,6 @@ extras_require = { 'colorama>=0.3.5', ], 'test': [ - 'mock', 'pytest', 'pytest-cov', 'html5lib', diff --git a/tests/test_build.py b/tests/test_build.py index 8072906a2..fa620d352 100644 --- a/tests/test_build.py +++ b/tests/test_build.py @@ -10,8 +10,8 @@ import sys from textwrap import dedent +from unittest import mock -import mock import pytest from docutils import nodes diff --git a/tests/test_config.py b/tests/test_config.py index fadf7d6c4..a5da0d6ec 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -8,7 +8,9 @@ :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ -import mock + +from unittest import mock + import pytest import sphinx @@ -257,7 +259,7 @@ def test_conf_warning_message(logger, name, default, annotation, actual, message config.add(name, default, False, annotation or ()) config.init_values() check_confval_types(None, config) - logger.warning.assert_called() + assert logger.warning.called assert logger.warning.call_args[0][0] == message @@ -276,7 +278,7 @@ def test_check_enum_failed(logger): config.add('value', 'default', False, ENUM('default', 'one', 'two')) config.init_values() check_confval_types(None, config) - logger.warning.assert_called() + assert logger.warning.called @mock.patch("sphinx.config.logger") @@ -294,4 +296,4 @@ def test_check_enum_for_list_failed(logger): config.add('value', 'default', False, ENUM('default', 'one', 'two')) config.init_values() check_confval_types(None, config) - logger.warning.assert_called() + assert logger.warning.called diff --git a/tests/test_domain_js.py b/tests/test_domain_js.py index 174a431bf..613623ee5 100644 --- a/tests/test_domain_js.py +++ b/tests/test_domain_js.py @@ -8,9 +8,10 @@ :license: BSD, see LICENSE for details. """ +from unittest.mock import Mock + import pytest from docutils import nodes -from mock import Mock from sphinx import addnodes from sphinx.domains.javascript import JavaScriptDomain diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index ff6387101..c4a50b742 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -8,9 +8,10 @@ :license: BSD, see LICENSE for details. """ +from unittest.mock import Mock + import pytest from docutils import nodes -from mock import Mock from sphinx import addnodes from sphinx.domains.python import py_sig_re, _pseudo_parse_arglist, PythonDomain diff --git a/tests/test_domain_std.py b/tests/test_domain_std.py index dda8a4313..15daeeea6 100644 --- a/tests/test_domain_std.py +++ b/tests/test_domain_std.py @@ -8,7 +8,8 @@ :license: BSD, see LICENSE for details. """ -import mock +from unittest import mock + from docutils import nodes from sphinx.domains.std import StandardDomain diff --git a/tests/test_environment_indexentries.py b/tests/test_environment_indexentries.py index 4475fb273..62e4ffb79 100644 --- a/tests/test_environment_indexentries.py +++ b/tests/test_environment_indexentries.py @@ -9,8 +9,7 @@ """ from collections import namedtuple - -import mock +from unittest import mock from sphinx import locale from sphinx.environment.adapters.indexentries import IndexEntries diff --git a/tests/test_ext_autosummary.py b/tests/test_ext_autosummary.py index 63026beb5..3cc9710d8 100644 --- a/tests/test_ext_autosummary.py +++ b/tests/test_ext_autosummary.py @@ -10,11 +10,13 @@ import sys from io import StringIO +from unittest.mock import Mock import pytest from sphinx.ext.autosummary import mangle_signature, import_by_name, extract_summary from sphinx.testing.util import etree_parse +from sphinx.util.docutils import new_document html_warnfile = StringIO() @@ -57,8 +59,6 @@ def test_mangle_signature(): def test_extract_summary(capsys): - from sphinx.util.docutils import new_document - from mock import Mock settings = Mock(language_code='', id_prefix='', auto_id_prefix='', diff --git a/tests/test_ext_intersphinx.py b/tests/test_ext_intersphinx.py index 45684123f..93bf16834 100644 --- a/tests/test_ext_intersphinx.py +++ b/tests/test_ext_intersphinx.py @@ -11,8 +11,8 @@ import os import unittest from io import BytesIO +from unittest import mock -import mock import pytest import requests from docutils import nodes diff --git a/tests/test_ext_napoleon.py b/tests/test_ext_napoleon.py index 9127109d9..19eb536fa 100644 --- a/tests/test_ext_napoleon.py +++ b/tests/test_ext_napoleon.py @@ -10,9 +10,7 @@ """ from collections import namedtuple -from unittest import TestCase - -import mock +from unittest import TestCase, mock from sphinx.application import Sphinx from sphinx.ext.napoleon import _process_docstring, _skip_member, Config, setup diff --git a/tests/test_ext_napoleon_docstring.py b/tests/test_ext_napoleon_docstring.py index 71ac1870e..fa75062b3 100644 --- a/tests/test_ext_napoleon_docstring.py +++ b/tests/test_ext_napoleon_docstring.py @@ -12,9 +12,7 @@ from collections import namedtuple from inspect import cleandoc from textwrap import dedent -from unittest import TestCase - -import mock +from unittest import TestCase, mock from sphinx.ext.napoleon import Config from sphinx.ext.napoleon.docstring import GoogleDocstring, NumpyDocstring diff --git a/tests/test_highlighting.py b/tests/test_highlighting.py index efe2871c8..fca51d02f 100644 --- a/tests/test_highlighting.py +++ b/tests/test_highlighting.py @@ -8,7 +8,8 @@ :license: BSD, see LICENSE for details. """ -import mock +from unittest import mock + from pygments.formatters.html import HtmlFormatter from pygments.lexer import RegexLexer from pygments.token import Text, Name diff --git a/tests/test_roles.py b/tests/test_roles.py index eb4cf4ecf..8f0e546b6 100644 --- a/tests/test_roles.py +++ b/tests/test_roles.py @@ -8,8 +8,9 @@ :license: BSD, see LICENSE for details. """ +from unittest.mock import Mock + from docutils import nodes -from mock import Mock from sphinx.roles import EmphasizedLiteral from sphinx.testing.util import assert_node diff --git a/tests/test_util.py b/tests/test_util.py index 0926096f4..ae93603b8 100644 --- a/tests/test_util.py +++ b/tests/test_util.py @@ -10,9 +10,9 @@ import os import tempfile +from unittest.mock import patch import pytest -from mock import patch import sphinx from sphinx.errors import PycodeError diff --git a/tests/test_util_fileutil.py b/tests/test_util_fileutil.py index 635559efa..7e0d261bd 100644 --- a/tests/test_util_fileutil.py +++ b/tests/test_util_fileutil.py @@ -8,7 +8,7 @@ :license: BSD, see LICENSE for details. """ -import mock +from unittest import mock from sphinx.jinja2glue import BuiltinTemplateLoader from sphinx.util.fileutil import copy_asset, copy_asset_file From 4865bdff667965c90e93d39c0787e7a126207462 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 9 Mar 2019 15:25:32 +0900 Subject: [PATCH 064/121] Update CHANGES for PR #6147 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 49a2e7e37..57234ee3a 100644 --- a/CHANGES +++ b/CHANGES @@ -27,6 +27,7 @@ Bugs fixed * #3079: texinfo: image files are not copied on ``make install-info`` * #5391: A cross reference in heading is rendered as literal * #5946: C++, fix ``cpp:alias`` problems in LaTeX (and singlehtml) +* #6147: classes attribute of ``citation_reference`` node is lost Testing -------- From 57ecc5733e57c98f8c9e3aa4d792aaeaf542a2c7 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 9 Mar 2019 15:28:45 +0900 Subject: [PATCH 065/121] Fix AssertionError is raised for custom citation_reference node (refs: #6147) AssertionError is raised when custom ``citation_reference`` node having classes attribute refers missing citation (refs: #6147) --- CHANGES | 2 ++ sphinx/transforms/__init__.py | 2 +- tests/test_build_html.py | 4 ++-- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 57234ee3a..f8d199e6f 100644 --- a/CHANGES +++ b/CHANGES @@ -28,6 +28,8 @@ Bugs fixed * #5391: A cross reference in heading is rendered as literal * #5946: C++, fix ``cpp:alias`` problems in LaTeX (and singlehtml) * #6147: classes attribute of ``citation_reference`` node is lost +* AssertionError is raised when custom ``citation_reference`` node having + classes attribute refers missing citation (refs: #6147) Testing -------- diff --git a/sphinx/transforms/__init__.py b/sphinx/transforms/__init__.py index 9ff5aeccd..6f513377b 100644 --- a/sphinx/transforms/__init__.py +++ b/sphinx/transforms/__init__.py @@ -220,7 +220,7 @@ class CitationReferences(SphinxTransform): ids=citation_ref["ids"]) refnode.source = citation_ref.source or citation_ref.parent.source refnode.line = citation_ref.line or citation_ref.parent.line - refnode += nodes.Text('[' + cittext + ']') + refnode += nodes.inline(cittext, '[%s]' % cittext) for class_name in citation_ref.attributes.get('classes', []): refnode['classes'].append(class_name) citation_ref.parent.replace(citation_ref, refnode) diff --git a/tests/test_build_html.py b/tests/test_build_html.py index 99d7bf8d4..1dbf05a4a 100644 --- a/tests/test_build_html.py +++ b/tests/test_build_html.py @@ -391,8 +391,8 @@ def test_html4_output(app, status, warning): (".//a[@class='footnote-reference brackets'][@href='#id9'][@id='id1']", r"1"), (".//a[@class='footnote-reference brackets'][@href='#id10'][@id='id2']", r"2"), (".//a[@class='footnote-reference brackets'][@href='#foo'][@id='id3']", r"3"), - (".//a[@class='reference internal'][@href='#bar'][@id='id4']", r"\[bar\]"), - (".//a[@class='reference internal'][@href='#baz-qux'][@id='id5']", r"\[baz_qux\]"), + (".//a[@class='reference internal'][@href='#bar'][@id='id4']/span", r"\[bar\]"), + (".//a[@class='reference internal'][@href='#baz-qux'][@id='id5']/span", r"\[baz_qux\]"), (".//a[@class='footnote-reference brackets'][@href='#id11'][@id='id6']", r"4"), (".//a[@class='footnote-reference brackets'][@href='#id12'][@id='id7']", r"5"), (".//a[@class='fn-backref'][@href='#id1']", r"1"), From f03c2d4fe22500e751a17a84d299cf5f0de901ee Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 9 Mar 2019 15:52:05 +0900 Subject: [PATCH 066/121] Update CHANGES for PR #6135 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index 048989a41..ffc8b8b32 100644 --- a/CHANGES +++ b/CHANGES @@ -27,6 +27,7 @@ Bugs fixed * #6068: doctest: ``skipif`` option may remove the code block from documentation * #6136: ``:name:`` option for ``math`` directive causes a crash * #6139: intersphinx: ValueError on failure reporting +* #6135: changes: Fix UnboundLocalError when any module found Testing -------- From f7315edfc28cb9712872f02da60945e7e28802ce Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 9 Mar 2019 17:57:20 +0900 Subject: [PATCH 067/121] Use bionic (py36) on Circle CI --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index d349db6e0..6ca62abb7 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,6 +6,6 @@ jobs: working_directory: /sphinx steps: - checkout - - run: /python3.5/bin/pip install -U pip setuptools - - run: /python3.5/bin/pip install -U .[test,websupport] - - run: make test PYTHON=/python3.5/bin/python + - run: /python3.6/bin/pip install -U pip setuptools + - run: /python3.6/bin/pip install -U .[test,websupport] + - run: make test PYTHON=/python3.6/bin/python From f61a5f91f75556c3e886fbef7621acd77760bf51 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sun, 3 Feb 2019 23:59:15 +0900 Subject: [PATCH 068/121] Fix test: imgconverter expects size of images fixed --- tests/roots/test-ext-imgconverter/svgimg.svg | 2 +- tests/roots/test-images/subdir/svgimg.svg | 2 +- tests/roots/test-images/subdir/svgimg.xx.svg | 2 +- tests/roots/test-root/svgimg.svg | 2 +- tests/roots/test-warnings/svgimg.svg | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tests/roots/test-ext-imgconverter/svgimg.svg b/tests/roots/test-ext-imgconverter/svgimg.svg index 533a9fa65..2bae0b9b9 100644 --- a/tests/roots/test-ext-imgconverter/svgimg.svg +++ b/tests/roots/test-ext-imgconverter/svgimg.svg @@ -1,4 +1,4 @@ - + diff --git a/tests/roots/test-images/subdir/svgimg.svg b/tests/roots/test-images/subdir/svgimg.svg index 533a9fa65..2bae0b9b9 100644 --- a/tests/roots/test-images/subdir/svgimg.svg +++ b/tests/roots/test-images/subdir/svgimg.svg @@ -1,4 +1,4 @@ - + diff --git a/tests/roots/test-images/subdir/svgimg.xx.svg b/tests/roots/test-images/subdir/svgimg.xx.svg index 533a9fa65..2bae0b9b9 100644 --- a/tests/roots/test-images/subdir/svgimg.xx.svg +++ b/tests/roots/test-images/subdir/svgimg.xx.svg @@ -1,4 +1,4 @@ - + diff --git a/tests/roots/test-root/svgimg.svg b/tests/roots/test-root/svgimg.svg index 533a9fa65..2bae0b9b9 100644 --- a/tests/roots/test-root/svgimg.svg +++ b/tests/roots/test-root/svgimg.svg @@ -1,4 +1,4 @@ - + diff --git a/tests/roots/test-warnings/svgimg.svg b/tests/roots/test-warnings/svgimg.svg index 533a9fa65..2bae0b9b9 100644 --- a/tests/roots/test-warnings/svgimg.svg +++ b/tests/roots/test-warnings/svgimg.svg @@ -1,4 +1,4 @@ - + From d4ac7217a8e4895918d8a09cfdc80399ac9b42c1 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 9 Mar 2019 17:15:21 +0900 Subject: [PATCH 069/121] Move list of deprecated API to extdev/deprecated.rst --- doc/extdev/deprecated.rst | 937 +++++++++++++++++++++++++++++++++++++ doc/extdev/index.rst | 939 +------------------------------------- 2 files changed, 938 insertions(+), 938 deletions(-) create mode 100644 doc/extdev/deprecated.rst diff --git a/doc/extdev/deprecated.rst b/doc/extdev/deprecated.rst new file mode 100644 index 000000000..e57140420 --- /dev/null +++ b/doc/extdev/deprecated.rst @@ -0,0 +1,937 @@ +.. _dev-deprecated-apis: + +Deprecated APIs +=============== + +On developing Sphinx, we are always careful to the compatibility of our APIs. +But, sometimes, the change of interface are needed for some reasons. In such +cases, we've marked them as deprecated. And they are kept during the two +major versions (for more details, please see :ref:`deprecation-policy`). + +The following is a list of deprecated interfaces. + +.. tabularcolumns:: |>{\raggedright}\Y{.4}|>{\centering}\Y{.1}|>{\centering}\Y{.12}|>{\raggedright\arraybackslash}\Y{.38}| + +.. |LaTeXHyphenate| raw:: latex + + \hspace{0pt} + +.. list-table:: deprecated APIs + :header-rows: 1 + :class: deprecated + :widths: 40, 10, 10, 40 + + * - Target + - |LaTeXHyphenate|\ Deprecated + - (will be) Removed + - Alternatives + + * - ``sphinx.environment.NoUri`` + - 2.1 + - 4.0 + - ``sphinx.errors.NoUri`` + + * - ``sphinx.ext.autodoc.importer.MockFinder`` + - 2.1 + - 4.0 + - ``sphinx.ext.autodoc.mock.MockFinder`` + + * - ``sphinx.ext.autodoc.importer.MockLoader`` + - 2.1 + - 4.0 + - ``sphinx.ext.autodoc.mock.MockLoader`` + + * - ``sphinx.ext.autodoc.importer.mock()`` + - 2.1 + - 4.0 + - ``sphinx.ext.autodoc.mock.mock()`` + + * - ``sphinx.ext.autosummary.autolink_role()`` + - 2.1 + - 4.0 + - ``sphinx.ext.autosummary.AutoLink`` + + * - ``sphinx.util.node.find_source_node()`` + - 2.1 + - 4.0 + - ``sphinx.util.node.get_node_source()`` + + * - ``sphinx.util.i18n.find_catalog()`` + - 2.1 + - 4.0 + - ``sphinx.util.i18n.docname_to_domain()`` + + * - ``sphinx.util.i18n.find_catalog_files()`` + - 2.1 + - 4.0 + - ``sphinx.util.i18n.CatalogRepository`` + + * - ``sphinx.util.i18n.find_catalog_source_files()`` + - 2.1 + - 4.0 + - ``sphinx.util.i18n.CatalogRepository`` + + * - ``encoding`` argument of ``autodoc.Documenter.get_doc()``, + ``autodoc.DocstringSignatureMixin.get_doc()``, + ``autodoc.DocstringSignatureMixin._find_signature()``, and + ``autodoc.ClassDocumenter.get_doc()`` + - 2.0 + - 4.0 + - N/A + + * - arguments of ``EpubBuilder.build_mimetype()``, + ``EpubBuilder.build_container()``, ``EpubBuilder.build_content()``, + ``EpubBuilder.build_toc()`` and ``EpubBuilder.build_epub()`` + - 2.0 + - 4.0 + - N/A + + * - arguments of ``Epub3Builder.build_navigation_doc()`` + - 2.0 + - 4.0 + - N/A + + * - ``nodetype`` argument of + ``sphinx.search.WordCollector.is_meta_keywords()`` + - 2.0 + - 4.0 + - N/A + + * - ``suffix`` argument of ``BuildEnvironment.doc2path()`` + - 2.0 + - 4.0 + - N/A + + * - string style ``base`` argument of ``BuildEnvironment.doc2path()`` + - 2.0 + - 4.0 + - ``os.path.join()`` + + * - ``sphinx.addnodes.abbreviation`` + - 2.0 + - 4.0 + - ``docutils.nodes.abbreviation`` + + * - ``sphinx.builders.applehelp`` + - 2.0 + - 4.0 + - ``sphinxcontrib.applehelp`` + + * - ``sphinx.builders.devhelp`` + - 2.0 + - 4.0 + - ``sphinxcontrib.devhelp`` + + * - ``sphinx.builders.epub3.Epub3Builder.validate_config_value()`` + - 2.0 + - 4.0 + - ``sphinx.builders.epub3.validate_config_values()`` + + * - ``sphinx.builders.html.JSONHTMLBuilder`` + - 2.0 + - 4.0 + - ``sphinx.builders.serializinghtml.JSONHTMLBuilder`` + + * - ``sphinx.builders.html.PickleHTMLBuilder`` + - 2.0 + - 4.0 + - ``sphinx.builders.serializinghtml.PickleHTMLBuilder`` + + * - ``sphinx.builders.html.SerializingHTMLBuilder`` + - 2.0 + - 4.0 + - ``sphinx.builders.serializinghtml.SerializingHTMLBuilder`` + + * - ``sphinx.builders.html.SingleFileHTMLBuilder`` + - 2.0 + - 4.0 + - ``sphinx.builders.singlehtml.SingleFileHTMLBuilder`` + + * - ``sphinx.builders.html.WebHTMLBuilder`` + - 2.0 + - 4.0 + - ``sphinx.builders.serializinghtml.PickleHTMLBuilder`` + + * - ``sphinx.builders.htmlhelp`` + - 2.0 + - 4.0 + - ``sphinxcontrib.htmlhelp`` + + * - ``sphinx.builders.htmlhelp.HTMLHelpBuilder.open_file()`` + - 2.0 + - 4.0 + - ``open()`` + + * - ``sphinx.builders.qthelp`` + - 2.0 + - 4.0 + - ``sphinxcontrib.qthelp`` + + * - ``sphinx.cmd.quickstart.term_decode()`` + - 2.0 + - 4.0 + - N/A + + * - ``sphinx.cmd.quickstart.TERM_ENCODING`` + - 2.0 + - 4.0 + - ``sys.stdin.encoding`` + + * - ``sphinx.config.check_unicode()`` + - 2.0 + - 4.0 + - N/A + + * - ``sphinx.config.string_classes`` + - 2.0 + - 4.0 + - ``[str]`` + + * - ``sphinx.domains.cpp.DefinitionError.description`` + - 2.0 + - 4.0 + - ``str(exc)`` + + * - ``sphinx.domains.cpp.NoOldIdError.description`` + - 2.0 + - 4.0 + - ``str(exc)`` + + * - ``sphinx.domains.cpp.UnsupportedMultiCharacterCharLiteral.decoded`` + - 2.0 + - 4.0 + - ``str(exc)`` + + * - ``sphinx.ext.autosummary.Autosummary.warn()`` + - 2.0 + - 4.0 + - N/A + + * - ``sphinx.ext.autosummary.Autosummary.genopt`` + - 2.0 + - 4.0 + - N/A + + * - ``sphinx.ext.autosummary.Autosummary.warnings`` + - 2.0 + - 4.0 + - N/A + + * - ``sphinx.ext.autosummary.Autosummary.result`` + - 2.0 + - 4.0 + - N/A + + * - ``sphinx.ext.doctest.doctest_encode()`` + - 2.0 + - 4.0 + - N/A + + * - ``sphinx.ext.jsmath`` + - 2.0 + - 4.0 + - ``sphinxcontrib.jsmath`` + + * - ``sphinx.roles.abbr_role()`` + - 2.0 + - 4.0 + - ``sphinx.roles.Abbreviation`` + + * - ``sphinx.roles.emph_literal_role()`` + - 2.0 + - 4.0 + - ``sphinx.roles.EmphasizedLiteral`` + + * - ``sphinx.roles.menusel_role()`` + - 2.0 + - 4.0 + - ``sphinx.roles.GUILabel`` or ``sphinx.roles.MenuSelection`` + + * - ``sphinx.roles.index_role()`` + - 2.0 + - 4.0 + - ``sphinx.roles.Index`` + + * - ``sphinx.roles.indexmarkup_role()`` + - 2.0 + - 4.0 + - ``sphinx.roles.PEP`` or ``sphinx.roles.RFC`` + + * - ``sphinx.testing.util.remove_unicode_literal()`` + - 2.0 + - 4.0 + - N/A + + * - ``sphinx.util.attrdict`` + - 2.0 + - 4.0 + - N/A + + * - ``sphinx.util.force_decode()`` + - 2.0 + - 4.0 + - N/A + + * - ``sphinx.util.get_matching_docs()`` + - 2.0 + - 4.0 + - ``sphinx.util.get_matching_files()`` + + * - ``sphinx.util.inspect.Parameter`` + - 2.0 + - 3.0 + - N/A + + * - ``sphinx.util.jsonimpl`` + - 2.0 + - 4.0 + - ``sphinxcontrib.serializinghtml.jsonimpl`` + + * - ``sphinx.util.osutil.EEXIST`` + - 2.0 + - 4.0 + - ``errno.EEXIST`` or ``FileExistsError`` + + * - ``sphinx.util.osutil.EINVAL`` + - 2.0 + - 4.0 + - ``errno.EINVAL`` + + * - ``sphinx.util.osutil.ENOENT`` + - 2.0 + - 4.0 + - ``errno.ENOENT`` or ``FileNotFoundError`` + + * - ``sphinx.util.osutil.EPIPE`` + - 2.0 + - 4.0 + - ``errno.ENOENT`` or ``BrokenPipeError`` + + * - ``sphinx.util.osutil.walk()`` + - 2.0 + - 4.0 + - ``os.walk()`` + + * - ``sphinx.util.pycompat.NoneType`` + - 2.0 + - 4.0 + - ``sphinx.util.typing.NoneType`` + + * - ``sphinx.util.pycompat.TextIOWrapper`` + - 2.0 + - 4.0 + - ``io.TextIOWrapper`` + + * - ``sphinx.util.pycompat.UnicodeMixin`` + - 2.0 + - 4.0 + - N/A + + * - ``sphinx.util.pycompat.htmlescape()`` + - 2.0 + - 4.0 + - ``html.escape()`` + + * - ``sphinx.util.pycompat.indent()`` + - 2.0 + - 4.0 + - ``textwrap.indent()`` + + * - ``sphinx.util.pycompat.sys_encoding`` + - 2.0 + - 4.0 + - ``sys.getdefaultencoding()`` + + * - ``sphinx.util.pycompat.terminal_safe()`` + - 2.0 + - 4.0 + - ``sphinx.util.console.terminal_safe()`` + + * - ``sphinx.util.pycompat.u`` + - 2.0 + - 4.0 + - N/A + + * - ``sphinx.util.PeekableIterator`` + - 2.0 + - 4.0 + - N/A + + * - Omitting the ``filename`` argument in an overriddent + ``IndexBuilder.feed()`` method. + - 2.0 + - 4.0 + - ``IndexBuilder.feed(docname, filename, title, doctree)`` + + * - ``sphinx.writers.latex.ExtBabel`` + - 2.0 + - 4.0 + - ``sphinx.builders.latex.util.ExtBabel`` + + * - ``sphinx.writers.latex.LaTeXTranslator.babel_defmacro()`` + - 2.0 + - 4.0 + - N/A + + * - ``sphinx.application.Sphinx._setting_up_extension`` + - 2.0 + - 3.0 + - N/A + + * - The ``importer`` argument of ``sphinx.ext.autodoc.importer._MockModule`` + - 2.0 + - 3.0 + - N/A + + * - ``sphinx.ext.autodoc.importer._MockImporter`` + - 2.0 + - 3.0 + - N/A + + * - ``sphinx.io.SphinxBaseFileInput`` + - 2.0 + - 3.0 + - N/A + + * - ``sphinx.io.SphinxFileInput.supported`` + - 2.0 + - 3.0 + - N/A + + * - ``sphinx.io.SphinxRSTFileInput`` + - 2.0 + - 3.0 + - N/A + + * - ``sphinx.registry.SphinxComponentRegistry.add_source_input()`` + - 2.0 + - 3.0 + - N/A + + * - ``sphinx.writers.latex.LaTeXTranslator._make_visit_admonition()`` + - 2.0 + - 3.0 + - N/A + + * - ``sphinx.writers.latex.LaTeXTranslator.collect_footnotes()`` + - 2.0 + - 4.0 + - N/A + + * - ``sphinx.writers.texinfo.TexinfoTranslator._make_visit_admonition()`` + - 2.0 + - 3.0 + - N/A + + * - ``sphinx.writers.text.TextTranslator._make_depart_admonition()`` + - 2.0 + - 3.0 + - N/A + + * - ``sphinx.writers.latex.LaTeXTranslator.generate_numfig_format()`` + - 2.0 + - 4.0 + - N/A + + * - :rst:dir:`highlightlang` + - 1.8 + - 4.0 + - :rst:dir:`highlight` + + * - :meth:`~sphinx.application.Sphinx.add_stylesheet()` + - 1.8 + - 4.0 + - :meth:`~sphinx.application.Sphinx.add_css_file()` + + * - :meth:`~sphinx.application.Sphinx.add_javascript()` + - 1.8 + - 4.0 + - :meth:`~sphinx.application.Sphinx.add_js_file()` + + * - :confval:`autodoc_default_flags` + - 1.8 + - 4.0 + - :confval:`autodoc_default_options` + + * - ``content`` arguments of ``sphinx.util.image.guess_mimetype()`` + - 1.8 + - 3.0 + - N/A + + * - ``gettext_compact`` arguments of + ``sphinx.util.i18n.find_catalog_source_files()`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.io.SphinxI18nReader.set_lineno_for_reporter()`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.io.SphinxI18nReader.line`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.directives.other.VersionChanges`` + - 1.8 + - 3.0 + - ``sphinx.domains.changeset.VersionChanges`` + + * - ``sphinx.highlighting.PygmentsBridge.unhighlight()`` + - 1.8 + - 3.0 + - N/A + + * - ``trim_doctest_flags`` arguments of + ``sphinx.highlighting.PygmentsBridge`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.ext.mathbase`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.ext.mathbase.MathDomain`` + - 1.8 + - 3.0 + - ``sphinx.domains.math.MathDomain`` + + * - ``sphinx.ext.mathbase.MathDirective`` + - 1.8 + - 3.0 + - ``sphinx.directives.patches.MathDirective`` + + * - ``sphinx.ext.mathbase.math_role()`` + - 1.8 + - 3.0 + - ``docutils.parsers.rst.roles.math_role()`` + + * - ``sphinx.ext.mathbase.setup_math()`` + - 1.8 + - 3.0 + - :meth:`~sphinx.application.Sphinx.add_html_math_renderer()` + + * - ``sphinx.ext.mathbase.is_in_section_title()`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.ext.mathbase.get_node_equation_number()`` + - 1.8 + - 3.0 + - ``sphinx.util.math.get_node_equation_number()`` + + * - ``sphinx.ext.mathbase.wrap_displaymath()`` + - 1.8 + - 3.0 + - ``sphinx.util.math.wrap_displaymath()`` + + * - ``sphinx.ext.mathbase.math`` (node) + - 1.8 + - 3.0 + - ``docutils.nodes.math`` + + * - ``sphinx.ext.mathbase.displaymath`` (node) + - 1.8 + - 3.0 + - ``docutils.nodes.math_block`` + + * - ``sphinx.ext.mathbase.eqref`` (node) + - 1.8 + - 3.0 + - ``sphinx.builders.latex.nodes.math_reference`` + + * - ``viewcode_import`` (config value) + - 1.8 + - 3.0 + - :confval:`viewcode_follow_imported_members` + + * - ``sphinx.writers.latex.Table.caption_footnotetexts`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.latex.Table.header_footnotetexts`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.latex.LaTeXTranslator.footnotestack`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.latex.LaTeXTranslator.in_container_literal_block`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.latex.LaTeXTranslator.next_section_ids`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.latex.LaTeXTranslator.next_hyperlink_ids`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.latex.LaTeXTranslator.restrict_footnote()`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.latex.LaTeXTranslator.unrestrict_footnote()`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.latex.LaTeXTranslator.push_hyperlink_ids()`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.latex.LaTeXTranslator.pop_hyperlink_ids()`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.latex.LaTeXTranslator.bibitems`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.latex.LaTeXTranslator.hlsettingstack`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.latex.ExtBabel.get_shorthandoff()`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.html.HTMLTranslator.highlightlang()`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.html.HTMLTranslator.highlightlang_base()`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.html.HTMLTranslator.highlightlangopts()`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.html.HTMLTranslator.highlightlinenothreshold()`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.html5.HTMLTranslator.highlightlang()`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.html5.HTMLTranslator.highlightlang_base()`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.html5.HTMLTranslator.highlightlangopts()`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.html5.HTMLTranslator.highlightlinenothreshold()`` + - 1.8 + - 3.0 + - N/A + + * - ``sphinx.writers.latex.LaTeXTranslator.check_latex_elements()`` + - 1.8 + - 3.0 + - Nothing + + * - ``sphinx.application.CONFIG_FILENAME`` + - 1.8 + - 3.0 + - ``sphinx.config.CONFIG_FILENAME`` + + * - ``Config.check_unicode()`` + - 1.8 + - 3.0 + - ``sphinx.config.check_unicode()`` + + * - ``Config.check_types()`` + - 1.8 + - 3.0 + - ``sphinx.config.check_confval_types()`` + + * - ``dirname``, ``filename`` and ``tags`` arguments of + ``Config.__init__()`` + - 1.8 + - 3.0 + - ``Config.read()`` + + * - The value of :confval:`html_search_options` + - 1.8 + - 3.0 + - see :confval:`html_search_options` + + * - ``sphinx.versioning.prepare()`` + - 1.8 + - 3.0 + - ``sphinx.versioning.UIDTransform`` + + * - ``Sphinx.override_domain()`` + - 1.8 + - 3.0 + - :meth:`~sphinx.application.Sphinx.add_domain()` + + * - ``Sphinx.import_object()`` + - 1.8 + - 3.0 + - ``sphinx.util.import_object()`` + + * - ``suffix`` argument of + :meth:`~sphinx.application.Sphinx.add_source_parser()` + - 1.8 + - 3.0 + - :meth:`~sphinx.application.Sphinx.add_source_suffix()` + + + * - ``BuildEnvironment.load()`` + - 1.8 + - 3.0 + - ``pickle.load()`` + + * - ``BuildEnvironment.loads()`` + - 1.8 + - 3.0 + - ``pickle.loads()`` + + * - ``BuildEnvironment.frompickle()`` + - 1.8 + - 3.0 + - ``pickle.load()`` + + * - ``BuildEnvironment.dump()`` + - 1.8 + - 3.0 + - ``pickle.dump()`` + + * - ``BuildEnvironment.dumps()`` + - 1.8 + - 3.0 + - ``pickle.dumps()`` + + * - ``BuildEnvironment.topickle()`` + - 1.8 + - 3.0 + - ``pickle.dump()`` + + * - ``BuildEnvironment._nitpick_ignore`` + - 1.8 + - 3.0 + - :confval:`nitpick_ignore` + + * - ``BuildEnvironment.versionchanges`` + - 1.8 + - 3.0 + - N/A + + * - ``BuildEnvironment.update()`` + - 1.8 + - 3.0 + - ``Builder.read()`` + + * - ``BuildEnvironment.read_doc()`` + - 1.8 + - 3.0 + - ``Builder.read_doc()`` + + * - ``BuildEnvironment._read_serial()`` + - 1.8 + - 3.0 + - ``Builder.read()`` + + * - ``BuildEnvironment._read_parallel()`` + - 1.8 + - 3.0 + - ``Builder.read()`` + + * - ``BuildEnvironment.write_doctree()`` + - 1.8 + - 3.0 + - ``Builder.write_doctree()`` + + * - ``BuildEnvironment.note_versionchange()`` + - 1.8 + - 3.0 + - ``ChangesDomain.note_changeset()`` + + * - ``warn()`` (template helper function) + - 1.8 + - 3.0 + - ``warning()`` + + * - :confval:`source_parsers` + - 1.8 + - 3.0 + - :meth:`~sphinx.application.Sphinx.add_source_parser()` + + * - ``sphinx.util.docutils.directive_helper()`` + - 1.8 + - 3.0 + - ``Directive`` class of docutils + + * - ``sphinx.cmdline`` + - 1.8 + - 3.0 + - ``sphinx.cmd.build`` + + * - ``sphinx.make_mode`` + - 1.8 + - 3.0 + - ``sphinx.cmd.make_mode`` + + * - ``sphinx.locale.l_()`` + - 1.8 + - 3.0 + - :func:`sphinx.locale._()` + + * - ``sphinx.locale.lazy_gettext()`` + - 1.8 + - 3.0 + - :func:`sphinx.locale._()` + + * - ``sphinx.locale.mygettext()`` + - 1.8 + - 3.0 + - :func:`sphinx.locale._()` + + * - ``sphinx.util.copy_static_entry()`` + - 1.5 + - 3.0 + - ``sphinx.util.fileutil.copy_asset()`` + + * - ``sphinx.build_main()`` + - 1.7 + - 2.0 + - ``sphinx.cmd.build.build_main()`` + + * - ``sphinx.ext.intersphinx.debug()`` + - 1.7 + - 2.0 + - ``sphinx.ext.intersphinx.inspect_main()`` + + * - ``sphinx.ext.autodoc.format_annotation()`` + - 1.7 + - 2.0 + - ``sphinx.util.inspect.Signature`` + + * - ``sphinx.ext.autodoc.formatargspec()`` + - 1.7 + - 2.0 + - ``sphinx.util.inspect.Signature`` + + * - ``sphinx.ext.autodoc.AutodocReporter`` + - 1.7 + - 2.0 + - ``sphinx.util.docutils.switch_source_input()`` + + * - ``sphinx.ext.autodoc.add_documenter()`` + - 1.7 + - 2.0 + - :meth:`~sphinx.application.Sphinx.add_autodocumenter()` + + * - ``sphinx.ext.autodoc.AutoDirective._register`` + - 1.7 + - 2.0 + - :meth:`~sphinx.application.Sphinx.add_autodocumenter()` + + * - ``AutoDirective._special_attrgetters`` + - 1.7 + - 2.0 + - :meth:`~sphinx.application.Sphinx.add_autodoc_attrgetter()` + + * - ``Sphinx.warn()``, ``Sphinx.info()`` + - 1.6 + - 2.0 + - :ref:`logging-api` + + * - ``BuildEnvironment.set_warnfunc()`` + - 1.6 + - 2.0 + - :ref:`logging-api` + + * - ``BuildEnvironment.note_toctree()`` + - 1.6 + - 2.0 + - ``Toctree.note()`` (in ``sphinx.environment.adapters.toctree``) + + * - ``BuildEnvironment.get_toc_for()`` + - 1.6 + - 2.0 + - ``Toctree.get_toc_for()`` (in ``sphinx.environment.adapters.toctree``) + + * - ``BuildEnvironment.get_toctree_for()`` + - 1.6 + - 2.0 + - ``Toctree.get_toctree_for()`` (in ``sphinx.environment.adapters.toctree``) + + * - ``BuildEnvironment.create_index()`` + - 1.6 + - 2.0 + - ``IndexEntries.create_index()`` (in ``sphinx.environment.adapters.indexentries``) + + * - ``sphinx.websupport`` + - 1.6 + - 2.0 + - `sphinxcontrib-websupport `_ + + * - ``StandaloneHTMLBuilder.css_files`` + - 1.6 + - 2.0 + - :meth:`~sphinx.application.Sphinx.add_stylesheet()` + + * - ``document.settings.gettext_compact`` + - 1.8 + - 1.8 + - :confval:`gettext_compact` + + * - ``Sphinx.status_iterator()`` + - 1.6 + - 1.7 + - ``sphinx.util.status_iterator()`` + + * - ``Sphinx.old_status_iterator()`` + - 1.6 + - 1.7 + - ``sphinx.util.old_status_iterator()`` + + * - ``Sphinx._directive_helper()`` + - 1.6 + - 1.7 + - ``sphinx.util.docutils.directive_helper()`` + + * - ``sphinx.util.compat.Directive`` + - 1.6 + - 1.7 + - ``docutils.parsers.rst.Directive`` + + * - ``sphinx.util.compat.docutils_version`` + - 1.6 + - 1.7 + - ``sphinx.util.docutils.__version_info__`` + +.. note:: On deprecating on public APIs (internal functions and classes), + we also follow the policy as much as possible. diff --git a/doc/extdev/index.rst b/doc/extdev/index.rst index a8c016d0f..fca8fbba3 100644 --- a/doc/extdev/index.rst +++ b/doc/extdev/index.rst @@ -205,941 +205,4 @@ APIs used for writing extensions logging i18n utils - -.. _dev-deprecated-apis: - -Deprecated APIs ---------------- - -On developing Sphinx, we are always careful to the compatibility of our APIs. -But, sometimes, the change of interface are needed for some reasons. In such -cases, we've marked them as deprecated. And they are kept during the two -major versions (for more details, please see :ref:`deprecation-policy`). - -The following is a list of deprecated interfaces. - -.. tabularcolumns:: |>{\raggedright}\Y{.4}|>{\centering}\Y{.1}|>{\centering}\Y{.12}|>{\raggedright\arraybackslash}\Y{.38}| - -.. |LaTeXHyphenate| raw:: latex - - \hspace{0pt} - -.. list-table:: deprecated APIs - :header-rows: 1 - :class: deprecated - :widths: 40, 10, 10, 40 - - * - Target - - |LaTeXHyphenate|\ Deprecated - - (will be) Removed - - Alternatives - - * - ``sphinx.environment.NoUri`` - - 2.1 - - 4.0 - - ``sphinx.errors.NoUri`` - - * - ``sphinx.ext.autodoc.importer.MockFinder`` - - 2.1 - - 4.0 - - ``sphinx.ext.autodoc.mock.MockFinder`` - - * - ``sphinx.ext.autodoc.importer.MockLoader`` - - 2.1 - - 4.0 - - ``sphinx.ext.autodoc.mock.MockLoader`` - - * - ``sphinx.ext.autodoc.importer.mock()`` - - 2.1 - - 4.0 - - ``sphinx.ext.autodoc.mock.mock()`` - - * - ``sphinx.ext.autosummary.autolink_role()`` - - 2.1 - - 4.0 - - ``sphinx.ext.autosummary.AutoLink`` - - * - ``sphinx.util.node.find_source_node()`` - - 2.1 - - 4.0 - - ``sphinx.util.node.get_node_source()`` - - * - ``sphinx.util.i18n.find_catalog()`` - - 2.1 - - 4.0 - - ``sphinx.util.i18n.docname_to_domain()`` - - * - ``sphinx.util.i18n.find_catalog_files()`` - - 2.1 - - 4.0 - - ``sphinx.util.i18n.CatalogRepository`` - - * - ``sphinx.util.i18n.find_catalog_source_files()`` - - 2.1 - - 4.0 - - ``sphinx.util.i18n.CatalogRepository`` - - * - ``encoding`` argument of ``autodoc.Documenter.get_doc()``, - ``autodoc.DocstringSignatureMixin.get_doc()``, - ``autodoc.DocstringSignatureMixin._find_signature()``, and - ``autodoc.ClassDocumenter.get_doc()`` - - 2.0 - - 4.0 - - N/A - - * - arguments of ``EpubBuilder.build_mimetype()``, - ``EpubBuilder.build_container()``, ``EpubBuilder.build_content()``, - ``EpubBuilder.build_toc()`` and ``EpubBuilder.build_epub()`` - - 2.0 - - 4.0 - - N/A - - * - arguments of ``Epub3Builder.build_navigation_doc()`` - - 2.0 - - 4.0 - - N/A - - * - ``nodetype`` argument of - ``sphinx.search.WordCollector.is_meta_keywords()`` - - 2.0 - - 4.0 - - N/A - - * - ``suffix`` argument of ``BuildEnvironment.doc2path()`` - - 2.0 - - 4.0 - - N/A - - * - string style ``base`` argument of ``BuildEnvironment.doc2path()`` - - 2.0 - - 4.0 - - ``os.path.join()`` - - * - ``sphinx.addnodes.abbreviation`` - - 2.0 - - 4.0 - - ``docutils.nodes.abbreviation`` - - * - ``sphinx.builders.applehelp`` - - 2.0 - - 4.0 - - ``sphinxcontrib.applehelp`` - - * - ``sphinx.builders.devhelp`` - - 2.0 - - 4.0 - - ``sphinxcontrib.devhelp`` - - * - ``sphinx.builders.epub3.Epub3Builder.validate_config_value()`` - - 2.0 - - 4.0 - - ``sphinx.builders.epub3.validate_config_values()`` - - * - ``sphinx.builders.html.JSONHTMLBuilder`` - - 2.0 - - 4.0 - - ``sphinx.builders.serializinghtml.JSONHTMLBuilder`` - - * - ``sphinx.builders.html.PickleHTMLBuilder`` - - 2.0 - - 4.0 - - ``sphinx.builders.serializinghtml.PickleHTMLBuilder`` - - * - ``sphinx.builders.html.SerializingHTMLBuilder`` - - 2.0 - - 4.0 - - ``sphinx.builders.serializinghtml.SerializingHTMLBuilder`` - - * - ``sphinx.builders.html.SingleFileHTMLBuilder`` - - 2.0 - - 4.0 - - ``sphinx.builders.singlehtml.SingleFileHTMLBuilder`` - - * - ``sphinx.builders.html.WebHTMLBuilder`` - - 2.0 - - 4.0 - - ``sphinx.builders.serializinghtml.PickleHTMLBuilder`` - - * - ``sphinx.builders.htmlhelp`` - - 2.0 - - 4.0 - - ``sphinxcontrib.htmlhelp`` - - * - ``sphinx.builders.htmlhelp.HTMLHelpBuilder.open_file()`` - - 2.0 - - 4.0 - - ``open()`` - - * - ``sphinx.builders.qthelp`` - - 2.0 - - 4.0 - - ``sphinxcontrib.qthelp`` - - * - ``sphinx.cmd.quickstart.term_decode()`` - - 2.0 - - 4.0 - - N/A - - * - ``sphinx.cmd.quickstart.TERM_ENCODING`` - - 2.0 - - 4.0 - - ``sys.stdin.encoding`` - - * - ``sphinx.config.check_unicode()`` - - 2.0 - - 4.0 - - N/A - - * - ``sphinx.config.string_classes`` - - 2.0 - - 4.0 - - ``[str]`` - - * - ``sphinx.domains.cpp.DefinitionError.description`` - - 2.0 - - 4.0 - - ``str(exc)`` - - * - ``sphinx.domains.cpp.NoOldIdError.description`` - - 2.0 - - 4.0 - - ``str(exc)`` - - * - ``sphinx.domains.cpp.UnsupportedMultiCharacterCharLiteral.decoded`` - - 2.0 - - 4.0 - - ``str(exc)`` - - * - ``sphinx.ext.autosummary.Autosummary.warn()`` - - 2.0 - - 4.0 - - N/A - - * - ``sphinx.ext.autosummary.Autosummary.genopt`` - - 2.0 - - 4.0 - - N/A - - * - ``sphinx.ext.autosummary.Autosummary.warnings`` - - 2.0 - - 4.0 - - N/A - - * - ``sphinx.ext.autosummary.Autosummary.result`` - - 2.0 - - 4.0 - - N/A - - * - ``sphinx.ext.doctest.doctest_encode()`` - - 2.0 - - 4.0 - - N/A - - * - ``sphinx.ext.jsmath`` - - 2.0 - - 4.0 - - ``sphinxcontrib.jsmath`` - - * - ``sphinx.roles.abbr_role()`` - - 2.0 - - 4.0 - - ``sphinx.roles.Abbreviation`` - - * - ``sphinx.roles.emph_literal_role()`` - - 2.0 - - 4.0 - - ``sphinx.roles.EmphasizedLiteral`` - - * - ``sphinx.roles.menusel_role()`` - - 2.0 - - 4.0 - - ``sphinx.roles.GUILabel`` or ``sphinx.roles.MenuSelection`` - - * - ``sphinx.roles.index_role()`` - - 2.0 - - 4.0 - - ``sphinx.roles.Index`` - - * - ``sphinx.roles.indexmarkup_role()`` - - 2.0 - - 4.0 - - ``sphinx.roles.PEP`` or ``sphinx.roles.RFC`` - - * - ``sphinx.testing.util.remove_unicode_literal()`` - - 2.0 - - 4.0 - - N/A - - * - ``sphinx.util.attrdict`` - - 2.0 - - 4.0 - - N/A - - * - ``sphinx.util.force_decode()`` - - 2.0 - - 4.0 - - N/A - - * - ``sphinx.util.get_matching_docs()`` - - 2.0 - - 4.0 - - ``sphinx.util.get_matching_files()`` - - * - ``sphinx.util.inspect.Parameter`` - - 2.0 - - 3.0 - - N/A - - * - ``sphinx.util.jsonimpl`` - - 2.0 - - 4.0 - - ``sphinxcontrib.serializinghtml.jsonimpl`` - - * - ``sphinx.util.osutil.EEXIST`` - - 2.0 - - 4.0 - - ``errno.EEXIST`` or ``FileExistsError`` - - * - ``sphinx.util.osutil.EINVAL`` - - 2.0 - - 4.0 - - ``errno.EINVAL`` - - * - ``sphinx.util.osutil.ENOENT`` - - 2.0 - - 4.0 - - ``errno.ENOENT`` or ``FileNotFoundError`` - - * - ``sphinx.util.osutil.EPIPE`` - - 2.0 - - 4.0 - - ``errno.ENOENT`` or ``BrokenPipeError`` - - * - ``sphinx.util.osutil.walk()`` - - 2.0 - - 4.0 - - ``os.walk()`` - - * - ``sphinx.util.pycompat.NoneType`` - - 2.0 - - 4.0 - - ``sphinx.util.typing.NoneType`` - - * - ``sphinx.util.pycompat.TextIOWrapper`` - - 2.0 - - 4.0 - - ``io.TextIOWrapper`` - - * - ``sphinx.util.pycompat.UnicodeMixin`` - - 2.0 - - 4.0 - - N/A - - * - ``sphinx.util.pycompat.htmlescape()`` - - 2.0 - - 4.0 - - ``html.escape()`` - - * - ``sphinx.util.pycompat.indent()`` - - 2.0 - - 4.0 - - ``textwrap.indent()`` - - * - ``sphinx.util.pycompat.sys_encoding`` - - 2.0 - - 4.0 - - ``sys.getdefaultencoding()`` - - * - ``sphinx.util.pycompat.terminal_safe()`` - - 2.0 - - 4.0 - - ``sphinx.util.console.terminal_safe()`` - - * - ``sphinx.util.pycompat.u`` - - 2.0 - - 4.0 - - N/A - - * - ``sphinx.util.PeekableIterator`` - - 2.0 - - 4.0 - - N/A - - * - Omitting the ``filename`` argument in an overriddent - ``IndexBuilder.feed()`` method. - - 2.0 - - 4.0 - - ``IndexBuilder.feed(docname, filename, title, doctree)`` - - * - ``sphinx.writers.latex.ExtBabel`` - - 2.0 - - 4.0 - - ``sphinx.builders.latex.util.ExtBabel`` - - * - ``sphinx.writers.latex.LaTeXTranslator.babel_defmacro()`` - - 2.0 - - 4.0 - - N/A - - * - ``sphinx.application.Sphinx._setting_up_extension`` - - 2.0 - - 3.0 - - N/A - - * - The ``importer`` argument of ``sphinx.ext.autodoc.importer._MockModule`` - - 2.0 - - 3.0 - - N/A - - * - ``sphinx.ext.autodoc.importer._MockImporter`` - - 2.0 - - 3.0 - - N/A - - * - ``sphinx.io.SphinxBaseFileInput`` - - 2.0 - - 3.0 - - N/A - - * - ``sphinx.io.SphinxFileInput.supported`` - - 2.0 - - 3.0 - - N/A - - * - ``sphinx.io.SphinxRSTFileInput`` - - 2.0 - - 3.0 - - N/A - - * - ``sphinx.registry.SphinxComponentRegistry.add_source_input()`` - - 2.0 - - 3.0 - - N/A - - * - ``sphinx.writers.latex.LaTeXTranslator._make_visit_admonition()`` - - 2.0 - - 3.0 - - N/A - - * - ``sphinx.writers.latex.LaTeXTranslator.collect_footnotes()`` - - 2.0 - - 4.0 - - N/A - - * - ``sphinx.writers.texinfo.TexinfoTranslator._make_visit_admonition()`` - - 2.0 - - 3.0 - - N/A - - * - ``sphinx.writers.text.TextTranslator._make_depart_admonition()`` - - 2.0 - - 3.0 - - N/A - - * - ``sphinx.writers.latex.LaTeXTranslator.generate_numfig_format()`` - - 2.0 - - 4.0 - - N/A - - * - :rst:dir:`highlightlang` - - 1.8 - - 4.0 - - :rst:dir:`highlight` - - * - :meth:`~sphinx.application.Sphinx.add_stylesheet()` - - 1.8 - - 4.0 - - :meth:`~sphinx.application.Sphinx.add_css_file()` - - * - :meth:`~sphinx.application.Sphinx.add_javascript()` - - 1.8 - - 4.0 - - :meth:`~sphinx.application.Sphinx.add_js_file()` - - * - :confval:`autodoc_default_flags` - - 1.8 - - 4.0 - - :confval:`autodoc_default_options` - - * - ``content`` arguments of ``sphinx.util.image.guess_mimetype()`` - - 1.8 - - 3.0 - - N/A - - * - ``gettext_compact`` arguments of - ``sphinx.util.i18n.find_catalog_source_files()`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.io.SphinxI18nReader.set_lineno_for_reporter()`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.io.SphinxI18nReader.line`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.directives.other.VersionChanges`` - - 1.8 - - 3.0 - - ``sphinx.domains.changeset.VersionChanges`` - - * - ``sphinx.highlighting.PygmentsBridge.unhighlight()`` - - 1.8 - - 3.0 - - N/A - - * - ``trim_doctest_flags`` arguments of - ``sphinx.highlighting.PygmentsBridge`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.ext.mathbase`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.ext.mathbase.MathDomain`` - - 1.8 - - 3.0 - - ``sphinx.domains.math.MathDomain`` - - * - ``sphinx.ext.mathbase.MathDirective`` - - 1.8 - - 3.0 - - ``sphinx.directives.patches.MathDirective`` - - * - ``sphinx.ext.mathbase.math_role()`` - - 1.8 - - 3.0 - - ``docutils.parsers.rst.roles.math_role()`` - - * - ``sphinx.ext.mathbase.setup_math()`` - - 1.8 - - 3.0 - - :meth:`~sphinx.application.Sphinx.add_html_math_renderer()` - - * - ``sphinx.ext.mathbase.is_in_section_title()`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.ext.mathbase.get_node_equation_number()`` - - 1.8 - - 3.0 - - ``sphinx.util.math.get_node_equation_number()`` - - * - ``sphinx.ext.mathbase.wrap_displaymath()`` - - 1.8 - - 3.0 - - ``sphinx.util.math.wrap_displaymath()`` - - * - ``sphinx.ext.mathbase.math`` (node) - - 1.8 - - 3.0 - - ``docutils.nodes.math`` - - * - ``sphinx.ext.mathbase.displaymath`` (node) - - 1.8 - - 3.0 - - ``docutils.nodes.math_block`` - - * - ``sphinx.ext.mathbase.eqref`` (node) - - 1.8 - - 3.0 - - ``sphinx.builders.latex.nodes.math_reference`` - - * - ``viewcode_import`` (config value) - - 1.8 - - 3.0 - - :confval:`viewcode_follow_imported_members` - - * - ``sphinx.writers.latex.Table.caption_footnotetexts`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.latex.Table.header_footnotetexts`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.latex.LaTeXTranslator.footnotestack`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.latex.LaTeXTranslator.in_container_literal_block`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.latex.LaTeXTranslator.next_section_ids`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.latex.LaTeXTranslator.next_hyperlink_ids`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.latex.LaTeXTranslator.restrict_footnote()`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.latex.LaTeXTranslator.unrestrict_footnote()`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.latex.LaTeXTranslator.push_hyperlink_ids()`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.latex.LaTeXTranslator.pop_hyperlink_ids()`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.latex.LaTeXTranslator.bibitems`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.latex.LaTeXTranslator.hlsettingstack`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.latex.ExtBabel.get_shorthandoff()`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.html.HTMLTranslator.highlightlang()`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.html.HTMLTranslator.highlightlang_base()`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.html.HTMLTranslator.highlightlangopts()`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.html.HTMLTranslator.highlightlinenothreshold()`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.html5.HTMLTranslator.highlightlang()`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.html5.HTMLTranslator.highlightlang_base()`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.html5.HTMLTranslator.highlightlangopts()`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.html5.HTMLTranslator.highlightlinenothreshold()`` - - 1.8 - - 3.0 - - N/A - - * - ``sphinx.writers.latex.LaTeXTranslator.check_latex_elements()`` - - 1.8 - - 3.0 - - Nothing - - * - ``sphinx.application.CONFIG_FILENAME`` - - 1.8 - - 3.0 - - ``sphinx.config.CONFIG_FILENAME`` - - * - ``Config.check_unicode()`` - - 1.8 - - 3.0 - - ``sphinx.config.check_unicode()`` - - * - ``Config.check_types()`` - - 1.8 - - 3.0 - - ``sphinx.config.check_confval_types()`` - - * - ``dirname``, ``filename`` and ``tags`` arguments of - ``Config.__init__()`` - - 1.8 - - 3.0 - - ``Config.read()`` - - * - The value of :confval:`html_search_options` - - 1.8 - - 3.0 - - see :confval:`html_search_options` - - * - ``sphinx.versioning.prepare()`` - - 1.8 - - 3.0 - - ``sphinx.versioning.UIDTransform`` - - * - ``Sphinx.override_domain()`` - - 1.8 - - 3.0 - - :meth:`~sphinx.application.Sphinx.add_domain()` - - * - ``Sphinx.import_object()`` - - 1.8 - - 3.0 - - ``sphinx.util.import_object()`` - - * - ``suffix`` argument of - :meth:`~sphinx.application.Sphinx.add_source_parser()` - - 1.8 - - 3.0 - - :meth:`~sphinx.application.Sphinx.add_source_suffix()` - - - * - ``BuildEnvironment.load()`` - - 1.8 - - 3.0 - - ``pickle.load()`` - - * - ``BuildEnvironment.loads()`` - - 1.8 - - 3.0 - - ``pickle.loads()`` - - * - ``BuildEnvironment.frompickle()`` - - 1.8 - - 3.0 - - ``pickle.load()`` - - * - ``BuildEnvironment.dump()`` - - 1.8 - - 3.0 - - ``pickle.dump()`` - - * - ``BuildEnvironment.dumps()`` - - 1.8 - - 3.0 - - ``pickle.dumps()`` - - * - ``BuildEnvironment.topickle()`` - - 1.8 - - 3.0 - - ``pickle.dump()`` - - * - ``BuildEnvironment._nitpick_ignore`` - - 1.8 - - 3.0 - - :confval:`nitpick_ignore` - - * - ``BuildEnvironment.versionchanges`` - - 1.8 - - 3.0 - - N/A - - * - ``BuildEnvironment.update()`` - - 1.8 - - 3.0 - - ``Builder.read()`` - - * - ``BuildEnvironment.read_doc()`` - - 1.8 - - 3.0 - - ``Builder.read_doc()`` - - * - ``BuildEnvironment._read_serial()`` - - 1.8 - - 3.0 - - ``Builder.read()`` - - * - ``BuildEnvironment._read_parallel()`` - - 1.8 - - 3.0 - - ``Builder.read()`` - - * - ``BuildEnvironment.write_doctree()`` - - 1.8 - - 3.0 - - ``Builder.write_doctree()`` - - * - ``BuildEnvironment.note_versionchange()`` - - 1.8 - - 3.0 - - ``ChangesDomain.note_changeset()`` - - * - ``warn()`` (template helper function) - - 1.8 - - 3.0 - - ``warning()`` - - * - :confval:`source_parsers` - - 1.8 - - 3.0 - - :meth:`~sphinx.application.Sphinx.add_source_parser()` - - * - ``sphinx.util.docutils.directive_helper()`` - - 1.8 - - 3.0 - - ``Directive`` class of docutils - - * - ``sphinx.cmdline`` - - 1.8 - - 3.0 - - ``sphinx.cmd.build`` - - * - ``sphinx.make_mode`` - - 1.8 - - 3.0 - - ``sphinx.cmd.make_mode`` - - * - ``sphinx.locale.l_()`` - - 1.8 - - 3.0 - - :func:`sphinx.locale._()` - - * - ``sphinx.locale.lazy_gettext()`` - - 1.8 - - 3.0 - - :func:`sphinx.locale._()` - - * - ``sphinx.locale.mygettext()`` - - 1.8 - - 3.0 - - :func:`sphinx.locale._()` - - * - ``sphinx.util.copy_static_entry()`` - - 1.5 - - 3.0 - - ``sphinx.util.fileutil.copy_asset()`` - - * - ``sphinx.build_main()`` - - 1.7 - - 2.0 - - ``sphinx.cmd.build.build_main()`` - - * - ``sphinx.ext.intersphinx.debug()`` - - 1.7 - - 2.0 - - ``sphinx.ext.intersphinx.inspect_main()`` - - * - ``sphinx.ext.autodoc.format_annotation()`` - - 1.7 - - 2.0 - - ``sphinx.util.inspect.Signature`` - - * - ``sphinx.ext.autodoc.formatargspec()`` - - 1.7 - - 2.0 - - ``sphinx.util.inspect.Signature`` - - * - ``sphinx.ext.autodoc.AutodocReporter`` - - 1.7 - - 2.0 - - ``sphinx.util.docutils.switch_source_input()`` - - * - ``sphinx.ext.autodoc.add_documenter()`` - - 1.7 - - 2.0 - - :meth:`~sphinx.application.Sphinx.add_autodocumenter()` - - * - ``sphinx.ext.autodoc.AutoDirective._register`` - - 1.7 - - 2.0 - - :meth:`~sphinx.application.Sphinx.add_autodocumenter()` - - * - ``AutoDirective._special_attrgetters`` - - 1.7 - - 2.0 - - :meth:`~sphinx.application.Sphinx.add_autodoc_attrgetter()` - - * - ``Sphinx.warn()``, ``Sphinx.info()`` - - 1.6 - - 2.0 - - :ref:`logging-api` - - * - ``BuildEnvironment.set_warnfunc()`` - - 1.6 - - 2.0 - - :ref:`logging-api` - - * - ``BuildEnvironment.note_toctree()`` - - 1.6 - - 2.0 - - ``Toctree.note()`` (in ``sphinx.environment.adapters.toctree``) - - * - ``BuildEnvironment.get_toc_for()`` - - 1.6 - - 2.0 - - ``Toctree.get_toc_for()`` (in ``sphinx.environment.adapters.toctree``) - - * - ``BuildEnvironment.get_toctree_for()`` - - 1.6 - - 2.0 - - ``Toctree.get_toctree_for()`` (in ``sphinx.environment.adapters.toctree``) - - * - ``BuildEnvironment.create_index()`` - - 1.6 - - 2.0 - - ``IndexEntries.create_index()`` (in ``sphinx.environment.adapters.indexentries``) - - * - ``sphinx.websupport`` - - 1.6 - - 2.0 - - `sphinxcontrib-websupport `_ - - * - ``StandaloneHTMLBuilder.css_files`` - - 1.6 - - 2.0 - - :meth:`~sphinx.application.Sphinx.add_stylesheet()` - - * - ``document.settings.gettext_compact`` - - 1.8 - - 1.8 - - :confval:`gettext_compact` - - * - ``Sphinx.status_iterator()`` - - 1.6 - - 1.7 - - ``sphinx.util.status_iterator()`` - - * - ``Sphinx.old_status_iterator()`` - - 1.6 - - 1.7 - - ``sphinx.util.old_status_iterator()`` - - * - ``Sphinx._directive_helper()`` - - 1.6 - - 1.7 - - ``sphinx.util.docutils.directive_helper()`` - - * - ``sphinx.util.compat.Directive`` - - 1.6 - - 1.7 - - ``docutils.parsers.rst.Directive`` - - * - ``sphinx.util.compat.docutils_version`` - - 1.6 - - 1.7 - - ``sphinx.util.docutils.__version_info__`` - -.. note:: On deprecating on public APIs (internal functions and classes), - we also follow the policy as much as possible. + deprecated From cca029a840f15375dc02c96478000ae9e82b0c1d Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 9 Mar 2019 19:45:22 +0900 Subject: [PATCH 070/121] Update comment for patch to Element.copy() --- sphinx/util/nodes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/sphinx/util/nodes.py b/sphinx/util/nodes.py index 391229280..60e0144b0 100644 --- a/sphinx/util/nodes.py +++ b/sphinx/util/nodes.py @@ -528,6 +528,7 @@ def process_only_nodes(document, tags): # monkey-patch Element.copy to copy the rawsource and line +# for docutils-0.14 or older versions. def _new_copy(self): # type: (nodes.Element) -> nodes.Element From c0755bf5824d3ab2389901868c6d6d1336de7d06 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 9 Mar 2019 15:37:50 +0900 Subject: [PATCH 071/121] refactor CitationReferences transform --- sphinx/io.py | 6 ++--- sphinx/transforms/__init__.py | 43 ++++++++++++++++++++--------------- 2 files changed, 28 insertions(+), 21 deletions(-) diff --git a/sphinx/io.py b/sphinx/io.py index 368f661d5..00fc2bf1a 100644 --- a/sphinx/io.py +++ b/sphinx/io.py @@ -20,7 +20,7 @@ from docutils.writers import UnfilteredWriter from sphinx.deprecation import RemovedInSphinx30Warning from sphinx.transforms import ( - ApplySourceWorkaround, ExtraTranslatableNodes, CitationReferences, + ApplySourceWorkaround, ExtraTranslatableNodes, SmartQuotesSkipper, CitationReferences, DefaultSubstitutions, MoveModuleTargets, HandleCodeBlocks, SortIds, FigureAligner, AutoNumbering, AutoIndexUpgrader, FilterSystemMessages, UnreferencedFootnotesDetector, SphinxSmartQuotes, DoctreeReadEvent, ManpageLink @@ -99,7 +99,7 @@ class SphinxStandaloneReader(SphinxBaseReader): RemoveTranslatableInline, FilterSystemMessages, RefOnlyBulletListTransform, UnreferencedFootnotesDetector, SphinxSmartQuotes, ManpageLink, SphinxDomains, SubstitutionDefinitionsRemover, DoctreeReadEvent, - UIDTransform] + UIDTransform, SmartQuotesSkipper] def __init__(self, app, *args, **kwargs): # type: (Sphinx, Any, Any) -> None @@ -141,7 +141,7 @@ class SphinxI18nReader(SphinxBaseReader): AutoNumbering, SortIds, RemoveTranslatableInline, FilterSystemMessages, RefOnlyBulletListTransform, UnreferencedFootnotesDetector, SphinxSmartQuotes, ManpageLink, - SubstitutionDefinitionsRemover] + SubstitutionDefinitionsRemover, SmartQuotesSkipper] def set_lineno_for_reporter(self, lineno): # type: (int) -> None diff --git a/sphinx/transforms/__init__.py b/sphinx/transforms/__init__.py index 6f513377b..dd7a4c04f 100644 --- a/sphinx/transforms/__init__.py +++ b/sphinx/transforms/__init__.py @@ -23,7 +23,9 @@ from sphinx.locale import _, __ from sphinx.util import logging from sphinx.util.docutils import new_document from sphinx.util.i18n import format_date -from sphinx.util.nodes import NodeMatcher, apply_source_workaround, is_smartquotable +from sphinx.util.nodes import ( + NodeMatcher, apply_source_workaround, copy_source_info, is_smartquotable +) if False: # For type annotation @@ -198,6 +200,18 @@ class SortIds(SphinxTransform): node['ids'] = node['ids'][1:] + [node['ids'][0]] +class SmartQuotesSkipper(SphinxTransform): + """Mark specific nodes as not smartquoted.""" + default_priority = 619 + + def apply(self, **kwargs): + # type: (Any) -> None + # citation labels + for node in self.document.traverse(nodes.citation): + label = cast(nodes.label, node[0]) + label['support_smartquotes'] = False + + class CitationReferences(SphinxTransform): """ Replace citation references by pending_xref nodes before the default @@ -207,23 +221,16 @@ class CitationReferences(SphinxTransform): def apply(self, **kwargs): # type: (Any) -> None - # mark citation labels as not smartquoted - for citation in self.document.traverse(nodes.citation): - label = cast(nodes.label, citation[0]) - label['support_smartquotes'] = False - - for citation_ref in self.document.traverse(nodes.citation_reference): - cittext = citation_ref.astext() - refnode = addnodes.pending_xref(cittext, refdomain='std', reftype='citation', - reftarget=cittext, refwarn=True, - support_smartquotes=False, - ids=citation_ref["ids"]) - refnode.source = citation_ref.source or citation_ref.parent.source - refnode.line = citation_ref.line or citation_ref.parent.line - refnode += nodes.inline(cittext, '[%s]' % cittext) - for class_name in citation_ref.attributes.get('classes', []): - refnode['classes'].append(class_name) - citation_ref.parent.replace(citation_ref, refnode) + for node in self.document.traverse(nodes.citation_reference): + target = node.astext() + ref = addnodes.pending_xref(target, refdomain='std', reftype='citation', + reftarget=target, refwarn=True, + support_smartquotes=False, + ids=node["ids"], + classes=node.get('classes', [])) + ref += nodes.inline(target, '[%s]' % target) + copy_source_info(node, ref) + node.replace_self(ref) TRANSLATABLE_NODES = { From 05d3e37ef798fc3ea621f973e83211102fa3eab8 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA Date: Sat, 9 Mar 2019 17:41:12 +0900 Subject: [PATCH 072/121] Fix #6149: LaTeX: :index: role titles causes build error of LaTeX --- CHANGES | 2 ++ sphinx/builders/latex/__init__.py | 5 +-- sphinx/builders/latex/transforms.py | 37 ++++++++++++++++++++ tests/roots/test-index_on_title/conf.py | 0 tests/roots/test-index_on_title/contents.rst | 5 +++ tests/test_build_latex.py | 11 +++++- 6 files changed, 57 insertions(+), 3 deletions(-) create mode 100644 tests/roots/test-index_on_title/conf.py create mode 100644 tests/roots/test-index_on_title/contents.rst diff --git a/CHANGES b/CHANGES index ffc8b8b32..0b2c97c7b 100644 --- a/CHANGES +++ b/CHANGES @@ -21,6 +21,8 @@ Bugs fixed * #6046: LaTeX: ``TypeError`` is raised when invalid latex_elements given * #6067: LaTeX: images having a target are concatenated to next line * #6067: LaTeX: images having a target are not aligned even if specified +* #6149: LaTeX: ``:index:`` role in titles causes ``Use of \@icentercr doesn't + match its definition`` error on latexpdf build * #6019: imgconverter: Including multipage PDF fails * #6047: autodoc: ``autofunction`` emits a warning for method objects * #6028: graphviz: Ensure the graphviz filenames are reproducible diff --git a/sphinx/builders/latex/__init__.py b/sphinx/builders/latex/__init__.py index 4ab408064..0734f9e53 100644 --- a/sphinx/builders/latex/__init__.py +++ b/sphinx/builders/latex/__init__.py @@ -20,7 +20,7 @@ from sphinx.builders import Builder from sphinx.builders.latex.transforms import ( BibliographyTransform, CitationReferenceTransform, MathReferenceTransform, FootnoteDocnameUpdater, LaTeXFootnoteTransform, LiteralBlockTransform, - ShowUrlsTransform, DocumentTargetTransform, + ShowUrlsTransform, DocumentTargetTransform, IndexInSectionTitleTransform, ) from sphinx.config import string_classes, ENUM from sphinx.environment import NoUri @@ -284,7 +284,8 @@ class LaTeXBuilder(Builder): ShowUrlsTransform, LaTeXFootnoteTransform, LiteralBlockTransform, - DocumentTargetTransform]) + DocumentTargetTransform, + IndexInSectionTitleTransform]) transformer.apply_transforms() def finish(self): diff --git a/sphinx/builders/latex/transforms.py b/sphinx/builders/latex/transforms.py index ca3e64b70..dcd07a3af 100644 --- a/sphinx/builders/latex/transforms.py +++ b/sphinx/builders/latex/transforms.py @@ -596,3 +596,40 @@ class DocumentTargetTransform(SphinxTransform): section = node.next_node(nodes.section) if section: section['ids'].append(':doc') # special label for :doc: + + +class IndexInSectionTitleTransform(SphinxTransform): + """Move index nodes in section title to outside of the title. + + LaTeX index macro is not compatible with some handling of section titles + such as uppercasing done on LaTeX side (cf. fncychap handling of ``\\chapter``). + Moving the index node to after the title node fixes that. + + Before:: + +
+ + blah blah blah + + blah blah blah + ... + + After:: + +
+ + blah blah blah + <index entries=[...]/> + <paragraph> + blah blah blah + ... + """ + default_priority = 400 + + def apply(self): + for node in self.document.traverse(nodes.title): + if isinstance(node.parent, nodes.section): + for i, index in enumerate(node.traverse(addnodes.index)): + # move the index node next to the section title + node.remove(index) + node.parent.insert(i + 1, index) diff --git a/tests/roots/test-index_on_title/conf.py b/tests/roots/test-index_on_title/conf.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/roots/test-index_on_title/contents.rst b/tests/roots/test-index_on_title/contents.rst new file mode 100644 index 000000000..8256c42d7 --- /dev/null +++ b/tests/roots/test-index_on_title/contents.rst @@ -0,0 +1,5 @@ +index_on_title +============== + +Test for :index:`index` in top level title +------------------------------------------ diff --git a/tests/test_build_latex.py b/tests/test_build_latex.py index 03558cd92..b549404db 100644 --- a/tests/test_build_latex.py +++ b/tests/test_build_latex.py @@ -1349,6 +1349,15 @@ def test_latex_labels(app, status, warning): r'\label{\detokenize{otherdoc:otherdoc}}' r'\label{\detokenize{otherdoc::doc}}' in result) - # Embeded standalone hyperlink reference (refs: #5948) assert result.count(r'\label{\detokenize{index:section1}}') == 1 + + +@pytest.mark.sphinx('latex', testroot='index_on_title') +def test_index_on_title(app, status, warning): + app.builder.build_all() + result = (app.outdir / 'Python.tex').text(encoding='utf8') + assert ('\\chapter{Test for index in top level title}\n' + '\\label{\\detokenize{contents:test-for-index-in-top-level-title}}' + '\\index{index@\\spxentry{index}}\n' + in result) From fc9968710561582752d5038618dd0dbfce779734 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sun, 10 Mar 2019 02:03:11 +0900 Subject: [PATCH 073/121] Fix #3859: manpage: code-block captions are not displayed correctly --- CHANGES | 1 + sphinx/writers/manpage.py | 15 +++++++++++++++ tests/test_build_manpage.py | 21 +++++++++++++++++++++ 3 files changed, 37 insertions(+) diff --git a/CHANGES b/CHANGES index 0b2c97c7b..f4bddaf25 100644 --- a/CHANGES +++ b/CHANGES @@ -30,6 +30,7 @@ Bugs fixed * #6136: ``:name:`` option for ``math`` directive causes a crash * #6139: intersphinx: ValueError on failure reporting * #6135: changes: Fix UnboundLocalError when any module found +* #3859: manpage: code-block captions are not displayed correctly Testing -------- diff --git a/sphinx/writers/manpage.py b/sphinx/writers/manpage.py index 9ce9f7293..20b1d07e1 100644 --- a/sphinx/writers/manpage.py +++ b/sphinx/writers/manpage.py @@ -462,6 +462,21 @@ class ManualPageTranslator(BaseTranslator): # type: (nodes.Node) -> None return self.depart_strong(node) + # overwritten: handle section titles better than in 0.6 release + def visit_caption(self, node): + # type: (nodes.Element) -> None + if isinstance(node.parent, nodes.container) and node.parent.get('literal_block'): + self.body.append('.sp\n') + else: + BaseTranslator.visit_caption(self, node) + + def depart_caption(self, node): + # type: (nodes.Element) -> None + if isinstance(node.parent, nodes.container) and node.parent.get('literal_block'): + self.body.append('\n') + else: + BaseTranslator.depart_caption(self, node) + # overwritten: handle section titles better than in 0.6 release def visit_title(self, node): # type: (nodes.Node) -> None diff --git a/tests/test_build_manpage.py b/tests/test_build_manpage.py index 0a22d3ab6..6596e83b6 100644 --- a/tests/test_build_manpage.py +++ b/tests/test_build_manpage.py @@ -25,3 +25,24 @@ def test_all(app, status, warning): # term of definition list including nodes.strong assert '\n.B term1\n' in content assert '\nterm2 (\\fBstronged partially\\fP)\n' in content + + +@pytest.mark.sphinx('man', testroot='directive-code') +def test_captioned_code_block(app, status, warning): + app.builder.build_all() + content = (app.outdir / 'python.1').text() + + assert ('.sp\n' + 'caption \\fItest\\fP rb\n' + '.INDENT 0.0\n' + '.INDENT 3.5\n' + '.sp\n' + '.nf\n' + '.ft C\n' + 'def ruby?\n' + ' false\n' + 'end\n' + '.ft P\n' + '.fi\n' + '.UNINDENT\n' + '.UNINDENT\n' in content) From 591bdd74c0739269a9b2651aec2fa2554a3d8d23 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sun, 10 Mar 2019 16:48:42 +0900 Subject: [PATCH 074/121] Bump to 1.8.5 final --- CHANGES | 19 ++----------------- sphinx/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 19 deletions(-) diff --git a/CHANGES b/CHANGES index f4bddaf25..3137c04d1 100644 --- a/CHANGES +++ b/CHANGES @@ -1,17 +1,5 @@ -Release 1.8.5 (in development) -============================== - -Dependencies ------------- - -Incompatible changes --------------------- - -Deprecated ----------- - -Features added --------------- +Release 1.8.5 (released Mar 10, 2019) +===================================== Bugs fixed ---------- @@ -32,9 +20,6 @@ Bugs fixed * #6135: changes: Fix UnboundLocalError when any module found * #3859: manpage: code-block captions are not displayed correctly -Testing --------- - Release 1.8.4 (released Feb 03, 2019) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 1c305d027..990b9e508 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -36,7 +36,7 @@ if 'PYTHONWARNINGS' not in os.environ: warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '1.8.5+' +__version__ = '1.8.5' __released__ = '1.8.5' # used when Sphinx builds its own docs #: Version info for better programmatic use. @@ -47,7 +47,7 @@ __released__ = '1.8.5' # used when Sphinx builds its own docs #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (1, 8, 5, 'beta', 0) +version_info = (1, 8, 5, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) From 6ef08a42df4534dbb2664d49dc10a16f6df2acb2 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sun, 10 Mar 2019 16:50:39 +0900 Subject: [PATCH 075/121] Bump version --- CHANGES | 21 +++++++++++++++++++++ sphinx/__init__.py | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 3137c04d1..8ec29263d 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,24 @@ +Release 1.8.6 (in development) +============================== + +Dependencies +------------ + +Incompatible changes +-------------------- + +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + Release 1.8.5 (released Mar 10, 2019) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 990b9e508..53abd95ff 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -36,8 +36,8 @@ if 'PYTHONWARNINGS' not in os.environ: warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '1.8.5' -__released__ = '1.8.5' # used when Sphinx builds its own docs +__version__ = '1.8.6+' +__released__ = '1.8.6' # used when Sphinx builds its own docs #: Version info for better programmatic use. #: @@ -47,7 +47,7 @@ __released__ = '1.8.5' # used when Sphinx builds its own docs #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (1, 8, 5, 'final', 0) +version_info = (1, 8, 6, 'beta', 0) package_dir = path.abspath(path.dirname(__file__)) From b691fa804d500c57f5d653e71944adc9db4fbf26 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sun, 10 Mar 2019 17:07:15 +0900 Subject: [PATCH 076/121] Fix test: filename has been smallcased since 2.0 --- tests/test_build_latex.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_build_latex.py b/tests/test_build_latex.py index 58eaf90f8..f02394cf1 100644 --- a/tests/test_build_latex.py +++ b/tests/test_build_latex.py @@ -1414,7 +1414,7 @@ def test_includegraphics_oversized(app, status, warning): @pytest.mark.sphinx('latex', testroot='index_on_title') def test_index_on_title(app, status, warning): app.builder.build_all() - result = (app.outdir / 'Python.tex').text(encoding='utf8') + result = (app.outdir / 'python.tex').text(encoding='utf8') assert ('\\chapter{Test for index in top level title}\n' '\\label{\\detokenize{contents:test-for-index-in-top-level-title}}' '\\index{index@\\spxentry{index}}\n' From ef2d16d68aec4015ccfd8a3b2ded99c1a58d9da2 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sun, 10 Mar 2019 17:07:58 +0900 Subject: [PATCH 077/121] refactor: Use py3 style super() --- sphinx/writers/manpage.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/writers/manpage.py b/sphinx/writers/manpage.py index 458464ffd..0856ee5ee 100644 --- a/sphinx/writers/manpage.py +++ b/sphinx/writers/manpage.py @@ -473,14 +473,14 @@ class ManualPageTranslator(SphinxTranslator, BaseTranslator): if isinstance(node.parent, nodes.container) and node.parent.get('literal_block'): self.body.append('.sp\n') else: - BaseTranslator.visit_caption(self, node) + super().visit_caption(node) def depart_caption(self, node): # type: (nodes.Element) -> None if isinstance(node.parent, nodes.container) and node.parent.get('literal_block'): self.body.append('\n') else: - BaseTranslator.depart_caption(self, node) + super().depart_caption(node) # overwritten: handle section titles better than in 0.6 release def visit_title(self, node): From ab95fa5dede670f4d0027a0ca0a32778090dcd58 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sun, 10 Mar 2019 18:57:50 +0900 Subject: [PATCH 078/121] Add long_description_content_type to package metadata --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index eccceebb3..30f8625c8 100644 --- a/setup.py +++ b/setup.py @@ -172,6 +172,7 @@ setup( author_email='georg@python.org', description='Python documentation generator', long_description=long_desc, + long_description_content_type='text/x-rst', zip_safe=False, classifiers=[ 'Development Status :: 5 - Production/Stable', From 6d02bdda13866e61c5e58a3f974bc58ba5085202 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sun, 10 Mar 2019 18:58:02 +0900 Subject: [PATCH 079/121] Do "twine check" before uploading package --- utils/release-checklist | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/utils/release-checklist b/utils/release-checklist index 84cbb3829..12cbe6381 100644 --- a/utils/release-checklist +++ b/utils/release-checklist @@ -12,7 +12,8 @@ for stable releases * ``git commit -am 'Bump to X.Y.Z final'`` * ``make clean`` * ``python setup.py release bdist_wheel sdist`` -* ``twine upload dist/<Sphinx-X.Y.Z files> --sign --identity [your GPG key]`` +* ``twine check dist/Sphinx-X.Y.Z*`` +* ``twine upload dist/Sphinx-X.Y.Z* --sign --identity [your GPG key]`` * open https://pypi.org/project/Sphinx/ and check there are no obvious errors * ``git tag vX.Y.Z`` * ``python utils/bump_version.py --in-develop X.Y.Zb0`` (ex. 1.5.3b0) @@ -39,7 +40,8 @@ for first beta releases * ``git commit -am 'Bump to X.Y.0 beta1'`` * ``make clean`` * ``python setup.py release bdist_wheel sdist`` -* ``twine upload dist/<Sphinx-X.Y.Z files> --sign --identity [your GPG key]`` +* ``twine check dist/Sphinx-X.Y.Z*`` +* ``twine upload dist/Sphinx-X.Y.Z* --sign --identity [your GPG key]`` * open https://pypi.org/project/Sphinx/ and check there are no obvious errors * ``git tag vX.Y.0b1`` * ``python utils/bump_version.py --in-develop X.Y.0b2`` (ex. 1.6.0b2) @@ -69,7 +71,8 @@ for other beta releases * ``git commit -am 'Bump to X.Y.0 betaN'`` * ``make clean`` * ``python setup.py release bdist_wheel sdist`` -* ``twine upload dist/<Sphinx-X.Y.Z files> --sign --identity [your GPG key]`` +* ``twine check dist/Sphinx-X.Y.Z*`` +* ``twine upload dist/Sphinx-X.Y.Z* --sign --identity [your GPG key]`` * open https://pypi.org/project/Sphinx/ and check there are no obvious errors * ``git tag vX.Y.0bN`` * ``python utils/bump_version.py --in-develop X.Y.0bM`` (ex. 1.6.0b3) @@ -98,7 +101,8 @@ for major releases * ``git commit -am 'Bump to X.Y.0 final'`` * ``make clean`` * ``python setup.py release bdist_wheel sdist`` -* ``twine upload dist/<Sphinx-X.Y.Z files> --sign --identity [your GPG key]`` +* ``twine check dist/Sphinx-X.Y.Z*`` +* ``twine upload dist/Sphinx-X.Y.Z* --sign --identity [your GPG key]`` * open https://pypi.org/project/Sphinx/ and check there are no obvious errors * ``git tag vX.Y.0`` * ``python utils/bump_version.py --in-develop X.Y.1b0`` (ex. 1.6.1b0) From 1f136215c18fc75eb9402ec7da083f9022703d71 Mon Sep 17 00:00:00 2001 From: Michael Goerz <goerz@stanford.edu> Date: Sun, 10 Mar 2019 18:37:05 -0400 Subject: [PATCH 080/121] Fix docs of inheritance-diagram "parts" option The documentation now correctly describes the behavior of the ``parts`` option in an inheritance-diagram directive: it gives the number of parts that are *kept* not dropped. The option now also accepts negative values, which drops parts from the left (which is the what the documentation incorrectly claimed the option would do for positive values) As a form of testing of the new functionality, the documentation for the inheritance_diagram extension now includes a section "Examples" that demonstrate the different possibilities. This would fail to build without the patch. Closes #4872 --- CHANGES | 1 + doc/conf.py | 2 +- doc/usage/extensions/inheritance.rst | 51 +++++++++++++++++++++++++--- sphinx/ext/inheritance_diagram.py | 16 ++++++--- 4 files changed, 59 insertions(+), 11 deletions(-) diff --git a/CHANGES b/CHANGES index df21d531a..e260603e0 100644 --- a/CHANGES +++ b/CHANGES @@ -69,6 +69,7 @@ Bugs fixed * AssertionError is raised when custom ``citation_reference`` node having classes attribute refers missing citation (refs: #6147) * #2155: Support ``code`` directive +* #4872: ext.inheritance_diagram: correctly describe behavior of ``parts`` option in docs, allow negative values. Testing -------- diff --git a/doc/conf.py b/doc/conf.py index 58cbfe708..f29180f77 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -7,7 +7,7 @@ import sphinx extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', 'sphinx.ext.autosummary', 'sphinx.ext.extlinks', - 'sphinx.ext.viewcode'] + 'sphinx.ext.viewcode', 'sphinx.ext.inheritance_diagram'] master_doc = 'contents' templates_path = ['_templates'] diff --git a/doc/usage/extensions/inheritance.rst b/doc/usage/extensions/inheritance.rst index c66f4130f..8e98b0bc1 100644 --- a/doc/usage/extensions/inheritance.rst +++ b/doc/usage/extensions/inheritance.rst @@ -25,12 +25,18 @@ It adds this directive: graph. This directive supports an option called ``parts`` that, if given, must be an - integer, advising the directive to remove that many parts of module names - from the displayed names. (For example, if all your class names start with - ``lib.``, you can give ``:parts: 1`` to remove that prefix from the displayed - node names.) + integer, advising the directive to keep that many dot-separated parts + in the displayed names (from right to left). For example, ``parts=1`` will + only display class names, without the names of the modules that contain + them. - It also supports a ``private-bases`` flag option; if given, private base + .. versionchanged:: 2.0 + The value of for ``parts`` can also be negative, indicating how many + parts to drop from the left. For example, if all your class names start + with ``lib.``, you can give ``:parts: -1`` to remove that prefix from the + displayed node names. + + The directive also supports a ``private-bases`` flag option; if given, private base classes (those whose name starts with ``_``) will be included. You can use ``caption`` option to give a caption to the diagram. @@ -92,6 +98,41 @@ It adds this directive: Added ``top-classes`` option to limit the scope of inheritance graphs. +Examples +-------- + +The following are different inheritance diagrams for the internal +``InheritanceDiagram`` class that implements the directive. + +With full names:: + + .. inheritance-diagram:: sphinx.ext.inheritance_diagram.InheritanceDiagram + +.. inheritance-diagram:: sphinx.ext.inheritance_diagram.InheritanceDiagram + + +Showing class names only:: + + .. inheritance-diagram:: sphinx.ext.inheritance_diagram.InheritanceDiagram + :parts: 1 + +.. inheritance-diagram:: sphinx.ext.inheritance_diagram.InheritanceDiagram + :parts: 1 + +Stopping the diagram at :class:`sphinx.util.docutils.SphinxDirective` (the +highest superclass still part of Sphinx), and dropping the common left-most +part (``sphinx``) from all names:: + + .. inheritance-diagram:: sphinx.ext.inheritance_diagram.InheritanceDiagram + :top-classes: sphinx.util.docutils.SphinxDirective + :parts: -1 + +.. inheritance-diagram:: sphinx.ext.inheritance_diagram.InheritanceDiagram + :top-classes: sphinx.util.docutils.SphinxDirective + :parts: -1 + + + Configuration ------------- diff --git a/sphinx/ext/inheritance_diagram.py b/sphinx/ext/inheritance_diagram.py index cfdac4803..df3ff01ed 100644 --- a/sphinx/ext/inheritance_diagram.py +++ b/sphinx/ext/inheritance_diagram.py @@ -167,11 +167,17 @@ class InheritanceGraph: """Return name and bases for all classes that are ancestors of *classes*. - *parts* gives the number of dotted name parts that is removed from the - displayed node names. + *parts* gives the number of dotted name parts to include in the + displayed node names, from right to left. If given as a negative, the + number of parts to drop from the left. A value of 0 displays the full + dotted name. E.g. ``sphinx.ext.inheritance_diagram.InheritanceGraph`` + with ``parts=2`` or ``parts=-2`` gets displayed as + ``inheritance_diagram.InheritanceGraph``, and as + ``ext.inheritance_diagram.InheritanceGraph`` with ``parts=3`` or + ``parts=-1``. - *top_classes* gives the name(s) of the top most ancestor class to traverse - to. Multiple names can be specified separated by comma. + *top_classes* gives the name(s) of the top most ancestor class to + traverse to. Multiple names can be specified separated by comma. """ all_classes = {} py_builtins = vars(builtins).values() @@ -332,7 +338,7 @@ class InheritanceDiagram(SphinxDirective): optional_arguments = 0 final_argument_whitespace = True option_spec = { - 'parts': directives.nonnegative_int, + 'parts': int, 'private-bases': directives.flag, 'caption': directives.unchanged, 'top-classes': directives.unchanged_required, From e5a0e2ce05b1fa960090360e43dfacbad4a44c99 Mon Sep 17 00:00:00 2001 From: Lilian Besson <Naereen@users.noreply.github.com> Date: Mon, 11 Mar 2019 15:33:08 +0100 Subject: [PATCH 081/121] =?UTF-8?q?htps://=20=E2=86=92=20https://=20defaul?= =?UTF-8?q?t=20project=20URL?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/ISSUE_TEMPLATE/bug_report.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 146f3b6bc..0fa6b61fe 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -15,7 +15,7 @@ Steps to reproduce the behavior: ``` <Paste your command-line here which cause the problem> -$ git clone htps://github.com/.../some_project +$ git clone https://github.com/.../some_project $ cd some_project $ pip install -r requirements.txt $ cd docs From 19a23142585f5fa5351f677acf2e70d036f52cdf Mon Sep 17 00:00:00 2001 From: Michael Goerz <goerz@stanford.edu> Date: Mon, 11 Mar 2019 14:35:50 -0400 Subject: [PATCH 082/121] Install graphiz on Travis This is required to generate inheritance diagrams (as there is now an example inheritance diagram in the documentation of the extension generating such diagrams) --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 5a49bf106..7bc822d70 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,6 +37,7 @@ matrix: services: xvfb install: + - "sudo apt-get install graphviz" - if [ $IS_PYTHON = true ]; then pip install -U tox codecov; fi - if [ $IS_PYTHON = false ]; then npm install; fi From 16b1b71a3adc87782e8fc3a892b326b190cf7b38 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Thu, 14 Mar 2019 00:38:54 +0900 Subject: [PATCH 083/121] docs: drop mention to deprecated method (refs: #6174) --- sphinx/application.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/sphinx/application.py b/sphinx/application.py index 6d553333b..94b27b8e4 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -827,9 +827,6 @@ class Sphinx: For the role content, you have the same syntactical possibilities as for standard Sphinx roles (see :ref:`xref-syntax`). - This method is also available under the deprecated alias - :meth:`add_description_unit`. - .. versionchanged:: 1.8 Add *override* keyword. """ From ceb72a78b85fbe9c42cd3f7cfc677097185b190b Mon Sep 17 00:00:00 2001 From: Jakob Lykke Andersen <Jakob@caput.dk> Date: Sat, 16 Mar 2019 17:29:53 +0100 Subject: [PATCH 084/121] C++, fix parsing of initializers Specifically, add parsing of braced-init-list. See also michaeljones/breathe#425 --- CHANGES | 1 + sphinx/domains/cpp.py | 312 ++++++++++++++++++++++++--------------- tests/test_domain_cpp.py | 36 +++++ 3 files changed, 230 insertions(+), 119 deletions(-) diff --git a/CHANGES b/CHANGES index 7e09fc787..b48ee5e75 100644 --- a/CHANGES +++ b/CHANGES @@ -31,6 +31,7 @@ Bugs fixed * AssertionError is raised when custom ``citation_reference`` node having classes attribute refers missing citation (refs: #6147) * #2155: Support ``code`` directive +* C++, fix parsing of braced initializers. Testing -------- diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index b099f5260..d17e67f82 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -1159,15 +1159,12 @@ class ASTNoexceptExpr(ASTBase): class ASTNewExpr(ASTBase): - def __init__(self, rooted, isNewTypeId, typ, initList, initType): - # type: (bool, bool, ASTType, List[Any], str) -> None + def __init__(self, rooted, isNewTypeId, typ, initList): + # type: (bool, bool, ASTType, Any) -> None self.rooted = rooted self.isNewTypeId = isNewTypeId self.typ = typ self.initList = initList - self.initType = initType - if self.initList is not None: - assert self.initType in ')}' def _stringify(self, transform): # type: (Callable[[Any], str]) -> str @@ -1181,15 +1178,7 @@ class ASTNewExpr(ASTBase): else: assert False if self.initList is not None: - if self.initType == ')': - res.append('(') - first = True - for e in self.initList: - if not first: - res.append(', ') - first = False - res.append(transform(e)) - res.append(self.initType) + res.append(transform(self.initList)) return ''.join(res) def get_id(self, version): @@ -1200,13 +1189,7 @@ class ASTNewExpr(ASTBase): res.append('_') res.append(self.typ.get_id(version)) if self.initList is not None: - if self.initType == ')': - res.append('pi') - for e in self.initList: - res.append(e.get_id(version)) - res.append('E') - else: - assert False + res.append(self.initList.get_id(version)) else: res.append('E') return ''.join(res) @@ -1221,17 +1204,7 @@ class ASTNewExpr(ASTBase): else: assert False if self.initList is not None: - if self.initType == ')': - signode.append(nodes.Text('(')) - first = True - for e in self.initList: - if not first: - signode.append(nodes.Text(', ')) - first = False - e.describe_signature(signode, mode, env, symbol) - signode.append(nodes.Text(')')) - else: - assert False + self.initList.describe_signature(signode, mode, env, symbol) class ASTDeleteExpr(ASTBase): @@ -1323,38 +1296,24 @@ class ASTTypeId(ASTBase): class ASTPostfixCallExpr(ASTBase): - def __init__(self, exprs): - self.exprs = exprs + def __init__(self, lst): + # type: (Union[ASTParenExprList, ASTBracedInitList]) -> None + self.lst = lst def _stringify(self, transform): # type: (Callable[[Any], str]) -> str - res = ['('] - first = True - for e in self.exprs: - if not first: - res.append(', ') - first = False - res.append(transform(e)) - res.append(')') - return ''.join(res) + return transform(self.lst) def get_id(self, idPrefix, version): # type: (str, int) -> str res = ['cl', idPrefix] - for e in self.exprs: + for e in self.lst.exprs: res.append(e.get_id(version)) res.append('E') return ''.join(res) def describe_signature(self, signode, mode, env, symbol): - signode.append(nodes.Text('(')) - first = True - for e in self.exprs: - if not first: - signode.append(nodes.Text(', ')) - first = False - e.describe_signature(signode, mode, env, symbol) - signode.append(nodes.Text(')')) + self.lst.describe_signature(signode, mode, env, symbol) class ASTPostfixArray(ASTBase): @@ -3232,18 +3191,85 @@ class ASTDeclaratorNameParamQual(ASTBase): self.paramQual.describe_signature(signode, mode, env, symbol) -class ASTInitializer(ASTBase): - def __init__(self, value): - self.value = value +class ASTParenExprList(ASTBase): + def __init__(self, exprs): + # type: (List[Any]) -> None + self.exprs = exprs + + def get_id(self, version): + # type: (int) -> str + return "pi%sE" % ''.join(e.get_id(version) for e in self.exprs) def _stringify(self, transform): # type: (Callable[[Any], str]) -> str - return ' = ' + transform(self.value) + exprs = [transform(e) for e in self.exprs] + return '(%s)' % ', '.join(exprs) def describe_signature(self, signode, mode, env, symbol): # type: (addnodes.desc_signature, str, BuildEnvironment, Symbol) -> None _verify_description_mode(mode) - signode.append(nodes.Text(' = ')) + signode.append(nodes.Text('(')) + first = True + for e in self.exprs: + if not first: + signode.append(nodes.Text(', ')) + else: + first = False + e.describe_signature(signode, mode, env, symbol) + signode.append(nodes.Text(')')) + + +class ASTBracedInitList(ASTBase): + def __init__(self, exprs, trailingComma): + # type: (List[Any], bool) -> None + self.exprs = exprs + self.trailingComma = trailingComma + + def get_id(self, version): + # type: (int) -> str + return "il%sE" % ''.join(e.get_id(version) for e in self.exprs) + + def _stringify(self, transform): + # type: (Callable[[Any], str]) -> str + exprs = [transform(e) for e in self.exprs] + trailingComma = ',' if self.trailingComma else '' + return '{%s%s}' % (', '.join(exprs), trailingComma) + + def describe_signature(self, signode, mode, env, symbol): + # type: (addnodes.desc_signature, str, BuildEnvironment, Symbol) -> None + _verify_description_mode(mode) + signode.append(nodes.Text('{')) + first = True + for e in self.exprs: + if not first: + signode.append(nodes.Text(', ')) + else: + first = False + e.describe_signature(signode, mode, env, symbol) + if self.trailingComma: + signode.append(nodes.Text(',')) + signode.append(nodes.Text('}')) + + +class ASTInitializer(ASTBase): + def __init__(self, value, hasAssign=True): + # type: (Any, bool) -> None + self.value = value + self.hasAssign = hasAssign + + def _stringify(self, transform): + # type: (Callable[[Any], str]) -> str + val = transform(self.value) + if self.hasAssign: + return ' = ' + val + else: + return val + + def describe_signature(self, signode, mode, env, symbol): + # type: (addnodes.desc_signature, str, BuildEnvironment, Symbol) -> None + _verify_description_mode(mode) + if self.hasAssign: + signode.append(nodes.Text(' = ')) self.value.describe_signature(signode, 'markType', env, symbol) @@ -4844,35 +4870,67 @@ class DefinitionParser: return res return self._parse_nested_name() - def _parse_expression_list_or_braced_init_list(self): - # type: () -> Tuple[List[Any], str] + def _parse_initializer_list(self, name, open, close): + # type: (str, str, str) -> Tuple[List[Any], bool] + # Parse open and close with the actual initializer-list inbetween + # -> initializer-clause '...'[opt] + # | initializer-list ',' initializer-clause '...'[opt] self.skip_ws() - if self.skip_string_and_ws('('): - close = ')' - name = 'parenthesized expression-list' - elif self.skip_string_and_ws('{'): - close = '}' - name = 'braced-init-list' - self.fail('Sorry, braced-init-list not yet supported.') - else: + if not self.skip_string_and_ws(open): return None, None + if self.skip_string(close): + return [], False + exprs = [] - self.skip_ws() - if not self.skip_string(close): - while True: - self.skip_ws() - expr = self._parse_expression(inTemplate=False) - self.skip_ws() - if self.skip_string('...'): - exprs.append(ASTPackExpansionExpr(expr)) - else: - exprs.append(expr) - self.skip_ws() - if self.skip_string(close): - break - if not self.skip_string(','): - self.fail("Error in %s, expected ',' or '%s'." % (name, close)) - return exprs, close + trailingComma = False + while True: + self.skip_ws() + expr = self._parse_expression(inTemplate=False) + self.skip_ws() + if self.skip_string('...'): + exprs.append(ASTPackExpansionExpr(expr)) + else: + exprs.append(expr) + self.skip_ws() + if self.skip_string(close): + break + if not self.skip_string_and_ws(','): + self.fail("Error in %s, expected ',' or '%s'." % (name, close)) + if self.current_char == close and close == '}': + self.pos += 1 + trailingComma = True + break + return exprs, trailingComma + + def _parse_paren_expression_list(self): + # type: () -> ASTParenExprList + # -> '(' expression-list ')' + # though, we relax it to also allow empty parens + # as it's needed in some cases + # + # expression-list + # -> initializer-list + exprs, trailingComma = self._parse_initializer_list("parenthesized expression-list", + '(', ')') + if exprs is None: + return None + return ASTParenExprList(exprs) + + def _parse_braced_init_list(self): + # type: () -> ASTBracedInitList + # -> '{' initializer-list ','[opt] '}' + # | '{' '}' + exprs, trailingComma = self._parse_initializer_list("braced-init-list", '{', '}') + if exprs is None: + return None + return ASTBracedInitList(exprs, trailingComma) + + def _parse_expression_list_or_braced_init_list(self): + # type: () -> Union[ASTParenExprList, ASTBracedInitList] + paren = self._parse_paren_expression_list() + if paren is not None: + return paren + return self._parse_braced_init_list() def _parse_postfix_expression(self): # -> primary @@ -4980,7 +5038,7 @@ class DefinitionParser: raise self._make_multi_error(errors, header) # and now parse postfixes - postFixes = [] + postFixes = [] # type: List[Any] while True: self.skip_ws() if prefixType in ['expr', 'cast', 'typeid']: @@ -5000,7 +5058,7 @@ class DefinitionParser: self.pos -= 3 else: name = self._parse_nested_name() - postFixes.append(ASTPostfixMember(name)) # type: ignore + postFixes.append(ASTPostfixMember(name)) continue if self.skip_string('->'): if self.skip_string('*'): @@ -5008,21 +5066,17 @@ class DefinitionParser: self.pos -= 3 else: name = self._parse_nested_name() - postFixes.append(ASTPostfixMemberOfPointer(name)) # type: ignore + postFixes.append(ASTPostfixMemberOfPointer(name)) continue if self.skip_string('++'): - postFixes.append(ASTPostfixInc()) # type: ignore + postFixes.append(ASTPostfixInc()) continue if self.skip_string('--'): - postFixes.append(ASTPostfixDec()) # type: ignore + postFixes.append(ASTPostfixDec()) continue - lst, typ = self._parse_expression_list_or_braced_init_list() + lst = self._parse_expression_list_or_braced_init_list() if lst is not None: - if typ == ')': - postFixes.append(ASTPostfixCallExpr(lst)) # type: ignore - else: - assert typ == '}' - assert False + postFixes.append(ASTPostfixCallExpr(lst)) continue break if len(postFixes) == 0: @@ -5105,10 +5159,8 @@ class DefinitionParser: decl = self._parse_declarator(named=False, paramMode="new") else: self.fail("Sorry, parenthesised type-id in new expression not yet supported.") - lst, typ = self._parse_expression_list_or_braced_init_list() - if lst: - assert typ in ")}" - return ASTNewExpr(rooted, isNewTypeId, ASTType(declSpecs, decl), lst, typ) + lst = self._parse_expression_list_or_braced_init_list() + return ASTNewExpr(rooted, isNewTypeId, ASTType(declSpecs, decl), lst) # delete-expression pos = self.pos rooted = self.skip_string('::') @@ -5267,7 +5319,7 @@ class DefinitionParser: value = self.matched_text else: # TODO: add handling of more bracket-like things, and quote handling - brackets = {'(': ')', '[': ']', '<': '>'} + brackets = {'(': ')', '{': '}', '[': ']', '<': '>'} symbols = [] # type: List[str] while not self.eof: if (len(symbols) == 0 and self.current_char in end): @@ -5825,30 +5877,52 @@ class DefinitionParser: def _parse_initializer(self, outer=None, allowFallback=True): # type: (str, bool) -> ASTInitializer + # initializer # global vars + # -> brace-or-equal-initializer + # | '(' expression-list ')' + # + # brace-or-equal-initializer # member vars + # -> '=' initializer-clause + # | braced-init-list + # + # initializer-clause # function params, non-type template params (with '=' in front) + # -> assignment-expression + # | braced-init-list + # + # we don't distinguish between global and member vars, so disallow paren: + # + # -> braced-init-list # var only + # | '=' assignment-expression + # | '=' braced-init-list self.skip_ws() - # TODO: support paren and brace initialization for memberObject + if outer == 'member': + bracedInit = self._parse_braced_init_list() + if bracedInit is not None: + return ASTInitializer(bracedInit, hasAssign=False) + if not self.skip_string('='): return None + + bracedInit = self._parse_braced_init_list() + if bracedInit is not None: + return ASTInitializer(bracedInit) + + if outer == 'member': + fallbackEnd = [] # type: List[str] + elif outer == 'templateParam': + fallbackEnd = [',', '>'] + elif outer is None: # function parameter + fallbackEnd = [',', ')'] else: - if outer == 'member': - def parser(): - return self._parse_assignment_expression(inTemplate=False) - value = self._parse_expression_fallback([], parser, - allow=allowFallback) - elif outer == 'templateParam': - def parser(): - return self._parse_assignment_expression(inTemplate=True) - value = self._parse_expression_fallback([',', '>'], parser, - allow=allowFallback) - elif outer is None: # function parameter - def parser(): - return self._parse_assignment_expression(inTemplate=False) - value = self._parse_expression_fallback([',', ')'], parser, - allow=allowFallback) - else: - self.fail("Internal error, initializer for outer '%s' not " - "implemented." % outer) - return ASTInitializer(value) + self.fail("Internal error, initializer for outer '%s' not " + "implemented." % outer) + + inTemplate = outer == 'templateParam' + + def parser(): + return self._parse_assignment_expression(inTemplate=inTemplate) + value = self._parse_expression_fallback(fallbackEnd, parser, allow=allowFallback) + return ASTInitializer(value) def _parse_type(self, named, outer=None): # type: (Union[bool, str], str) -> ASTType diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index 0cd3445a5..46019b4a9 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -194,6 +194,8 @@ def test_expressions(): exprCheck('new int()', 'nw_ipiE') exprCheck('new int(5, 42)', 'nw_ipiL5EL42EE') exprCheck('::new int', 'nw_iE') + exprCheck('new int{}', 'nw_iilE') + exprCheck('new int{5, 42}', 'nw_iilL5EL42EE') # delete-expression exprCheck('delete p', 'dl1p') exprCheck('delete [] p', 'da1p') @@ -673,6 +675,40 @@ def test_template_args(): {2: "I0E21enable_if_not_array_t"}) +def test_initializers(): + idsMember = {1: 'v__T', 2:'1v'} + idsFunction = {1: 'f__T', 2: '1f1T'} + idsTemplate = {2: 'I_1TE1fv', 4: 'I_1TE1fvv'} + # no init + check('member', 'T v', idsMember) + check('function', 'void f(T v)', idsFunction) + check('function', 'template<T v> void f()', idsTemplate) + # with '=', assignment-expression + check('member', 'T v = 42', idsMember) + check('function', 'void f(T v = 42)', idsFunction) + check('function', 'template<T v = 42> void f()', idsTemplate) + # with '=', braced-init + check('member', 'T v = {}', idsMember) + check('function', 'void f(T v = {})', idsFunction) + check('function', 'template<T v = {}> void f()', idsTemplate) + check('member', 'T v = {42, 42, 42}', idsMember) + check('function', 'void f(T v = {42, 42, 42})', idsFunction) + check('function', 'template<T v = {42, 42, 42}> void f()', idsTemplate) + check('member', 'T v = {42, 42, 42,}', idsMember) + check('function', 'void f(T v = {42, 42, 42,})', idsFunction) + check('function', 'template<T v = {42, 42, 42,}> void f()', idsTemplate) + check('member', 'T v = {42, 42, args...}', idsMember) + check('function', 'void f(T v = {42, 42, args...})', idsFunction) + check('function', 'template<T v = {42, 42, args...}> void f()', idsTemplate) + # without '=', braced-init + check('member', 'T v{}', idsMember) + check('member', 'T v{42, 42, 42}', idsMember) + check('member', 'T v{42, 42, 42,}', idsMember) + check('member', 'T v{42, 42, args...}', idsMember) + # other + check('member', 'T v = T{}', idsMember) + + def test_attributes(): # style: C++ check('member', '[[]] int f', {1: 'f__i', 2: '1f'}) From 23f7b3a6e7fb0f17c4c62ddf1e2ef8078e0e679e Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sat, 9 Mar 2019 19:43:08 +0900 Subject: [PATCH 085/121] refactor: Remove lists of transforms from SphinxStandalonReader --- sphinx/application.py | 5 ++++ sphinx/io.py | 33 ++++++++++-------------- sphinx/transforms/__init__.py | 28 +++++++++++++++++++- sphinx/transforms/compact_bullet_list.py | 14 +++++++++- sphinx/transforms/i18n.py | 13 ++++++++++ sphinx/transforms/references.py | 15 ++++++++++- sphinx/versioning.py | 14 +++++++++- 7 files changed, 98 insertions(+), 24 deletions(-) diff --git a/sphinx/application.py b/sphinx/application.py index 887eae86c..dcd143712 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -91,11 +91,16 @@ builtin_extensions = ( 'sphinx.parsers', 'sphinx.registry', 'sphinx.roles', + 'sphinx.transforms', + 'sphinx.transforms.compact_bullet_list', + 'sphinx.transforms.i18n', + 'sphinx.transforms.references', 'sphinx.transforms.post_transforms', 'sphinx.transforms.post_transforms.code', 'sphinx.transforms.post_transforms.images', 'sphinx.transforms.post_transforms.compat', 'sphinx.util.compat', + 'sphinx.versioning', # collectors should be loaded by specific order 'sphinx.environment.collectors.dependencies', 'sphinx.environment.collectors.asset', diff --git a/sphinx/io.py b/sphinx/io.py index 00fc2bf1a..f6162b024 100644 --- a/sphinx/io.py +++ b/sphinx/io.py @@ -20,17 +20,12 @@ from docutils.writers import UnfilteredWriter from sphinx.deprecation import RemovedInSphinx30Warning from sphinx.transforms import ( - ApplySourceWorkaround, ExtraTranslatableNodes, SmartQuotesSkipper, CitationReferences, - DefaultSubstitutions, MoveModuleTargets, HandleCodeBlocks, SortIds, FigureAligner, - AutoNumbering, AutoIndexUpgrader, FilterSystemMessages, - UnreferencedFootnotesDetector, SphinxSmartQuotes, DoctreeReadEvent, ManpageLink + AutoIndexUpgrader, DoctreeReadEvent, FigureAligner, SphinxTransformer ) -from sphinx.transforms import SphinxTransformer -from sphinx.transforms.compact_bullet_list import RefOnlyBulletListTransform from sphinx.transforms.i18n import ( PreserveTranslatableMessages, Locale, RemoveTranslatableInline, ) -from sphinx.transforms.references import SphinxDomains, SubstitutionDefinitionsRemover +from sphinx.transforms.references import SphinxDomains from sphinx.util import logging from sphinx.util import UnicodeDecodeErrorHandler from sphinx.util.docutils import LoggingReporter @@ -93,13 +88,6 @@ class SphinxStandaloneReader(SphinxBaseReader): """ A basic document reader for Sphinx. """ - transforms = [ApplySourceWorkaround, ExtraTranslatableNodes, PreserveTranslatableMessages, - Locale, CitationReferences, DefaultSubstitutions, MoveModuleTargets, - HandleCodeBlocks, AutoNumbering, AutoIndexUpgrader, SortIds, FigureAligner, - RemoveTranslatableInline, FilterSystemMessages, RefOnlyBulletListTransform, - UnreferencedFootnotesDetector, SphinxSmartQuotes, ManpageLink, - SphinxDomains, SubstitutionDefinitionsRemover, DoctreeReadEvent, - UIDTransform, SmartQuotesSkipper] def __init__(self, app, *args, **kwargs): # type: (Sphinx, Any, Any) -> None @@ -136,12 +124,17 @@ class SphinxI18nReader(SphinxBaseReader): Because the translated texts are partial and they don't have correct line numbers. """ - transforms = [ApplySourceWorkaround, ExtraTranslatableNodes, CitationReferences, - DefaultSubstitutions, MoveModuleTargets, HandleCodeBlocks, - AutoNumbering, SortIds, RemoveTranslatableInline, - FilterSystemMessages, RefOnlyBulletListTransform, - UnreferencedFootnotesDetector, SphinxSmartQuotes, ManpageLink, - SubstitutionDefinitionsRemover, SmartQuotesSkipper] + def __init__(self, app, *args, **kwargs): + # type: (Sphinx, Any, Any) -> None + self.transforms = self.transforms + app.registry.get_transforms() + unused = [PreserveTranslatableMessages, Locale, RemoveTranslatableInline, + AutoIndexUpgrader, FigureAligner, SphinxDomains, DoctreeReadEvent, + UIDTransform] + for transform in unused: + if transform in self.transforms: + self.transforms.remove(transform) + + super().__init__(app, *args, **kwargs) def set_lineno_for_reporter(self, lineno): # type: (int) -> None diff --git a/sphinx/transforms/__init__.py b/sphinx/transforms/__init__.py index dd7a4c04f..158feafcb 100644 --- a/sphinx/transforms/__init__.py +++ b/sphinx/transforms/__init__.py @@ -29,7 +29,7 @@ from sphinx.util.nodes import ( if False: # For type annotation - from typing import Any, Generator, List, Tuple # NOQA + from typing import Any, Dict, Generator, List, Tuple # NOQA from sphinx.application import Sphinx # NOQA from sphinx.config import Config # NOQA from sphinx.domain.std import StandardDomain # NOQA @@ -438,3 +438,29 @@ class ManpageLink(SphinxTransform): if r: info = r.groupdict() node.attributes.update(info) + + +def setup(app): + # type: (Sphinx) -> Dict[str, Any] + app.add_transform(ApplySourceWorkaround) + app.add_transform(ExtraTranslatableNodes) + app.add_transform(SmartQuotesSkipper) + app.add_transform(CitationReferences) + app.add_transform(DefaultSubstitutions) + app.add_transform(MoveModuleTargets) + app.add_transform(HandleCodeBlocks) + app.add_transform(SortIds) + app.add_transform(FigureAligner) + app.add_transform(AutoNumbering) + app.add_transform(AutoIndexUpgrader) + app.add_transform(FilterSystemMessages) + app.add_transform(UnreferencedFootnotesDetector) + app.add_transform(SphinxSmartQuotes) + app.add_transform(DoctreeReadEvent) + app.add_transform(ManpageLink) + + return { + 'version': 'builtin', + 'parallel_read_safe': True, + 'parallel_write_safe': True, + } diff --git a/sphinx/transforms/compact_bullet_list.py b/sphinx/transforms/compact_bullet_list.py index 7f7db5c40..e118e6a84 100644 --- a/sphinx/transforms/compact_bullet_list.py +++ b/sphinx/transforms/compact_bullet_list.py @@ -17,7 +17,8 @@ from sphinx.transforms import SphinxTransform if False: # For type annotation - from typing import Any, List # NOQA + from typing import Any, Dict, List # NOQA + from sphinx.application import Sphinx # NOQA class RefOnlyListChecker(nodes.GenericNodeVisitor): @@ -90,3 +91,14 @@ class RefOnlyBulletListTransform(SphinxTransform): compact_para = addnodes.compact_paragraph() compact_para += ref item.replace(para, compact_para) + + +def setup(app): + # type: (Sphinx) -> Dict[str, Any] + app.add_transform(RefOnlyBulletListTransform) + + return { + 'version': 'builtin', + 'parallel_read_safe': True, + 'parallel_write_safe': True, + } diff --git a/sphinx/transforms/i18n.py b/sphinx/transforms/i18n.py index c8628c318..c884bb89d 100644 --- a/sphinx/transforms/i18n.py +++ b/sphinx/transforms/i18n.py @@ -483,3 +483,16 @@ class RemoveTranslatableInline(SphinxTransform): for inline in self.document.traverse(matcher): # type: nodes.inline inline.parent.remove(inline) inline.parent += inline.children + + +def setup(app): + # type: (Sphinx) -> Dict[str, Any] + app.add_transform(PreserveTranslatableMessages) + app.add_transform(Locale) + app.add_transform(RemoveTranslatableInline) + + return { + 'version': 'builtin', + 'parallel_read_safe': True, + 'parallel_write_safe': True, + } diff --git a/sphinx/transforms/references.py b/sphinx/transforms/references.py index fd7e71779..de512f437 100644 --- a/sphinx/transforms/references.py +++ b/sphinx/transforms/references.py @@ -15,7 +15,8 @@ from sphinx.transforms import SphinxTransform if False: # For type annotation - from typing import Any # NOQA + from typing import Any, Dict # NOQA + from sphinx.application import Sphinx # NOQA class SubstitutionDefinitionsRemover(SphinxTransform): @@ -38,3 +39,15 @@ class SphinxDomains(SphinxTransform): # type: (Any) -> None for domain in self.env.domains.values(): domain.process_doc(self.env, self.env.docname, self.document) + + +def setup(app): + # type: (Sphinx) -> Dict[str, Any] + app.add_transform(SubstitutionDefinitionsRemover) + app.add_transform(SphinxDomains) + + return { + 'version': 'builtin', + 'parallel_read_safe': True, + 'parallel_write_safe': True, + } diff --git a/sphinx/versioning.py b/sphinx/versioning.py index d69720c57..c98d166bc 100644 --- a/sphinx/versioning.py +++ b/sphinx/versioning.py @@ -20,8 +20,9 @@ from sphinx.transforms import SphinxTransform if False: # For type annotation - from typing import Any, Iterator # NOQA + from typing import Any, Dict, Iterator # NOQA from docutils import nodes # NOQA + from sphinx.application import Sphinx # NOQA try: import Levenshtein @@ -186,3 +187,14 @@ def prepare(document): RemovedInSphinx30Warning, stacklevel=2) transform = UIDTransform(document) transform.apply() + + +def setup(app): + # type: (Sphinx) -> Dict[str, Any] + app.add_transform(UIDTransform) + + return { + 'version': 'builtin', + 'parallel_read_safe': True, + 'parallel_write_safe': True, + } From 925bc187eacbc0fbdd2c56f360a040a23cb13145 Mon Sep 17 00:00:00 2001 From: Daniel Hahler <github@thequod.de> Date: Sun, 17 Mar 2019 07:09:19 +0100 Subject: [PATCH 086/121] Support --keep-going with BuildDoc setup command (#6180) * Support --keep-going with BuildDoc setup command This allows for `tox -e docs -- -n -W --keep-going`. --- sphinx/cmd/build.py | 2 +- sphinx/setup_command.py | 5 ++++- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/sphinx/cmd/build.py b/sphinx/cmd/build.py index 6fd954296..e19500901 100644 --- a/sphinx/cmd/build.py +++ b/sphinx/cmd/build.py @@ -186,7 +186,7 @@ files can be built by specifying individual filenames. group.add_argument('-W', action='store_true', dest='warningiserror', help=__('turn warnings into errors')) group.add_argument('--keep-going', action='store_true', dest='keep_going', - help=__("With -W, Keep going when getting warnings")) + help=__("With -W, keep going when getting warnings")) group.add_argument('-T', action='store_true', dest='traceback', help=__('show full traceback on exception')) group.add_argument('-P', action='store_true', dest='pdb', diff --git a/sphinx/setup_command.py b/sphinx/setup_command.py index 9445e4e0a..06a7016d1 100644 --- a/sphinx/setup_command.py +++ b/sphinx/setup_command.py @@ -85,6 +85,7 @@ class BuildDoc(Command): ('copyright', None, 'The copyright string'), ('pdb', None, 'Start pdb on exception'), ('nitpicky', 'n', 'nit-picky mode, warn about all missing references'), + ('keep-going', None, 'With -W, keep going when getting warnings'), ] boolean_options = ['fresh-env', 'all-files', 'warning-is-error', 'link-index', 'nitpicky'] @@ -106,6 +107,7 @@ class BuildDoc(Command): self.verbosity = 0 self.traceback = False self.nitpicky = False + self.keep_going = False def _guess_source_dir(self): # type: () -> str @@ -186,7 +188,8 @@ class BuildDoc(Command): builder_target_dir, self.doctree_dir, builder, confoverrides, status_stream, freshenv=self.fresh_env, - warningiserror=self.warning_is_error) + warningiserror=self.warning_is_error, + keep_going=self.keep_going) app.build(force_all=self.all_files) if app.statuscode: raise DistutilsExecError( From fadab68ffc6a79de2d285eca930e58cddece4c45 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sun, 17 Mar 2019 15:10:07 +0900 Subject: [PATCH 087/121] Update CHANGES for PR #6180 --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index df21d531a..4a6b59840 100644 --- a/CHANGES +++ b/CHANGES @@ -29,6 +29,7 @@ Features added -------------- * Add a helper method ``SphinxDirective.set_source_info()`` +* #6180: Support ``--keep-going`` with BuildDoc setup command Bugs fixed ---------- From 6698bd6b3f2bc3d15477dd40e7ff6212861334c8 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sun, 17 Mar 2019 15:03:13 +0900 Subject: [PATCH 088/121] Fix #6178: i18n: Captions missing in translations for hidden TOCs --- CHANGES | 1 + sphinx/builders/gettext.py | 6 ++++++ tests/roots/test-intl/index.po | 3 +++ tests/roots/test-intl/index.txt | 7 +++++++ tests/test_intl.py | 2 ++ 5 files changed, 19 insertions(+) diff --git a/CHANGES b/CHANGES index b48ee5e75..13281e93f 100644 --- a/CHANGES +++ b/CHANGES @@ -32,6 +32,7 @@ Bugs fixed classes attribute refers missing citation (refs: #6147) * #2155: Support ``code`` directive * C++, fix parsing of braced initializers. +* #6178: i18n: Captions missing in translations for hidden TOCs Testing -------- diff --git a/sphinx/builders/gettext.py b/sphinx/builders/gettext.py index aace9bb49..092d64e2d 100644 --- a/sphinx/builders/gettext.py +++ b/sphinx/builders/gettext.py @@ -16,6 +16,7 @@ from os import path, walk, getenv from time import time from uuid import uuid4 +from sphinx import addnodes from sphinx.builders import Builder from sphinx.domains.python import pairindextypes from sphinx.errors import ThemeError @@ -142,6 +143,11 @@ class I18nBuilder(Builder): # type: (str, nodes.document) -> None catalog = self.catalogs[find_catalog(docname, self.config.gettext_compact)] + for toctree in self.env.tocs[docname].traverse(addnodes.toctree): + for node, msg in extract_messages(toctree): + node.uid = '' # type: ignore # Hack UUID model + catalog.add(msg, node) + for node, msg in extract_messages(doctree): catalog.add(msg, node) diff --git a/tests/roots/test-intl/index.po b/tests/roots/test-intl/index.po index 76ef049f0..a4646f1ec 100644 --- a/tests/roots/test-intl/index.po +++ b/tests/roots/test-intl/index.po @@ -19,6 +19,9 @@ msgstr "" msgid "Table of Contents" msgstr "TABLE OF CONTENTS" +msgid "Hidden Toc" +msgstr "HIDDEN TOC" + msgid "testdata for i18n" msgstr "TESTDATA FOR I18N" diff --git a/tests/roots/test-intl/index.txt b/tests/roots/test-intl/index.txt index cd63b5ec3..1e09294f9 100644 --- a/tests/roots/test-intl/index.txt +++ b/tests/roots/test-intl/index.txt @@ -30,3 +30,10 @@ CONTENTS refs section topic + +.. toctree:: + :maxdepth: 2 + :caption: Hidden Toc + :hidden: + + only diff --git a/tests/test_intl.py b/tests/test_intl.py index 367409fd9..94f8c1d55 100644 --- a/tests/test_intl.py +++ b/tests/test_intl.py @@ -617,6 +617,8 @@ def test_html_meta(app): assert expected_expr in result expected_expr = '<meta content="I18N, SPHINX, MARKUP" name="keywords" />' assert expected_expr in result + expected_expr = '<p class="caption"><span class="caption-text">HIDDEN TOC</span></p>' + assert expected_expr in result @sphinx_intl From bee5f45a682f36b7182cdf71c33f08f3bb40d1f9 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Thu, 14 Mar 2019 02:07:05 +0900 Subject: [PATCH 089/121] Fix #6172: AttributeError is raised for old styled index nodes --- CHANGES | 1 + sphinx/util/compat.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index b48ee5e75..d15580368 100644 --- a/CHANGES +++ b/CHANGES @@ -32,6 +32,7 @@ Bugs fixed classes attribute refers missing citation (refs: #6147) * #2155: Support ``code`` directive * C++, fix parsing of braced initializers. +* #6172: AttributeError is raised for old styled index nodes Testing -------- diff --git a/sphinx/util/compat.py b/sphinx/util/compat.py index 1567bad9e..5d8cbb3db 100644 --- a/sphinx/util/compat.py +++ b/sphinx/util/compat.py @@ -58,12 +58,12 @@ class IndexEntriesMigrator(SphinxTransform): def apply(self, **kwargs): # type: (Any) -> None for node in self.document.traverse(addnodes.index): - for entries in node['entries']: + for i, entries in enumerate(node['entries']): if len(entries) == 4: source, line = get_source_line(node) warnings.warn('An old styled index node found: %r at (%s:%s)' % (node, source, line), RemovedInSphinx40Warning) - entries.extend([None]) + node['entries'][i] = entries + (None,) def setup(app): From b5959ca230cbd954f32ced01ef2164d37a5ef6eb Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sun, 17 Mar 2019 18:27:00 +0900 Subject: [PATCH 090/121] Add SphinxPostTransform class (#6154) * Add SphinxPostTransform * Apply SphinxPostTransform to latex transforms --- CHANGES | 2 + doc/extdev/deprecated.rst | 5 ++ doc/extdev/utils.rst | 3 + sphinx/builders/latex/__init__.py | 25 ++----- sphinx/builders/latex/transforms.py | 70 ++++++++++++------- sphinx/transforms/post_transforms/__init__.py | 42 +++++++++-- 6 files changed, 97 insertions(+), 50 deletions(-) diff --git a/CHANGES b/CHANGES index 4a6b59840..e0aa4532b 100644 --- a/CHANGES +++ b/CHANGES @@ -13,6 +13,7 @@ Incompatible changes Deprecated ---------- +* ``sphinx.builders.latex.LaTeXBuilder.apply_transforms()`` * ``sphinx.environment.NoUri`` * ``sphinx.ext.autodoc.importer.MockFinder`` * ``sphinx.ext.autodoc.importer.MockLoader`` @@ -28,6 +29,7 @@ For more details, see :ref:`deprecation APIs list <dev-deprecated-apis>`. Features added -------------- +* Add a helper class ``sphinx.transforms.post_transforms.SphinxPostTransform`` * Add a helper method ``SphinxDirective.set_source_info()`` * #6180: Support ``--keep-going`` with BuildDoc setup command diff --git a/doc/extdev/deprecated.rst b/doc/extdev/deprecated.rst index e57140420..b28c70214 100644 --- a/doc/extdev/deprecated.rst +++ b/doc/extdev/deprecated.rst @@ -26,6 +26,11 @@ The following is a list of deprecated interfaces. - (will be) Removed - Alternatives + * - ``sphinx.builders.latex.LaTeXBuilder.apply_transforms()`` + - 2.1 + - 4.0 + - N/A + * - ``sphinx.environment.NoUri`` - 2.1 - 4.0 diff --git a/doc/extdev/utils.rst b/doc/extdev/utils.rst index 3aac51ed9..2a94a34bb 100644 --- a/doc/extdev/utils.rst +++ b/doc/extdev/utils.rst @@ -15,6 +15,9 @@ components (e.g. :class:`.Config`, :class:`.BuildEnvironment` and so on) easily. .. autoclass:: sphinx.transforms.SphinxTransform :members: +.. autoclass:: sphinx.transforms.post_transforms.SphinxPostTransform + :members: + .. autoclass:: sphinx.util.docutils.SphinxDirective :members: diff --git a/sphinx/builders/latex/__init__.py b/sphinx/builders/latex/__init__.py index c2218fd15..e6467601d 100644 --- a/sphinx/builders/latex/__init__.py +++ b/sphinx/builders/latex/__init__.py @@ -9,6 +9,7 @@ """ import os +import warnings from os import path from docutils.frontend import OptionParser @@ -16,17 +17,12 @@ from docutils.frontend import OptionParser import sphinx.builders.latex.nodes # NOQA # Workaround: import this before writer to avoid ImportError from sphinx import package_dir, addnodes, highlighting from sphinx.builders import Builder -from sphinx.builders.latex.transforms import ( - BibliographyTransform, CitationReferenceTransform, MathReferenceTransform, - FootnoteDocnameUpdater, LaTeXFootnoteTransform, LiteralBlockTransform, - ShowUrlsTransform, DocumentTargetTransform, IndexInSectionTitleTransform, -) from sphinx.builders.latex.util import ExtBabel from sphinx.config import ENUM +from sphinx.deprecation import RemovedInSphinx40Warning from sphinx.environment.adapters.asset import ImageAdapter from sphinx.errors import NoUri, SphinxError from sphinx.locale import _, __ -from sphinx.transforms import SphinxTransformer from sphinx.util import texescape, logging, progress_message, status_iterator from sphinx.util.console import bold, darkgreen # type: ignore from sphinx.util.docutils import SphinxFileOutput, new_document @@ -264,7 +260,6 @@ class LaTeXBuilder(Builder): docname, toctree_only, appendices=((docclass != 'howto') and self.config.latex_appendices or [])) doctree['tocdepth'] = tocdepth - self.apply_transforms(doctree) self.post_process_images(doctree) self.update_doc_context(title, author) @@ -340,15 +335,8 @@ class LaTeXBuilder(Builder): def apply_transforms(self, doctree): # type: (nodes.document) -> None - transformer = SphinxTransformer(doctree) - transformer.set_environment(self.env) - transformer.add_transforms([BibliographyTransform, - ShowUrlsTransform, - LaTeXFootnoteTransform, - LiteralBlockTransform, - DocumentTargetTransform, - IndexInSectionTitleTransform]) - transformer.apply_transforms() + warnings.warn('LaTeXBuilder.apply_transforms() is deprecated.', + RemovedInSphinx40Warning) def finish(self): # type: () -> None @@ -485,11 +473,10 @@ def default_latex_documents(config): def setup(app): # type: (Sphinx) -> Dict[str, Any] + app.setup_extension('sphinx.builders.latex.transforms') + app.add_builder(LaTeXBuilder) - app.add_post_transform(CitationReferenceTransform) - app.add_post_transform(MathReferenceTransform) app.connect('config-inited', validate_config_values) - app.add_transform(FootnoteDocnameUpdater) app.add_config_value('latex_engine', default_latex_engine, None, ENUM('pdflatex', 'xelatex', 'lualatex', 'platex')) diff --git a/sphinx/builders/latex/transforms.py b/sphinx/builders/latex/transforms.py index 52d5bc9ea..746446fbc 100644 --- a/sphinx/builders/latex/transforms.py +++ b/sphinx/builders/latex/transforms.py @@ -17,11 +17,13 @@ from sphinx.builders.latex.nodes import ( captioned_literal_block, footnotemark, footnotetext, math_reference, thebibliography ) from sphinx.transforms import SphinxTransform +from sphinx.transforms.post_transforms import SphinxPostTransform from sphinx.util.nodes import NodeMatcher if False: # For type annotation - from typing import Any, List, Set, Tuple # NOQA + from typing import Any, Dict, List, Set, Tuple # NOQA + from sphinx.application import Sphinx # NOQA URI_SCHEMES = ('mailto:', 'http:', 'https:', 'ftp:') @@ -38,7 +40,7 @@ class FootnoteDocnameUpdater(SphinxTransform): node['docname'] = self.env.docname -class ShowUrlsTransform(SphinxTransform): +class ShowUrlsTransform(SphinxPostTransform): """Expand references to inline text or footnotes. For more information, see :confval:`latex_show_urls`. @@ -46,11 +48,12 @@ class ShowUrlsTransform(SphinxTransform): .. note:: This transform is used for integrated doctree """ default_priority = 400 + builders = ('latex',) # references are expanded to footnotes (or not) expanded = False - def apply(self, **kwargs): + def run(self, **kwargs): # type: (Any) -> None try: # replace id_prefix temporarily @@ -177,7 +180,7 @@ class FootnoteCollector(nodes.NodeVisitor): self.footnote_refs.append(node) -class LaTeXFootnoteTransform(SphinxTransform): +class LaTeXFootnoteTransform(SphinxPostTransform): """Convert footnote definitions and references to appropriate form to LaTeX. * Replace footnotes on restricted zone (e.g. headings) by footnotemark node. @@ -345,8 +348,9 @@ class LaTeXFootnoteTransform(SphinxTransform): """ default_priority = 600 + builders = ('latex',) - def apply(self, **kwargs): + def run(self, **kwargs): # type: (Any) -> None footnotes = list(self.document.traverse(nodes.footnote)) for node in footnotes: @@ -486,7 +490,7 @@ class LaTeXFootnoteVisitor(nodes.NodeVisitor): return None -class BibliographyTransform(SphinxTransform): +class BibliographyTransform(SphinxPostTransform): """Gather bibliography entries to tail of document. Before:: @@ -517,8 +521,9 @@ class BibliographyTransform(SphinxTransform): ... """ default_priority = 750 + builders = ('latex',) - def apply(self, **kwargs): + def run(self, **kwargs): # type: (Any) -> None citations = thebibliography() for node in self.document.traverse(nodes.citation): @@ -529,19 +534,17 @@ class BibliographyTransform(SphinxTransform): self.document += citations -class CitationReferenceTransform(SphinxTransform): +class CitationReferenceTransform(SphinxPostTransform): """Replace pending_xref nodes for citation by citation_reference. To handle citation reference easily on LaTeX writer, this converts pending_xref nodes to citation_reference. """ default_priority = 5 # before ReferencesResolver + builders = ('latex',) - def apply(self, **kwargs): + def run(self, **kwargs): # type: (Any) -> None - if self.app.builder.name != 'latex': - return - matcher = NodeMatcher(addnodes.pending_xref, refdomain='std', reftype='citation') citations = self.env.get_domain('std').data['citations'] for node in self.document.traverse(matcher): # type: addnodes.pending_xref @@ -552,19 +555,17 @@ class CitationReferenceTransform(SphinxTransform): node.replace_self(citation_ref) -class MathReferenceTransform(SphinxTransform): +class MathReferenceTransform(SphinxPostTransform): """Replace pending_xref nodes for math by math_reference. To handle math reference easily on LaTeX writer, this converts pending_xref nodes to math_reference. """ default_priority = 5 # before ReferencesResolver + builders = ('latex',) - def apply(self, **kwargs): + def run(self, **kwargs): # type: (Any) -> None - if self.app.builder.name != 'latex': - return - equations = self.env.get_domain('math').data['objects'] for node in self.document.traverse(addnodes.pending_xref): if node['refdomain'] == 'math' and node['reftype'] in ('eq', 'numref'): @@ -574,30 +575,26 @@ class MathReferenceTransform(SphinxTransform): node.replace_self(refnode) -class LiteralBlockTransform(SphinxTransform): +class LiteralBlockTransform(SphinxPostTransform): """Replace container nodes for literal_block by captioned_literal_block.""" default_priority = 400 + builders = ('latex',) - def apply(self, **kwargs): + def run(self, **kwargs): # type: (Any) -> None - if self.app.builder.name != 'latex': - return - matcher = NodeMatcher(nodes.container, literal_block=True) for node in self.document.traverse(matcher): # type: nodes.container newnode = captioned_literal_block('', *node.children, **node.attributes) node.replace_self(newnode) -class DocumentTargetTransform(SphinxTransform): +class DocumentTargetTransform(SphinxPostTransform): """Add :doc label to the first section of each document.""" default_priority = 400 + builders = ('latex',) - def apply(self, **kwargs): + def run(self, **kwargs): # type: (Any) -> None - if self.app.builder.name != 'latex': - return - for node in self.document.traverse(addnodes.start_of_file): section = node.next_node(nodes.section) if section: @@ -639,3 +636,22 @@ class IndexInSectionTitleTransform(SphinxTransform): # move the index node next to the section title node.remove(index) node.parent.insert(i + 1, index) + + +def setup(app): + # type: (Sphinx) -> Dict[str, Any] + app.add_transform(FootnoteDocnameUpdater) + app.add_post_transform(BibliographyTransform) + app.add_post_transform(CitationReferenceTransform) + app.add_post_transform(DocumentTargetTransform) + app.add_post_transform(IndexInSectionTitleTransform) + app.add_post_transform(LaTeXFootnoteTransform) + app.add_post_transform(LiteralBlockTransform) + app.add_post_transform(MathReferenceTransform) + app.add_post_transform(ShowUrlsTransform) + + return { + 'version': 'builtin', + 'parallel_read_safe': True, + 'parallel_write_safe': True, + } diff --git a/sphinx/transforms/post_transforms/__init__.py b/sphinx/transforms/post_transforms/__init__.py index be144b793..8f64266d0 100644 --- a/sphinx/transforms/post_transforms/__init__.py +++ b/sphinx/transforms/post_transforms/__init__.py @@ -29,14 +29,48 @@ if False: logger = logging.getLogger(__name__) -class ReferencesResolver(SphinxTransform): +class SphinxPostTransform(SphinxTransform): + """A base class of post-transforms. + + Post transforms are invoked to modify the document to restructure it for outputting. + They do resolving references, convert images, special transformation for each output + formats and so on. This class helps to implement these post transforms. + """ + builders = () # type: Tuple[str, ...] + formats = () # type: Tuple[str, ...] + + def apply(self, **kwargs): + # type: (Any) -> None + if self.is_supported(): + self.run(**kwargs) + + def is_supported(self): + # type: () -> bool + """Check this transform working for current builder.""" + if self.builders and self.app.builder.name not in self.builders: + return False + if self.formats and self.app.builder.format not in self.formats: + return False + + return True + + def run(self, **kwargs): + # type: (Any) -> None + """main method of post transforms. + + Subclasses should override this method instead of ``apply()``. + """ + raise NotImplementedError + + +class ReferencesResolver(SphinxPostTransform): """ Resolves cross-references on doctrees. """ default_priority = 10 - def apply(self, **kwargs): + def run(self, **kwargs): # type: (Any) -> None for node in self.document.traverse(addnodes.pending_xref): contnode = cast(nodes.TextElement, node[0].deepcopy()) @@ -147,10 +181,10 @@ class ReferencesResolver(SphinxTransform): location=node, type='ref', subtype=typ) -class OnlyNodeTransform(SphinxTransform): +class OnlyNodeTransform(SphinxPostTransform): default_priority = 50 - def apply(self, **kwargs): + def run(self, **kwargs): # type: (Any) -> None # A comment on the comment() nodes being inserted: replacing by [] would # result in a "Losing ids" exception if there is a target node before From 86d5d2113ecd2fa9886631d11ce102d28a0ec792 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Tue, 5 Mar 2019 01:32:12 +0900 Subject: [PATCH 091/121] Deprecate imports for compatibility --- CHANGES | 17 +++++++ doc/extdev/deprecated.rst | 85 +++++++++++++++++++++++++++++++++++ sphinx/directives/__init__.py | 32 ++++++++++--- 3 files changed, 129 insertions(+), 5 deletions(-) diff --git a/CHANGES b/CHANGES index e0aa4532b..57f3a5030 100644 --- a/CHANGES +++ b/CHANGES @@ -14,6 +14,23 @@ Deprecated ---------- * ``sphinx.builders.latex.LaTeXBuilder.apply_transforms()`` +* ``sphinx.directives.Acks`` +* ``sphinx.directives.Author`` +* ``sphinx.directives.Centered`` +* ``sphinx.directives.Class`` +* ``sphinx.directives.CodeBlock`` +* ``sphinx.directives.Figure`` +* ``sphinx.directives.HList`` +* ``sphinx.directives.Highlight`` +* ``sphinx.directives.Include`` +* ``sphinx.directives.Index`` +* ``sphinx.directives.LiteralInclude`` +* ``sphinx.directives.Meta`` +* ``sphinx.directives.Only`` +* ``sphinx.directives.SeeAlso`` +* ``sphinx.directives.TabularColumns`` +* ``sphinx.directives.TocTree`` +* ``sphinx.directives.VersionChange`` * ``sphinx.environment.NoUri`` * ``sphinx.ext.autodoc.importer.MockFinder`` * ``sphinx.ext.autodoc.importer.MockLoader`` diff --git a/doc/extdev/deprecated.rst b/doc/extdev/deprecated.rst index b28c70214..b30537073 100644 --- a/doc/extdev/deprecated.rst +++ b/doc/extdev/deprecated.rst @@ -31,6 +31,91 @@ The following is a list of deprecated interfaces. - 4.0 - N/A + * - ``sphinx.directives.Acks`` + - 2.1 + - 4.0 + - ``sphinx.directives.other.Acks`` + + * - ``sphinx.directives.Author`` + - 2.1 + - 4.0 + - ``sphinx.directives.other.Author`` + + * - ``sphinx.directives.Centered`` + - 2.1 + - 4.0 + - ``sphinx.directives.other.Centered`` + + * - ``sphinx.directives.Class`` + - 2.1 + - 4.0 + - ``sphinx.directives.other.Class`` + + * - ``sphinx.directives.CodeBlock`` + - 2.1 + - 4.0 + - ``sphinx.directives.code.CodeBlock`` + + * - ``sphinx.directives.Figure`` + - 2.1 + - 4.0 + - ``sphinx.directives.patches.Figure`` + + * - ``sphinx.directives.HList`` + - 2.1 + - 4.0 + - ``sphinx.directives.other.HList`` + + * - ``sphinx.directives.Highlight`` + - 2.1 + - 4.0 + - ``sphinx.directives.code.Highlight`` + + * - ``sphinx.directives.Include`` + - 2.1 + - 4.0 + - ``sphinx.directives.other.Include`` + + * - ``sphinx.directives.Index`` + - 2.1 + - 4.0 + - ``sphinx.directives.other.Index`` + + * - ``sphinx.directives.LiteralInclude`` + - 2.1 + - 4.0 + - ``sphinx.directives.code.LiteralInclude`` + + * - ``sphinx.directives.Meta`` + - 2.1 + - 4.0 + - ``sphinx.directives.patches.Meta`` + + * - ``sphinx.directives.Only`` + - 2.1 + - 4.0 + - ``sphinx.directives.other.Only`` + + * - ``sphinx.directives.SeeAlso`` + - 2.1 + - 4.0 + - ``sphinx.directives.other.SeeAlso`` + + * - ``sphinx.directives.TabularColumns`` + - 2.1 + - 4.0 + - ``sphinx.directives.other.TabularColumns`` + + * - ``sphinx.directives.TocTree`` + - 2.1 + - 4.0 + - ``sphinx.directives.other.TocTree`` + + * - ``sphinx.directives.VersionChange`` + - 2.1 + - 4.0 + - ``sphinx.directives.other.VersionChange`` + * - ``sphinx.environment.NoUri`` - 2.1 - 4.0 diff --git a/sphinx/directives/__init__.py b/sphinx/directives/__init__.py index 1f4520541..e21eb7f6e 100644 --- a/sphinx/directives/__init__.py +++ b/sphinx/directives/__init__.py @@ -15,6 +15,7 @@ from docutils import nodes from docutils.parsers.rst import directives, roles from sphinx import addnodes +from sphinx.deprecation import RemovedInSphinx40Warning, deprecated_alias from sphinx.util import docutils from sphinx.util.docfields import DocFieldTransformer from sphinx.util.docutils import SphinxDirective @@ -186,10 +187,6 @@ class ObjectDescription(SphinxDirective): return [self.indexnode, node] -# backwards compatible old name -DescDirective = ObjectDescription - - class DefaultRole(SphinxDirective): """ Set the default interpreted text role. Overridden from docutils. @@ -242,7 +239,6 @@ class DefaultDomain(SphinxDirective): self.env.temp_data['default_domain'] = self.env.domains.get(domain_name) return [] -# import all directives sphinx provides (for compatibility) from sphinx.directives.code import ( # noqa Highlight, CodeBlock, LiteralInclude ) @@ -254,6 +250,32 @@ from sphinx.directives.patches import ( # noqa Figure, Meta ) +deprecated_alias('sphinx.directives', + { + 'Highlight': Highlight, + 'CodeBlock': CodeBlock, + 'LiteralInclude': LiteralInclude, + 'TocTree': TocTree, + 'Author': Author, + 'Index': Index, + 'VersionChange': VersionChange, + 'SeeAlso': SeeAlso, + 'TabularColumns': TabularColumns, + 'Centered': Centered, + 'Acks': Acks, + 'HList': HList, + 'Only': Only, + 'Include': Include, + 'Class': Class, + 'Figure': Figure, + 'Meta': Meta, + }, + RemovedInSphinx40Warning) + + +# backwards compatible old name (will be marked deprecated in 3.0) +DescDirective = ObjectDescription + def setup(app): # type: (Sphinx) -> Dict[str, Any] From f210475489fe7f8f9fffbb68f7199bcd271ac0be Mon Sep 17 00:00:00 2001 From: Jon Dufresne <jon.dufresne@gmail.com> Date: Sun, 17 Mar 2019 12:49:36 -0700 Subject: [PATCH 092/121] Python-3-only clean ups discovered by pyupgrade https://github.com/asottile/pyupgrade > A tool to automatically upgrade syntax for newer versions of the > language. - Drop u str prefix - Drop base object inheritance - Drop args to super() - Use set literals - Use dict comprehension - Use set comprehension --- doc/conf.py | 2 +- sphinx/builders/changes.py | 4 ++-- sphinx/builders/html.py | 2 +- sphinx/cmd/quickstart.py | 11 +++++------ sphinx/deprecation.py | 2 +- sphinx/domains/c.py | 4 ++-- sphinx/ext/apidoc.py | 2 +- sphinx/ext/autodoc/__init__.py | 2 +- sphinx/ext/autodoc/mock.py | 2 +- sphinx/ext/ifconfig.py | 2 +- sphinx/ext/intersphinx.py | 4 ++-- sphinx/io.py | 2 +- sphinx/project.py | 2 +- sphinx/search/__init__.py | 9 ++++----- sphinx/search/ja.py | 4 ++-- sphinx/testing/util.py | 4 ++-- sphinx/transforms/__init__.py | 4 ++-- sphinx/util/__init__.py | 2 +- tests/test_application.py | 2 +- tests/test_builder.py | 4 ++-- tests/test_catalogs.py | 10 +++++----- tests/test_environment.py | 13 ++++++------- tests/test_environment_toctree.py | 8 ++++---- tests/test_ext_coverage.py | 2 +- tests/test_ext_inheritance_diagram.py | 2 +- tests/test_ext_napoleon_docstring.py | 2 +- tests/test_ext_todo.py | 12 ++++++------ tests/test_intl.py | 3 +-- tests/test_util_i18n.py | 24 ++++++++++++------------ tests/test_util_inspect.py | 2 +- utils/jssplitter_generator.py | 2 +- 31 files changed, 73 insertions(+), 77 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 58cbfe708..d32ee47ae 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -48,7 +48,7 @@ epub_fix_images = False epub_max_image_width = 0 epub_show_urls = 'inline' epub_use_index = False -epub_guide = (('toc', 'contents.xhtml', u'Table of Contents'),) +epub_guide = (('toc', 'contents.xhtml', 'Table of Contents'),) epub_description = 'Sphinx documentation generator system manual' latex_documents = [('contents', 'sphinx.tex', 'Sphinx Documentation', diff --git a/sphinx/builders/changes.py b/sphinx/builders/changes.py index f6bfe1b64..3b169e493 100644 --- a/sphinx/builders/changes.py +++ b/sphinx/builders/changes.py @@ -148,8 +148,8 @@ class ChangesBuilder(Builder): 'text': text } f.write(self.templates.render('changes/rstsource.html', ctx)) - themectx = dict(('theme_' + key, val) for (key, val) in - self.theme.get_options({}).items()) + themectx = {'theme_' + key: val for (key, val) in + self.theme.get_options({}).items()} copy_asset_file(path.join(package_dir, 'themes', 'default', 'static', 'default.css_t'), self.outdir, context=themectx, renderer=self.templates) copy_asset_file(path.join(package_dir, 'themes', 'basic', 'static', 'basic.css'), diff --git a/sphinx/builders/html.py b/sphinx/builders/html.py index 2c5ebcd4d..3f167d0d3 100644 --- a/sphinx/builders/html.py +++ b/sphinx/builders/html.py @@ -187,7 +187,7 @@ class BuildInfo: self.tags_hash = '' if config: - values = dict((c.name, c.value) for c in config.filter(config_categories)) + values = {c.name: c.value for c in config.filter(config_categories)} self.config_hash = get_stable_hash(values) if tags: diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py index c8b1b4fdd..dfc096de5 100644 --- a/sphinx/cmd/quickstart.py +++ b/sphinx/cmd/quickstart.py @@ -349,8 +349,7 @@ document is a custom template, you can also set this to another filename.''')) d['extensions'].append('sphinx.ext.%s' % name) # Handle conflicting options - if set(['sphinx.ext.imgmath', 'sphinx.ext.mathjax']).issubset( - d['extensions']): + if {'sphinx.ext.imgmath', 'sphinx.ext.mathjax'}.issubset(d['extensions']): print(__('Note: imgmath and mathjax cannot be enabled at the same ' 'time. imgmath has been deselected.')) d['extensions'].remove('sphinx.ext.imgmath') @@ -469,7 +468,7 @@ def valid_dir(d): if not path.isdir(dir): return False - if set(['Makefile', 'make.bat']) & set(os.listdir(dir)): + if {'Makefile', 'make.bat'} & set(os.listdir(dir)): return False if d['sep']: @@ -590,7 +589,7 @@ def main(argv=sys.argv[1:]): d = vars(args) # delete None or False value - d = dict((k, v) for k, v in d.items() if v is not None) + d = {k: v for k, v in d.items() if v is not None} # handle use of CSV-style extension values d.setdefault('extensions', []) @@ -601,12 +600,12 @@ def main(argv=sys.argv[1:]): try: if 'quiet' in d: - if not set(['project', 'author']).issubset(d): + if not {'project', 'author'}.issubset(d): print(__('''"quiet" is specified, but any of "project" or \ "author" is not specified.''')) return 1 - if set(['quiet', 'project', 'author']).issubset(d): + if {'quiet', 'project', 'author'}.issubset(d): # quiet mode with all required params satisfied, use default d.setdefault('version', '') d.setdefault('release', d['version']) diff --git a/sphinx/deprecation.py b/sphinx/deprecation.py index e10ec8b32..6cdd22ec1 100644 --- a/sphinx/deprecation.py +++ b/sphinx/deprecation.py @@ -37,7 +37,7 @@ def deprecated_alias(modname, objects, warning): sys.modules[modname] = _ModuleWrapper(module, modname, objects, warning) # type: ignore -class _ModuleWrapper(object): +class _ModuleWrapper: def __init__(self, module, modname, objects, warning): # type: (Any, str, Dict, Type[Warning]) -> None self._module = module diff --git a/sphinx/domains/c.py b/sphinx/domains/c.py index 46d92f5e1..ec311cfc7 100644 --- a/sphinx/domains/c.py +++ b/sphinx/domains/c.py @@ -72,12 +72,12 @@ class CObject(ObjectDescription): # These C types aren't described anywhere, so don't try to create # a cross-reference to them - stopwords = set(( + stopwords = { 'const', 'void', 'char', 'wchar_t', 'int', 'short', 'long', 'float', 'double', 'unsigned', 'signed', 'FILE', 'clock_t', 'time_t', 'ptrdiff_t', 'size_t', 'ssize_t', 'struct', '_Bool', - )) + } def _parse_type(self, node, ctype): # type: (nodes.Element, str) -> None diff --git a/sphinx/ext/apidoc.py b/sphinx/ext/apidoc.py index 94f07d91f..2d9a771d1 100644 --- a/sphinx/ext/apidoc.py +++ b/sphinx/ext/apidoc.py @@ -45,7 +45,7 @@ else: ] INITPY = '__init__.py' -PY_SUFFIXES = set(['.py', '.pyx']) +PY_SUFFIXES = {'.py', '.pyx'} def makename(package, module): diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index 334a7f8c4..5d96affa4 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -82,7 +82,7 @@ def members_set_option(arg): """Used to convert the :members: option to auto directives.""" if arg is None: return ALL - return set(x.strip() for x in arg.split(',')) + return {x.strip() for x in arg.split(',')} SUPPRESS = object() diff --git a/sphinx/ext/autodoc/mock.py b/sphinx/ext/autodoc/mock.py index b4204ef76..6ae389258 100644 --- a/sphinx/ext/autodoc/mock.py +++ b/sphinx/ext/autodoc/mock.py @@ -40,7 +40,7 @@ class _MockObject: return _make_subclass(args[0], superclass.__display_name__, superclass=superclass, attributes=args[2]) - return super(_MockObject, cls).__new__(cls) + return super().__new__(cls) def __init__(self, *args, **kwargs): # type: (Any, Any) -> None diff --git a/sphinx/ext/ifconfig.py b/sphinx/ext/ifconfig.py index 04653ebc4..bad5953d3 100644 --- a/sphinx/ext/ifconfig.py +++ b/sphinx/ext/ifconfig.py @@ -55,7 +55,7 @@ class IfConfig(SphinxDirective): def process_ifconfig_nodes(app, doctree, docname): # type: (Sphinx, nodes.document, str) -> None - ns = dict((confval.name, confval.value) for confval in app.config) + ns = {confval.name: confval.value for confval in app.config} ns.update(app.config.__dict__.copy()) ns['builder'] = app.builder.name for node in doctree.traverse(ifconfig): diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index 9c26d8c56..6b9bc3825 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -150,9 +150,9 @@ def _get_safe_url(url): else: frags = list(parts) if parts.port: - frags[1] = '{0}@{1}:{2}'.format(parts.username, parts.hostname, parts.port) + frags[1] = '{}@{}:{}'.format(parts.username, parts.hostname, parts.port) else: - frags[1] = '{0}@{1}'.format(parts.username, parts.hostname) + frags[1] = '{}@{}'.format(parts.username, parts.hostname) return urlunsplit(frags) diff --git a/sphinx/io.py b/sphinx/io.py index f6162b024..b5b57d065 100644 --- a/sphinx/io.py +++ b/sphinx/io.py @@ -195,7 +195,7 @@ class SphinxFileInput(FileInput): def __init__(self, *args, **kwargs): # type: (Any, Any) -> None kwargs['error_handler'] = 'sphinx' - super(SphinxFileInput, self).__init__(*args, **kwargs) + super().__init__(*args, **kwargs) class SphinxRSTFileInput(SphinxBaseFileInput): diff --git a/sphinx/project.py b/sphinx/project.py index c7094503f..8e2e7330a 100644 --- a/sphinx/project.py +++ b/sphinx/project.py @@ -24,7 +24,7 @@ logger = logging.getLogger(__name__) EXCLUDE_PATHS = ['**/_sources', '.#*', '**/.#*', '*.lproj/**'] -class Project(object): +class Project: """A project is source code set of Sphinx document.""" def __init__(self, srcdir, source_suffix): diff --git a/sphinx/search/__init__.py b/sphinx/search/__init__.py index dd30b5045..868b0e489 100644 --- a/sphinx/search/__init__.py +++ b/sphinx/search/__init__.py @@ -310,9 +310,9 @@ class IndexBuilder: rv = {} for k, v in mapping.items(): if isinstance(v, int): - rv[k] = set([index2fn[v]]) + rv[k] = {index2fn[v]} else: - rv[k] = set(index2fn[i] for i in v) + rv[k] = {index2fn[i] for i in v} return rv self._mapping = load_terms(frozen['terms']) @@ -381,12 +381,11 @@ class IndexBuilder: """Create a usable data structure for serializing.""" docnames, titles = zip(*sorted(self._titles.items())) filenames = [self._filenames.get(docname) for docname in docnames] - fn2index = dict((f, i) for (i, f) in enumerate(docnames)) + fn2index = {f: i for (i, f) in enumerate(docnames)} terms, title_terms = self.get_terms(fn2index) objects = self.get_objects(fn2index) # populates _objtypes - objtypes = dict((v, k[0] + ':' + k[1]) - for (k, v) in self._objtypes.items()) + objtypes = {v: k[0] + ':' + k[1] for (k, v) in self._objtypes.items()} objnames = self._objnames return dict(docnames=docnames, filenames=filenames, titles=titles, terms=terms, objects=objects, objtypes=objtypes, objnames=objnames, diff --git a/sphinx/search/ja.py b/sphinx/search/ja.py index 814296f79..0c11af74d 100644 --- a/sphinx/search/ja.py +++ b/sphinx/search/ja.py @@ -155,14 +155,14 @@ class JanomeSplitter(BaseSplitter): class DefaultSplitter(BaseSplitter): - patterns_ = dict([(re.compile(pattern), value) for pattern, value in { + patterns_ = {re.compile(pattern): value for pattern, value in { '[一二三四五六七八九十百千万億兆]': 'M', '[一-龠々〆ヵヶ]': 'H', '[ぁ-ん]': 'I', '[ァ-ヴーア-ン゙ー]': 'K', '[a-zA-Za-zA-Z]': 'A', '[0-90-9]': 'N', - }.items()]) + }.items()} BIAS__ = -332 BC1__ = {'HH': 6, 'II': 2461, 'KH': 406, 'OH': -1378} BC2__ = {'AA': -3267, 'AI': 2744, 'AN': -878, 'HH': -4070, 'HM': -1711, diff --git a/sphinx/testing/util.py b/sphinx/testing/util.py index fbd05c5d1..7b73059e9 100644 --- a/sphinx/testing/util.py +++ b/sphinx/testing/util.py @@ -133,8 +133,8 @@ class SphinxTestApp(application.Sphinx): self._saved_directives = directives._directives.copy() # type: ignore self._saved_roles = roles._roles.copy() # type: ignore - self._saved_nodeclasses = set(v for v in dir(nodes.GenericNodeVisitor) - if v.startswith('visit_')) + self._saved_nodeclasses = {v for v in dir(nodes.GenericNodeVisitor) + if v.startswith('visit_')} try: super().__init__(srcdir, confdir, outdir, doctreedir, diff --git a/sphinx/transforms/__init__.py b/sphinx/transforms/__init__.py index 158feafcb..2fc1b6e72 100644 --- a/sphinx/transforms/__init__.py +++ b/sphinx/transforms/__init__.py @@ -38,11 +38,11 @@ if False: logger = logging.getLogger(__name__) -default_substitutions = set([ +default_substitutions = { 'version', 'release', 'today', -]) +} class SphinxTransform(Transform): diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py index fc3f76ef3..2ebae8768 100644 --- a/sphinx/util/__init__.py +++ b/sphinx/util/__init__.py @@ -138,7 +138,7 @@ class FilenameUniqDict(dict): while uniquename in self._existing: i += 1 uniquename = '%s%s%s' % (base, i, ext) - self[newfile] = (set([docname]), uniquename) + self[newfile] = ({docname}, uniquename) self._existing.add(uniquename) return uniquename diff --git a/tests/test_application.py b/tests/test_application.py index 08c13c5cf..f10592b51 100644 --- a/tests/test_application.py +++ b/tests/test_application.py @@ -64,7 +64,7 @@ def test_extension_in_blacklist(app, status, warning): @pytest.mark.filterwarnings('ignore:The config variable "source_parsers"') @pytest.mark.filterwarnings('ignore:app.add_source_parser\\(\\) does not support suffix') def test_add_source_parser(app, status, warning): - assert set(app.config.source_suffix) == set(['.rst', '.md', '.test']) + assert set(app.config.source_suffix) == {'.rst', '.md', '.test'} # .rst; only in :confval:`source_suffix` assert '.rst' not in app.registry.get_source_parsers() diff --git a/tests/test_builder.py b/tests/test_builder.py index 35197a8ef..fa64f0c1f 100644 --- a/tests/test_builder.py +++ b/tests/test_builder.py @@ -28,7 +28,7 @@ def test_incremental_reading(app): # second reading updated = app.builder.read() - assert set(updated) == set(['index', 'new']) + assert set(updated) == {'index', 'new'} assert 'autodoc' not in app.env.all_docs assert 'autodoc' not in app.env.found_docs @@ -44,4 +44,4 @@ def test_incremental_reading_for_missing_files(app): # "index" is listed up to updated because it contains references # to nonexisting downloadable or image files - assert set(updated) == set(['index']) + assert set(updated) == {'index'} diff --git a/tests/test_catalogs.py b/tests/test_catalogs.py index f5fffa9d6..1a14d46e6 100644 --- a/tests/test_catalogs.py +++ b/tests/test_catalogs.py @@ -43,10 +43,10 @@ def test_compile_all_catalogs(app, status, warning): locale_dir = app.srcdir / 'locale' catalog_dir = locale_dir / app.config.language / 'LC_MESSAGES' - expect = set([ + expect = { x.replace('.po', '.mo') for x in find_files(catalog_dir, '.po') - ]) + } actual = set(find_files(catalog_dir, '.mo')) assert actual # not empty assert actual == expect @@ -67,7 +67,7 @@ def test_compile_specific_catalogs(app, status, warning): actual_on_boot = get_actual() # sphinx.mo might be included app.builder.compile_specific_catalogs([app.srcdir / 'admonitions.txt']) actual = get_actual() - actual_on_boot - assert actual == set(['admonitions.mo']) + assert actual == {'admonitions.mo'} @pytest.mark.usefixtures('setup_test') @@ -80,10 +80,10 @@ def test_compile_update_catalogs(app, status, warning): locale_dir = app.srcdir / 'locale' catalog_dir = locale_dir / app.config.language / 'LC_MESSAGES' - expect = set([ + expect = { x.replace('.po', '.mo') for x in find_files(catalog_dir, '.po') - ]) + } actual = set(find_files(catalog_dir, '.mo')) assert actual # not empty assert actual == expect diff --git a/tests/test_environment.py b/tests/test_environment.py index df0aa20b0..15562536f 100644 --- a/tests/test_environment.py +++ b/tests/test_environment.py @@ -25,21 +25,20 @@ def test_images(app): htmlbuilder.imgpath = 'dummy' htmlbuilder.post_process_images(tree) assert set(htmlbuilder.images.keys()) == \ - set(['subdir/img.png', 'img.png', 'subdir/simg.png', 'svgimg.svg', - 'img.foo.png']) + {'subdir/img.png', 'img.png', 'subdir/simg.png', 'svgimg.svg', 'img.foo.png'} assert set(htmlbuilder.images.values()) == \ - set(['img.png', 'img1.png', 'simg.png', 'svgimg.svg', 'img.foo.png']) + {'img.png', 'img1.png', 'simg.png', 'svgimg.svg', 'img.foo.png'} latexbuilder = LaTeXBuilder(app) latexbuilder.set_environment(app.env) latexbuilder.init() latexbuilder.post_process_images(tree) assert set(latexbuilder.images.keys()) == \ - set(['subdir/img.png', 'subdir/simg.png', 'img.png', 'img.pdf', - 'svgimg.pdf', 'img.foo.png']) + {'subdir/img.png', 'subdir/simg.png', 'img.png', 'img.pdf', + 'svgimg.pdf', 'img.foo.png'} assert set(latexbuilder.images.values()) == \ - set(['img.pdf', 'img.png', 'img1.png', 'simg.png', - 'svgimg.pdf', 'img.foo.png']) + {'img.pdf', 'img.png', 'img1.png', 'simg.png', + 'svgimg.pdf', 'img.foo.png'} @pytest.mark.sphinx('dummy') diff --git a/tests/test_environment_toctree.py b/tests/test_environment_toctree.py index c490dcedf..9d880d92c 100644 --- a/tests/test_environment_toctree.py +++ b/tests/test_environment_toctree.py @@ -75,11 +75,11 @@ def test_process_doc(app): # other collections assert app.env.toc_num_entries['index'] == 6 assert app.env.toctree_includes['index'] == ['foo', 'bar', 'baz'] - assert app.env.files_to_rebuild['foo'] == set(['index']) - assert app.env.files_to_rebuild['bar'] == set(['index']) - assert app.env.files_to_rebuild['baz'] == set(['index']) + assert app.env.files_to_rebuild['foo'] == {'index'} + assert app.env.files_to_rebuild['bar'] == {'index'} + assert app.env.files_to_rebuild['baz'] == {'index'} assert app.env.glob_toctrees == set() - assert app.env.numbered_toctrees == set(['index']) + assert app.env.numbered_toctrees == {'index'} # qux has no section title assert len(app.env.tocs['qux']) == 0 diff --git a/tests/test_ext_coverage.py b/tests/test_ext_coverage.py index d02d65feb..73181909d 100644 --- a/tests/test_ext_coverage.py +++ b/tests/test_ext_coverage.py @@ -37,7 +37,7 @@ def test_build(app, status, warning): undoc_py, undoc_c = pickle.loads((app.outdir / 'undoc.pickle').bytes()) assert len(undoc_c) == 1 # the key is the full path to the header file, which isn't testable - assert list(undoc_c.values())[0] == set([('function', 'Py_SphinxTest')]) + assert list(undoc_c.values())[0] == {('function', 'Py_SphinxTest')} assert 'autodoc_target' in undoc_py assert 'funcs' in undoc_py['autodoc_target'] diff --git a/tests/test_ext_inheritance_diagram.py b/tests/test_ext_inheritance_diagram.py index 9e5d3e60f..03b5bb689 100644 --- a/tests/test_ext_inheritance_diagram.py +++ b/tests/test_ext_inheritance_diagram.py @@ -121,7 +121,7 @@ def test_import_classes(rootdir): # all of classes in the module classes = import_classes('sphinx.application', None) - assert set(classes) == set([Sphinx, TemplateBridge]) + assert set(classes) == {Sphinx, TemplateBridge} # specified class in the module classes = import_classes('sphinx.application.Sphinx', None) diff --git a/tests/test_ext_napoleon_docstring.py b/tests/test_ext_napoleon_docstring.py index fa75062b3..86ded7d89 100644 --- a/tests/test_ext_napoleon_docstring.py +++ b/tests/test_ext_napoleon_docstring.py @@ -36,7 +36,7 @@ class NamedtupleSubclass(namedtuple('NamedtupleSubclass', ('attr1', 'attr2'))): __slots__ = () def __new__(cls, attr1, attr2=None): - return super(NamedtupleSubclass, cls).__new__(cls, attr1, attr2) + return super().__new__(cls, attr1, attr2) class BaseDocstringTest(TestCase): diff --git a/tests/test_ext_todo.py b/tests/test_ext_todo.py index 2ce7ac95e..3fca33f6f 100644 --- a/tests/test_ext_todo.py +++ b/tests/test_ext_todo.py @@ -54,9 +54,9 @@ def test_todo(app, status, warning): # check handled event assert len(todos) == 3 - assert set(todo[1].astext() for todo in todos) == {'todo in foo', - 'todo in bar', - 'todo in param field'} + assert {todo[1].astext() for todo in todos} == {'todo in foo', + 'todo in bar', + 'todo in param field'} @pytest.mark.sphinx('html', testroot='ext-todo', freshenv=True, @@ -92,9 +92,9 @@ def test_todo_not_included(app, status, warning): # check handled event assert len(todos) == 3 - assert set(todo[1].astext() for todo in todos) == {'todo in foo', - 'todo in bar', - 'todo in param field'} + assert {todo[1].astext() for todo in todos} == {'todo in foo', + 'todo in bar', + 'todo in param field'} @pytest.mark.sphinx('latex', testroot='ext-todo', freshenv=True, diff --git a/tests/test_intl.py b/tests/test_intl.py index 002851f07..ddb22ef9f 100644 --- a/tests/test_intl.py +++ b/tests/test_intl.py @@ -818,8 +818,7 @@ def test_xml_footnote_backlinks(app): para0 = secs[0].findall('paragraph') refs0 = para0[0].findall('footnote_reference') - refid2id = dict([ - (r.attrib.get('refid'), r.attrib.get('ids')) for r in refs0]) + refid2id = {r.attrib.get('refid'): r.attrib.get('ids') for r in refs0} footnote0 = secs[0].findall('footnote') for footnote in footnote0: diff --git a/tests/test_util_i18n.py b/tests/test_util_i18n.py index 5208689e8..4737d465c 100644 --- a/tests/test_util_i18n.py +++ b/tests/test_util_i18n.py @@ -70,13 +70,13 @@ def test_get_catalogs_for_xx(tempdir): (tempdir / 'loc1' / 'xx' / 'LC_ALL' / 'test7.po').write_text('#') catalogs = i18n.find_catalog_source_files([tempdir / 'loc1'], 'xx', force_all=False) - domains = set(c.domain for c in catalogs) - assert domains == set([ + domains = {c.domain for c in catalogs} + assert domains == { 'test1', 'test2', 'sub/test4', 'sub/test5', - ]) + } def test_get_catalogs_for_en(tempdir): @@ -86,8 +86,8 @@ def test_get_catalogs_for_en(tempdir): (tempdir / 'loc1' / 'en' / 'LC_MESSAGES' / 'en_dom.po').write_text('#') catalogs = i18n.find_catalog_source_files([tempdir / 'loc1'], 'en', force_all=False) - domains = set(c.domain for c in catalogs) - assert domains == set(['en_dom']) + domains = {c.domain for c in catalogs} + assert domains == {'en_dom'} def test_get_catalogs_with_non_existent_locale(tempdir): @@ -121,13 +121,13 @@ def test_get_catalogs_for_xx_without_outdated(tempdir): assert not catalogs catalogs = i18n.find_catalog_source_files([tempdir / 'loc1'], 'xx', force_all=True) - domains = set(c.domain for c in catalogs) - assert domains == set([ + domains = {c.domain for c in catalogs} + assert domains == { 'test1', 'test2', 'sub/test4', 'sub/test5', - ]) + } def test_get_catalogs_from_multiple_locale_dirs(tempdir): @@ -152,8 +152,8 @@ def test_get_catalogs_with_compact(tempdir): (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub' / 'test4.po').write_text('#') catalogs = i18n.find_catalog_source_files([tempdir / 'loc1'], 'xx', gettext_compact=True) - domains = set(c.domain for c in catalogs) - assert domains == set(['test1', 'test2', 'sub/test3', 'sub/test4']) + domains = {c.domain for c in catalogs} + assert domains == {'test1', 'test2', 'sub/test3', 'sub/test4'} def test_get_catalogs_excluded(tempdir): @@ -163,8 +163,8 @@ def test_get_catalogs_excluded(tempdir): catalogs = i18n.find_catalog_source_files( [tempdir / 'loc1'], 'en', force_all=False, excluded=lambda path: '.git' in path) - domains = set(c.domain for c in catalogs) - assert domains == set(['en_dom']) + domains = {c.domain for c in catalogs} + assert domains == {'en_dom'} def test_format_date(): diff --git a/tests/test_util_inspect.py b/tests/test_util_inspect.py index 6cb2a4b1b..ba2bb7501 100644 --- a/tests/test_util_inspect.py +++ b/tests/test_util_inspect.py @@ -352,7 +352,7 @@ def test_set_sorting(): def test_set_sorting_fallback(): - set_ = set((None, 1)) + set_ = {None, 1} description = inspect.object_description(set_) assert description in ("{1, None}", "{None, 1}") diff --git a/utils/jssplitter_generator.py b/utils/jssplitter_generator.py index 255bc0a98..360ce7d15 100644 --- a/utils/jssplitter_generator.py +++ b/utils/jssplitter_generator.py @@ -79,7 +79,7 @@ function splitQuery(query) { } ''' % (fold(singles, ','), fold(ranges, '],')) -js_test_src = u''' +js_test_src = ''' // This is regression test for https://github.com/sphinx-doc/sphinx/issues/3150 // generated by compat_regexp_generator.py // it needs node.js for testing From 22afc77c488e85ccd51303a223f450705b30217b Mon Sep 17 00:00:00 2001 From: Jon Dufresne <jon.dufresne@gmail.com> Date: Sun, 17 Mar 2019 12:49:36 -0700 Subject: [PATCH 093/121] Python-3-only clean ups discovered by pyupgrade https://github.com/asottile/pyupgrade > A tool to automatically upgrade syntax for newer versions of the > language. - Drop u str prefix - Drop base object inheritance - Drop args to super() - Use set literals - Use dict comprehension - Use set comprehension --- doc/conf.py | 2 +- sphinx/builders/changes.py | 4 ++-- sphinx/builders/html.py | 2 +- sphinx/cmd/quickstart.py | 11 +++++------ sphinx/deprecation.py | 2 +- sphinx/domains/c.py | 4 ++-- sphinx/ext/apidoc.py | 2 +- sphinx/ext/autodoc/__init__.py | 2 +- sphinx/ext/ifconfig.py | 2 +- sphinx/ext/intersphinx.py | 4 ++-- sphinx/io.py | 2 +- sphinx/project.py | 2 +- sphinx/search/__init__.py | 9 ++++----- sphinx/search/ja.py | 4 ++-- sphinx/testing/util.py | 4 ++-- sphinx/transforms/__init__.py | 4 ++-- sphinx/util/__init__.py | 2 +- tests/test_application.py | 2 +- tests/test_builder.py | 4 ++-- tests/test_catalogs.py | 10 +++++----- tests/test_environment.py | 13 ++++++------- tests/test_environment_toctree.py | 8 ++++---- tests/test_ext_coverage.py | 2 +- tests/test_ext_inheritance_diagram.py | 2 +- tests/test_ext_napoleon_docstring.py | 2 +- tests/test_ext_todo.py | 12 ++++++------ tests/test_intl.py | 3 +-- tests/test_util_i18n.py | 24 ++++++++++++------------ tests/test_util_inspect.py | 2 +- utils/jssplitter_generator.py | 2 +- 30 files changed, 72 insertions(+), 76 deletions(-) diff --git a/doc/conf.py b/doc/conf.py index 58cbfe708..d32ee47ae 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -48,7 +48,7 @@ epub_fix_images = False epub_max_image_width = 0 epub_show_urls = 'inline' epub_use_index = False -epub_guide = (('toc', 'contents.xhtml', u'Table of Contents'),) +epub_guide = (('toc', 'contents.xhtml', 'Table of Contents'),) epub_description = 'Sphinx documentation generator system manual' latex_documents = [('contents', 'sphinx.tex', 'Sphinx Documentation', diff --git a/sphinx/builders/changes.py b/sphinx/builders/changes.py index f6bfe1b64..3b169e493 100644 --- a/sphinx/builders/changes.py +++ b/sphinx/builders/changes.py @@ -148,8 +148,8 @@ class ChangesBuilder(Builder): 'text': text } f.write(self.templates.render('changes/rstsource.html', ctx)) - themectx = dict(('theme_' + key, val) for (key, val) in - self.theme.get_options({}).items()) + themectx = {'theme_' + key: val for (key, val) in + self.theme.get_options({}).items()} copy_asset_file(path.join(package_dir, 'themes', 'default', 'static', 'default.css_t'), self.outdir, context=themectx, renderer=self.templates) copy_asset_file(path.join(package_dir, 'themes', 'basic', 'static', 'basic.css'), diff --git a/sphinx/builders/html.py b/sphinx/builders/html.py index 2c5ebcd4d..3f167d0d3 100644 --- a/sphinx/builders/html.py +++ b/sphinx/builders/html.py @@ -187,7 +187,7 @@ class BuildInfo: self.tags_hash = '' if config: - values = dict((c.name, c.value) for c in config.filter(config_categories)) + values = {c.name: c.value for c in config.filter(config_categories)} self.config_hash = get_stable_hash(values) if tags: diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py index c8b1b4fdd..dfc096de5 100644 --- a/sphinx/cmd/quickstart.py +++ b/sphinx/cmd/quickstart.py @@ -349,8 +349,7 @@ document is a custom template, you can also set this to another filename.''')) d['extensions'].append('sphinx.ext.%s' % name) # Handle conflicting options - if set(['sphinx.ext.imgmath', 'sphinx.ext.mathjax']).issubset( - d['extensions']): + if {'sphinx.ext.imgmath', 'sphinx.ext.mathjax'}.issubset(d['extensions']): print(__('Note: imgmath and mathjax cannot be enabled at the same ' 'time. imgmath has been deselected.')) d['extensions'].remove('sphinx.ext.imgmath') @@ -469,7 +468,7 @@ def valid_dir(d): if not path.isdir(dir): return False - if set(['Makefile', 'make.bat']) & set(os.listdir(dir)): + if {'Makefile', 'make.bat'} & set(os.listdir(dir)): return False if d['sep']: @@ -590,7 +589,7 @@ def main(argv=sys.argv[1:]): d = vars(args) # delete None or False value - d = dict((k, v) for k, v in d.items() if v is not None) + d = {k: v for k, v in d.items() if v is not None} # handle use of CSV-style extension values d.setdefault('extensions', []) @@ -601,12 +600,12 @@ def main(argv=sys.argv[1:]): try: if 'quiet' in d: - if not set(['project', 'author']).issubset(d): + if not {'project', 'author'}.issubset(d): print(__('''"quiet" is specified, but any of "project" or \ "author" is not specified.''')) return 1 - if set(['quiet', 'project', 'author']).issubset(d): + if {'quiet', 'project', 'author'}.issubset(d): # quiet mode with all required params satisfied, use default d.setdefault('version', '') d.setdefault('release', d['version']) diff --git a/sphinx/deprecation.py b/sphinx/deprecation.py index e10ec8b32..6cdd22ec1 100644 --- a/sphinx/deprecation.py +++ b/sphinx/deprecation.py @@ -37,7 +37,7 @@ def deprecated_alias(modname, objects, warning): sys.modules[modname] = _ModuleWrapper(module, modname, objects, warning) # type: ignore -class _ModuleWrapper(object): +class _ModuleWrapper: def __init__(self, module, modname, objects, warning): # type: (Any, str, Dict, Type[Warning]) -> None self._module = module diff --git a/sphinx/domains/c.py b/sphinx/domains/c.py index 46d92f5e1..ec311cfc7 100644 --- a/sphinx/domains/c.py +++ b/sphinx/domains/c.py @@ -72,12 +72,12 @@ class CObject(ObjectDescription): # These C types aren't described anywhere, so don't try to create # a cross-reference to them - stopwords = set(( + stopwords = { 'const', 'void', 'char', 'wchar_t', 'int', 'short', 'long', 'float', 'double', 'unsigned', 'signed', 'FILE', 'clock_t', 'time_t', 'ptrdiff_t', 'size_t', 'ssize_t', 'struct', '_Bool', - )) + } def _parse_type(self, node, ctype): # type: (nodes.Element, str) -> None diff --git a/sphinx/ext/apidoc.py b/sphinx/ext/apidoc.py index 94f07d91f..2d9a771d1 100644 --- a/sphinx/ext/apidoc.py +++ b/sphinx/ext/apidoc.py @@ -45,7 +45,7 @@ else: ] INITPY = '__init__.py' -PY_SUFFIXES = set(['.py', '.pyx']) +PY_SUFFIXES = {'.py', '.pyx'} def makename(package, module): diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index f4b0c368f..5c94d611d 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -80,7 +80,7 @@ def members_set_option(arg): """Used to convert the :members: option to auto directives.""" if arg is None: return ALL - return set(x.strip() for x in arg.split(',')) + return {x.strip() for x in arg.split(',')} SUPPRESS = object() diff --git a/sphinx/ext/ifconfig.py b/sphinx/ext/ifconfig.py index 4fd5fa391..930ed9954 100644 --- a/sphinx/ext/ifconfig.py +++ b/sphinx/ext/ifconfig.py @@ -56,7 +56,7 @@ class IfConfig(SphinxDirective): def process_ifconfig_nodes(app, doctree, docname): # type: (Sphinx, nodes.document, str) -> None - ns = dict((confval.name, confval.value) for confval in app.config) + ns = {confval.name: confval.value for confval in app.config} ns.update(app.config.__dict__.copy()) ns['builder'] = app.builder.name for node in doctree.traverse(ifconfig): diff --git a/sphinx/ext/intersphinx.py b/sphinx/ext/intersphinx.py index 9c26d8c56..6b9bc3825 100644 --- a/sphinx/ext/intersphinx.py +++ b/sphinx/ext/intersphinx.py @@ -150,9 +150,9 @@ def _get_safe_url(url): else: frags = list(parts) if parts.port: - frags[1] = '{0}@{1}:{2}'.format(parts.username, parts.hostname, parts.port) + frags[1] = '{}@{}:{}'.format(parts.username, parts.hostname, parts.port) else: - frags[1] = '{0}@{1}'.format(parts.username, parts.hostname) + frags[1] = '{}@{}'.format(parts.username, parts.hostname) return urlunsplit(frags) diff --git a/sphinx/io.py b/sphinx/io.py index 368f661d5..d3c4b2183 100644 --- a/sphinx/io.py +++ b/sphinx/io.py @@ -202,7 +202,7 @@ class SphinxFileInput(FileInput): def __init__(self, *args, **kwargs): # type: (Any, Any) -> None kwargs['error_handler'] = 'sphinx' - super(SphinxFileInput, self).__init__(*args, **kwargs) + super().__init__(*args, **kwargs) class SphinxRSTFileInput(SphinxBaseFileInput): diff --git a/sphinx/project.py b/sphinx/project.py index c7094503f..8e2e7330a 100644 --- a/sphinx/project.py +++ b/sphinx/project.py @@ -24,7 +24,7 @@ logger = logging.getLogger(__name__) EXCLUDE_PATHS = ['**/_sources', '.#*', '**/.#*', '*.lproj/**'] -class Project(object): +class Project: """A project is source code set of Sphinx document.""" def __init__(self, srcdir, source_suffix): diff --git a/sphinx/search/__init__.py b/sphinx/search/__init__.py index dd30b5045..868b0e489 100644 --- a/sphinx/search/__init__.py +++ b/sphinx/search/__init__.py @@ -310,9 +310,9 @@ class IndexBuilder: rv = {} for k, v in mapping.items(): if isinstance(v, int): - rv[k] = set([index2fn[v]]) + rv[k] = {index2fn[v]} else: - rv[k] = set(index2fn[i] for i in v) + rv[k] = {index2fn[i] for i in v} return rv self._mapping = load_terms(frozen['terms']) @@ -381,12 +381,11 @@ class IndexBuilder: """Create a usable data structure for serializing.""" docnames, titles = zip(*sorted(self._titles.items())) filenames = [self._filenames.get(docname) for docname in docnames] - fn2index = dict((f, i) for (i, f) in enumerate(docnames)) + fn2index = {f: i for (i, f) in enumerate(docnames)} terms, title_terms = self.get_terms(fn2index) objects = self.get_objects(fn2index) # populates _objtypes - objtypes = dict((v, k[0] + ':' + k[1]) - for (k, v) in self._objtypes.items()) + objtypes = {v: k[0] + ':' + k[1] for (k, v) in self._objtypes.items()} objnames = self._objnames return dict(docnames=docnames, filenames=filenames, titles=titles, terms=terms, objects=objects, objtypes=objtypes, objnames=objnames, diff --git a/sphinx/search/ja.py b/sphinx/search/ja.py index 814296f79..0c11af74d 100644 --- a/sphinx/search/ja.py +++ b/sphinx/search/ja.py @@ -155,14 +155,14 @@ class JanomeSplitter(BaseSplitter): class DefaultSplitter(BaseSplitter): - patterns_ = dict([(re.compile(pattern), value) for pattern, value in { + patterns_ = {re.compile(pattern): value for pattern, value in { '[一二三四五六七八九十百千万億兆]': 'M', '[一-龠々〆ヵヶ]': 'H', '[ぁ-ん]': 'I', '[ァ-ヴーア-ン゙ー]': 'K', '[a-zA-Za-zA-Z]': 'A', '[0-90-9]': 'N', - }.items()]) + }.items()} BIAS__ = -332 BC1__ = {'HH': 6, 'II': 2461, 'KH': 406, 'OH': -1378} BC2__ = {'AA': -3267, 'AI': 2744, 'AN': -878, 'HH': -4070, 'HM': -1711, diff --git a/sphinx/testing/util.py b/sphinx/testing/util.py index fbd05c5d1..7b73059e9 100644 --- a/sphinx/testing/util.py +++ b/sphinx/testing/util.py @@ -133,8 +133,8 @@ class SphinxTestApp(application.Sphinx): self._saved_directives = directives._directives.copy() # type: ignore self._saved_roles = roles._roles.copy() # type: ignore - self._saved_nodeclasses = set(v for v in dir(nodes.GenericNodeVisitor) - if v.startswith('visit_')) + self._saved_nodeclasses = {v for v in dir(nodes.GenericNodeVisitor) + if v.startswith('visit_')} try: super().__init__(srcdir, confdir, outdir, doctreedir, diff --git a/sphinx/transforms/__init__.py b/sphinx/transforms/__init__.py index 6f513377b..d489db334 100644 --- a/sphinx/transforms/__init__.py +++ b/sphinx/transforms/__init__.py @@ -36,11 +36,11 @@ if False: logger = logging.getLogger(__name__) -default_substitutions = set([ +default_substitutions = { 'version', 'release', 'today', -]) +} class SphinxTransform(Transform): diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py index def90125c..b266b955d 100644 --- a/sphinx/util/__init__.py +++ b/sphinx/util/__init__.py @@ -138,7 +138,7 @@ class FilenameUniqDict(dict): while uniquename in self._existing: i += 1 uniquename = '%s%s%s' % (base, i, ext) - self[newfile] = (set([docname]), uniquename) + self[newfile] = ({docname}, uniquename) self._existing.add(uniquename) return uniquename diff --git a/tests/test_application.py b/tests/test_application.py index 87ee72f63..6bc454311 100644 --- a/tests/test_application.py +++ b/tests/test_application.py @@ -61,7 +61,7 @@ def test_extension_in_blacklist(app, status, warning): @pytest.mark.filterwarnings('ignore:The config variable "source_parsers"') @pytest.mark.filterwarnings('ignore:app.add_source_parser\\(\\) does not support suffix') def test_add_source_parser(app, status, warning): - assert set(app.config.source_suffix) == set(['.rst', '.md', '.test']) + assert set(app.config.source_suffix) == {'.rst', '.md', '.test'} # .rst; only in :confval:`source_suffix` assert '.rst' not in app.registry.get_source_parsers() diff --git a/tests/test_builder.py b/tests/test_builder.py index 35197a8ef..fa64f0c1f 100644 --- a/tests/test_builder.py +++ b/tests/test_builder.py @@ -28,7 +28,7 @@ def test_incremental_reading(app): # second reading updated = app.builder.read() - assert set(updated) == set(['index', 'new']) + assert set(updated) == {'index', 'new'} assert 'autodoc' not in app.env.all_docs assert 'autodoc' not in app.env.found_docs @@ -44,4 +44,4 @@ def test_incremental_reading_for_missing_files(app): # "index" is listed up to updated because it contains references # to nonexisting downloadable or image files - assert set(updated) == set(['index']) + assert set(updated) == {'index'} diff --git a/tests/test_catalogs.py b/tests/test_catalogs.py index 14fca84d5..1355280e3 100644 --- a/tests/test_catalogs.py +++ b/tests/test_catalogs.py @@ -42,10 +42,10 @@ def test_compile_all_catalogs(app, status, warning): locale_dir = app.srcdir / 'locale' catalog_dir = locale_dir / app.config.language / 'LC_MESSAGES' - expect = set([ + expect = { x.replace('.po', '.mo') for x in find_files(catalog_dir, '.po') - ]) + } actual = set(find_files(catalog_dir, '.mo')) assert actual # not empty assert actual == expect @@ -66,7 +66,7 @@ def test_compile_specific_catalogs(app, status, warning): actual_on_boot = get_actual() # sphinx.mo might be included app.builder.compile_specific_catalogs([app.srcdir / 'admonitions.txt']) actual = get_actual() - actual_on_boot - assert actual == set(['admonitions.mo']) + assert actual == {'admonitions.mo'} @pytest.mark.usefixtures('setup_test') @@ -79,10 +79,10 @@ def test_compile_update_catalogs(app, status, warning): locale_dir = app.srcdir / 'locale' catalog_dir = locale_dir / app.config.language / 'LC_MESSAGES' - expect = set([ + expect = { x.replace('.po', '.mo') for x in find_files(catalog_dir, '.po') - ]) + } actual = set(find_files(catalog_dir, '.mo')) assert actual # not empty assert actual == expect diff --git a/tests/test_environment.py b/tests/test_environment.py index df0aa20b0..15562536f 100644 --- a/tests/test_environment.py +++ b/tests/test_environment.py @@ -25,21 +25,20 @@ def test_images(app): htmlbuilder.imgpath = 'dummy' htmlbuilder.post_process_images(tree) assert set(htmlbuilder.images.keys()) == \ - set(['subdir/img.png', 'img.png', 'subdir/simg.png', 'svgimg.svg', - 'img.foo.png']) + {'subdir/img.png', 'img.png', 'subdir/simg.png', 'svgimg.svg', 'img.foo.png'} assert set(htmlbuilder.images.values()) == \ - set(['img.png', 'img1.png', 'simg.png', 'svgimg.svg', 'img.foo.png']) + {'img.png', 'img1.png', 'simg.png', 'svgimg.svg', 'img.foo.png'} latexbuilder = LaTeXBuilder(app) latexbuilder.set_environment(app.env) latexbuilder.init() latexbuilder.post_process_images(tree) assert set(latexbuilder.images.keys()) == \ - set(['subdir/img.png', 'subdir/simg.png', 'img.png', 'img.pdf', - 'svgimg.pdf', 'img.foo.png']) + {'subdir/img.png', 'subdir/simg.png', 'img.png', 'img.pdf', + 'svgimg.pdf', 'img.foo.png'} assert set(latexbuilder.images.values()) == \ - set(['img.pdf', 'img.png', 'img1.png', 'simg.png', - 'svgimg.pdf', 'img.foo.png']) + {'img.pdf', 'img.png', 'img1.png', 'simg.png', + 'svgimg.pdf', 'img.foo.png'} @pytest.mark.sphinx('dummy') diff --git a/tests/test_environment_toctree.py b/tests/test_environment_toctree.py index c490dcedf..9d880d92c 100644 --- a/tests/test_environment_toctree.py +++ b/tests/test_environment_toctree.py @@ -75,11 +75,11 @@ def test_process_doc(app): # other collections assert app.env.toc_num_entries['index'] == 6 assert app.env.toctree_includes['index'] == ['foo', 'bar', 'baz'] - assert app.env.files_to_rebuild['foo'] == set(['index']) - assert app.env.files_to_rebuild['bar'] == set(['index']) - assert app.env.files_to_rebuild['baz'] == set(['index']) + assert app.env.files_to_rebuild['foo'] == {'index'} + assert app.env.files_to_rebuild['bar'] == {'index'} + assert app.env.files_to_rebuild['baz'] == {'index'} assert app.env.glob_toctrees == set() - assert app.env.numbered_toctrees == set(['index']) + assert app.env.numbered_toctrees == {'index'} # qux has no section title assert len(app.env.tocs['qux']) == 0 diff --git a/tests/test_ext_coverage.py b/tests/test_ext_coverage.py index d02d65feb..73181909d 100644 --- a/tests/test_ext_coverage.py +++ b/tests/test_ext_coverage.py @@ -37,7 +37,7 @@ def test_build(app, status, warning): undoc_py, undoc_c = pickle.loads((app.outdir / 'undoc.pickle').bytes()) assert len(undoc_c) == 1 # the key is the full path to the header file, which isn't testable - assert list(undoc_c.values())[0] == set([('function', 'Py_SphinxTest')]) + assert list(undoc_c.values())[0] == {('function', 'Py_SphinxTest')} assert 'autodoc_target' in undoc_py assert 'funcs' in undoc_py['autodoc_target'] diff --git a/tests/test_ext_inheritance_diagram.py b/tests/test_ext_inheritance_diagram.py index 9e5d3e60f..03b5bb689 100644 --- a/tests/test_ext_inheritance_diagram.py +++ b/tests/test_ext_inheritance_diagram.py @@ -121,7 +121,7 @@ def test_import_classes(rootdir): # all of classes in the module classes = import_classes('sphinx.application', None) - assert set(classes) == set([Sphinx, TemplateBridge]) + assert set(classes) == {Sphinx, TemplateBridge} # specified class in the module classes = import_classes('sphinx.application.Sphinx', None) diff --git a/tests/test_ext_napoleon_docstring.py b/tests/test_ext_napoleon_docstring.py index fa75062b3..86ded7d89 100644 --- a/tests/test_ext_napoleon_docstring.py +++ b/tests/test_ext_napoleon_docstring.py @@ -36,7 +36,7 @@ class NamedtupleSubclass(namedtuple('NamedtupleSubclass', ('attr1', 'attr2'))): __slots__ = () def __new__(cls, attr1, attr2=None): - return super(NamedtupleSubclass, cls).__new__(cls, attr1, attr2) + return super().__new__(cls, attr1, attr2) class BaseDocstringTest(TestCase): diff --git a/tests/test_ext_todo.py b/tests/test_ext_todo.py index 2ce7ac95e..3fca33f6f 100644 --- a/tests/test_ext_todo.py +++ b/tests/test_ext_todo.py @@ -54,9 +54,9 @@ def test_todo(app, status, warning): # check handled event assert len(todos) == 3 - assert set(todo[1].astext() for todo in todos) == {'todo in foo', - 'todo in bar', - 'todo in param field'} + assert {todo[1].astext() for todo in todos} == {'todo in foo', + 'todo in bar', + 'todo in param field'} @pytest.mark.sphinx('html', testroot='ext-todo', freshenv=True, @@ -92,9 +92,9 @@ def test_todo_not_included(app, status, warning): # check handled event assert len(todos) == 3 - assert set(todo[1].astext() for todo in todos) == {'todo in foo', - 'todo in bar', - 'todo in param field'} + assert {todo[1].astext() for todo in todos} == {'todo in foo', + 'todo in bar', + 'todo in param field'} @pytest.mark.sphinx('latex', testroot='ext-todo', freshenv=True, diff --git a/tests/test_intl.py b/tests/test_intl.py index 367409fd9..35e8f6909 100644 --- a/tests/test_intl.py +++ b/tests/test_intl.py @@ -829,8 +829,7 @@ def test_xml_footnote_backlinks(app): para0 = secs[0].findall('paragraph') refs0 = para0[0].findall('footnote_reference') - refid2id = dict([ - (r.attrib.get('refid'), r.attrib.get('ids')) for r in refs0]) + refid2id = {r.attrib.get('refid'): r.attrib.get('ids') for r in refs0} footnote0 = secs[0].findall('footnote') for footnote in footnote0: diff --git a/tests/test_util_i18n.py b/tests/test_util_i18n.py index b25e29575..a0d0d5577 100644 --- a/tests/test_util_i18n.py +++ b/tests/test_util_i18n.py @@ -70,13 +70,13 @@ def test_get_catalogs_for_xx(tempdir): (tempdir / 'loc1' / 'xx' / 'LC_ALL' / 'test7.po').write_text('#') catalogs = i18n.find_catalog_source_files([tempdir / 'loc1'], 'xx', force_all=False) - domains = set(c.domain for c in catalogs) - assert domains == set([ + domains = {c.domain for c in catalogs} + assert domains == { 'test1', 'test2', 'sub/test4', 'sub/test5', - ]) + } def test_get_catalogs_for_en(tempdir): @@ -86,8 +86,8 @@ def test_get_catalogs_for_en(tempdir): (tempdir / 'loc1' / 'en' / 'LC_MESSAGES' / 'en_dom.po').write_text('#') catalogs = i18n.find_catalog_source_files([tempdir / 'loc1'], 'en', force_all=False) - domains = set(c.domain for c in catalogs) - assert domains == set(['en_dom']) + domains = {c.domain for c in catalogs} + assert domains == {'en_dom'} def test_get_catalogs_with_non_existent_locale(tempdir): @@ -121,13 +121,13 @@ def test_get_catalogs_for_xx_without_outdated(tempdir): assert not catalogs catalogs = i18n.find_catalog_source_files([tempdir / 'loc1'], 'xx', force_all=True) - domains = set(c.domain for c in catalogs) - assert domains == set([ + domains = {c.domain for c in catalogs} + assert domains == { 'test1', 'test2', 'sub/test4', 'sub/test5', - ]) + } def test_get_catalogs_from_multiple_locale_dirs(tempdir): @@ -152,8 +152,8 @@ def test_get_catalogs_with_compact(tempdir): (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub' / 'test4.po').write_text('#') catalogs = i18n.find_catalog_source_files([tempdir / 'loc1'], 'xx', gettext_compact=True) - domains = set(c.domain for c in catalogs) - assert domains == set(['test1', 'test2', 'sub/test3', 'sub/test4']) + domains = {c.domain for c in catalogs} + assert domains == {'test1', 'test2', 'sub/test3', 'sub/test4'} def test_get_catalogs_excluded(tempdir): @@ -163,8 +163,8 @@ def test_get_catalogs_excluded(tempdir): catalogs = i18n.find_catalog_source_files( [tempdir / 'loc1'], 'en', force_all=False, excluded=lambda path: '.git' in path) - domains = set(c.domain for c in catalogs) - assert domains == set(['en_dom']) + domains = {c.domain for c in catalogs} + assert domains == {'en_dom'} def test_format_date(): diff --git a/tests/test_util_inspect.py b/tests/test_util_inspect.py index 6cb2a4b1b..ba2bb7501 100644 --- a/tests/test_util_inspect.py +++ b/tests/test_util_inspect.py @@ -352,7 +352,7 @@ def test_set_sorting(): def test_set_sorting_fallback(): - set_ = set((None, 1)) + set_ = {None, 1} description = inspect.object_description(set_) assert description in ("{1, None}", "{None, 1}") diff --git a/utils/jssplitter_generator.py b/utils/jssplitter_generator.py index 255bc0a98..360ce7d15 100644 --- a/utils/jssplitter_generator.py +++ b/utils/jssplitter_generator.py @@ -79,7 +79,7 @@ function splitQuery(query) { } ''' % (fold(singles, ','), fold(ranges, '],')) -js_test_src = u''' +js_test_src = ''' // This is regression test for https://github.com/sphinx-doc/sphinx/issues/3150 // generated by compat_regexp_generator.py // it needs node.js for testing From 4e27cc465a0ff71ff06e302aad1f7e2196fe3f39 Mon Sep 17 00:00:00 2001 From: Michael Goerz <goerz@stanford.edu> Date: Sun, 10 Mar 2019 18:37:05 -0400 Subject: [PATCH 094/121] Fix docs of inheritance-diagram "parts" option The documentation now correctly describes the behavior of the ``parts`` option in an inheritance-diagram directive: it gives the number of parts that are *kept* not dropped. The option now also accepts negative values, which drops parts from the left (which is the what the documentation incorrectly claimed the option would do for positive values) As a form of testing of the new functionality, the documentation for the inheritance_diagram extension now includes a section "Examples" that demonstrate the different possibilities. This would fail to build without the patch. Closes #4872 --- CHANGES | 1 + doc/conf.py | 2 +- doc/usage/extensions/inheritance.rst | 51 +++++++++++++++++++++++++--- sphinx/ext/inheritance_diagram.py | 16 ++++++--- 4 files changed, 59 insertions(+), 11 deletions(-) diff --git a/CHANGES b/CHANGES index d15580368..5c361e207 100644 --- a/CHANGES +++ b/CHANGES @@ -33,6 +33,7 @@ Bugs fixed * #2155: Support ``code`` directive * C++, fix parsing of braced initializers. * #6172: AttributeError is raised for old styled index nodes +* #4872: ext.inheritance_diagram: correctly describe behavior of ``parts`` option in docs, allow negative values. Testing -------- diff --git a/doc/conf.py b/doc/conf.py index d32ee47ae..16594f038 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -7,7 +7,7 @@ import sphinx extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', 'sphinx.ext.autosummary', 'sphinx.ext.extlinks', - 'sphinx.ext.viewcode'] + 'sphinx.ext.viewcode', 'sphinx.ext.inheritance_diagram'] master_doc = 'contents' templates_path = ['_templates'] diff --git a/doc/usage/extensions/inheritance.rst b/doc/usage/extensions/inheritance.rst index c66f4130f..8e98b0bc1 100644 --- a/doc/usage/extensions/inheritance.rst +++ b/doc/usage/extensions/inheritance.rst @@ -25,12 +25,18 @@ It adds this directive: graph. This directive supports an option called ``parts`` that, if given, must be an - integer, advising the directive to remove that many parts of module names - from the displayed names. (For example, if all your class names start with - ``lib.``, you can give ``:parts: 1`` to remove that prefix from the displayed - node names.) + integer, advising the directive to keep that many dot-separated parts + in the displayed names (from right to left). For example, ``parts=1`` will + only display class names, without the names of the modules that contain + them. - It also supports a ``private-bases`` flag option; if given, private base + .. versionchanged:: 2.0 + The value of for ``parts`` can also be negative, indicating how many + parts to drop from the left. For example, if all your class names start + with ``lib.``, you can give ``:parts: -1`` to remove that prefix from the + displayed node names. + + The directive also supports a ``private-bases`` flag option; if given, private base classes (those whose name starts with ``_``) will be included. You can use ``caption`` option to give a caption to the diagram. @@ -92,6 +98,41 @@ It adds this directive: Added ``top-classes`` option to limit the scope of inheritance graphs. +Examples +-------- + +The following are different inheritance diagrams for the internal +``InheritanceDiagram`` class that implements the directive. + +With full names:: + + .. inheritance-diagram:: sphinx.ext.inheritance_diagram.InheritanceDiagram + +.. inheritance-diagram:: sphinx.ext.inheritance_diagram.InheritanceDiagram + + +Showing class names only:: + + .. inheritance-diagram:: sphinx.ext.inheritance_diagram.InheritanceDiagram + :parts: 1 + +.. inheritance-diagram:: sphinx.ext.inheritance_diagram.InheritanceDiagram + :parts: 1 + +Stopping the diagram at :class:`sphinx.util.docutils.SphinxDirective` (the +highest superclass still part of Sphinx), and dropping the common left-most +part (``sphinx``) from all names:: + + .. inheritance-diagram:: sphinx.ext.inheritance_diagram.InheritanceDiagram + :top-classes: sphinx.util.docutils.SphinxDirective + :parts: -1 + +.. inheritance-diagram:: sphinx.ext.inheritance_diagram.InheritanceDiagram + :top-classes: sphinx.util.docutils.SphinxDirective + :parts: -1 + + + Configuration ------------- diff --git a/sphinx/ext/inheritance_diagram.py b/sphinx/ext/inheritance_diagram.py index cfdac4803..df3ff01ed 100644 --- a/sphinx/ext/inheritance_diagram.py +++ b/sphinx/ext/inheritance_diagram.py @@ -167,11 +167,17 @@ class InheritanceGraph: """Return name and bases for all classes that are ancestors of *classes*. - *parts* gives the number of dotted name parts that is removed from the - displayed node names. + *parts* gives the number of dotted name parts to include in the + displayed node names, from right to left. If given as a negative, the + number of parts to drop from the left. A value of 0 displays the full + dotted name. E.g. ``sphinx.ext.inheritance_diagram.InheritanceGraph`` + with ``parts=2`` or ``parts=-2`` gets displayed as + ``inheritance_diagram.InheritanceGraph``, and as + ``ext.inheritance_diagram.InheritanceGraph`` with ``parts=3`` or + ``parts=-1``. - *top_classes* gives the name(s) of the top most ancestor class to traverse - to. Multiple names can be specified separated by comma. + *top_classes* gives the name(s) of the top most ancestor class to + traverse to. Multiple names can be specified separated by comma. """ all_classes = {} py_builtins = vars(builtins).values() @@ -332,7 +338,7 @@ class InheritanceDiagram(SphinxDirective): optional_arguments = 0 final_argument_whitespace = True option_spec = { - 'parts': directives.nonnegative_int, + 'parts': int, 'private-bases': directives.flag, 'caption': directives.unchanged, 'top-classes': directives.unchanged_required, From ac6de0a2d9d1b7a81a0dbbc61decca7b54ec91a9 Mon Sep 17 00:00:00 2001 From: Michael Goerz <goerz@stanford.edu> Date: Mon, 11 Mar 2019 14:35:50 -0400 Subject: [PATCH 095/121] Install graphiz on Travis This is required to generate inheritance diagrams (as there is now an example inheritance diagram in the documentation of the extension generating such diagrams) --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 5a49bf106..7bc822d70 100644 --- a/.travis.yml +++ b/.travis.yml @@ -37,6 +37,7 @@ matrix: services: xvfb install: + - "sudo apt-get install graphviz" - if [ $IS_PYTHON = true ]; then pip install -U tox codecov; fi - if [ $IS_PYTHON = false ]; then npm install; fi From 79da4c777dcb032650c74f35253eb2bf7c95732b Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Tue, 19 Mar 2019 01:19:59 +0900 Subject: [PATCH 096/121] Update CHANGES --- CHANGES | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 5c361e207..0c6f70d10 100644 --- a/CHANGES +++ b/CHANGES @@ -33,7 +33,8 @@ Bugs fixed * #2155: Support ``code`` directive * C++, fix parsing of braced initializers. * #6172: AttributeError is raised for old styled index nodes -* #4872: ext.inheritance_diagram: correctly describe behavior of ``parts`` option in docs, allow negative values. +* #4872: inheritance_diagram: correctly describe behavior of ``parts`` option in + docs, allow negative values. Testing -------- From 987cf555d8d7fb08a9d59d6a1d26ac575a788bb5 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Thu, 21 Mar 2019 02:18:06 +0900 Subject: [PATCH 097/121] Bump to 2.0.0 beta2 --- CHANGES | 13 ++----------- sphinx/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 13 deletions(-) diff --git a/CHANGES b/CHANGES index 9608e3aa3..3dbb82b50 100644 --- a/CHANGES +++ b/CHANGES @@ -1,20 +1,11 @@ -Release 2.0.0 beta2 (in development) -==================================== - -Dependencies ------------- +Release 2.0.0 beta2 (released Mar 21, 2019) +=========================================== Incompatible changes -------------------- * texinfo: image files are copied into ``name-figure`` directory -Deprecated ----------- - -Features added --------------- - Bugs fixed ---------- diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 6c15f920f..c99d092c2 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -32,8 +32,8 @@ if 'PYTHONWARNINGS' not in os.environ: warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '2.0.0+' -__released__ = '2.0.0' # used when Sphinx builds its own docs +__version__ = '2.0.0b2' +__released__ = '2.0.0b2' # used when Sphinx builds its own docs #: Version info for better programmatic use. #: From b96a315b5f80c7127b5fad7c6c25ce3a1056ad48 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Thu, 21 Mar 2019 02:20:33 +0900 Subject: [PATCH 098/121] Bump version --- CHANGES | 21 +++++++++++++++++++++ sphinx/__init__.py | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 3dbb82b50..eb8a677b5 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,24 @@ +Release 2.0.0 beta3 (in development) +==================================== + +Dependencies +------------ + +Incompatible changes +-------------------- + +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + Release 2.0.0 beta2 (released Mar 21, 2019) =========================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index c99d092c2..cab6a6a0d 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -32,8 +32,8 @@ if 'PYTHONWARNINGS' not in os.environ: warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '2.0.0b2' -__released__ = '2.0.0b2' # used when Sphinx builds its own docs +__version__ = '2.0.0+' +__released__ = '2.0.0' # used when Sphinx builds its own docs #: Version info for better programmatic use. #: @@ -43,7 +43,7 @@ __released__ = '2.0.0b2' # used when Sphinx builds its own docs #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (2, 0, 0, 'beta', 2) +version_info = (2, 0, 0, 'beta', 3) package_dir = path.abspath(path.dirname(__file__)) From fade0d0c1b82e6ad3c72991ff34d3568150e7442 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sat, 23 Mar 2019 17:00:54 +0900 Subject: [PATCH 099/121] Add testcase for sphinx.domains.python --- tests/test_domain_py.py | 70 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index c4a50b742..87c310982 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -14,7 +14,12 @@ import pytest from docutils import nodes from sphinx import addnodes +from sphinx.addnodes import ( + desc, desc_addname, desc_annotation, desc_content, desc_name, desc_optional, + desc_parameter, desc_parameterlist, desc_returns, desc_signature +) from sphinx.domains.python import py_sig_re, _pseudo_parse_arglist, PythonDomain +from sphinx.testing import restructuredtext from sphinx.testing.util import assert_node @@ -203,3 +208,68 @@ def test_get_full_qualified_name(): kwargs = {'py:module': 'module1', 'py:class': 'Class'} node = nodes.reference(reftarget='func', **kwargs) assert domain.get_full_qualified_name(node) == 'module1.Class.func' + + +def test_pyfunction_signature(app): + text = ".. py:function:: hello(name: str) -> str" + doctree = restructuredtext.parse(app, text) + assert_node(doctree, (addnodes.index, + [desc, ([desc_signature, ([desc_name, "hello"], + desc_parameterlist, + [desc_returns, "str"])], + desc_content)])) + assert_node(doctree[1], addnodes.desc, desctype="function", + domain="py", objtype="function", noindex=False) + assert_node(doctree[1][0][1], [desc_parameterlist, desc_parameter, "name: str"]) + + +def test_optional_pyfunction_signature(app): + text = ".. py:function:: compile(source [, filename [, symbol]]) -> ast object" + doctree = restructuredtext.parse(app, text) + assert_node(doctree, (addnodes.index, + [desc, ([desc_signature, ([desc_name, "compile"], + desc_parameterlist, + [desc_returns, "ast object"])], + desc_content)])) + assert_node(doctree[1], addnodes.desc, desctype="function", + domain="py", objtype="function", noindex=False) + assert_node(doctree[1][0][1], + ([desc_parameter, "source"], + [desc_optional, ([desc_parameter, "filename"], + [desc_optional, desc_parameter, "symbol"])])) + + +def test_pyexception_signature(app): + text = ".. py:exception:: exceptions.IOError" + doctree = restructuredtext.parse(app, text) + assert_node(doctree, (addnodes.index, + [desc, ([desc_signature, ([desc_annotation, "exception "], + [desc_addname, "exceptions."], + [desc_name, "IOError"])], + desc_content)])) + assert_node(doctree[1], desc, desctype="exception", + domain="py", objtype="exception", noindex=False) + + +def test_exceptions_module_is_ignored(app): + text = (".. py:exception:: IOError\n" + " :module: exceptions\n") + doctree = restructuredtext.parse(app, text) + assert_node(doctree, (addnodes.index, + [desc, ([desc_signature, ([desc_annotation, "exception "], + [desc_name, "IOError"])], + desc_content)])) + assert_node(doctree[1], desc, desctype="exception", + domain="py", objtype="exception", noindex=False) + + +def test_pydata_signature(app): + text = (".. py:data:: version\n" + " :annotation: = 1\n") + doctree = restructuredtext.parse(app, text) + assert_node(doctree, (addnodes.index, + [desc, ([desc_signature, ([desc_name, "version"], + [desc_annotation, " = 1"])], + desc_content)])) + assert_node(doctree[1], addnodes.desc, desctype="data", + domain="py", objtype="data", noindex=False) From a990f9ff724bc04e434167a0f98b60583f973ce8 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Fri, 22 Mar 2019 00:03:53 +0900 Subject: [PATCH 100/121] Add ObjectDescription.get_field_type_map() Conceal caching mechanism of Field classes to ObjectDescription class. This deprecates DocFieldTransformer.preprocess_field_types(). --- CHANGES | 1 + doc/extdev/deprecated.rst | 5 +++++ sphinx/directives/__init__.py | 21 +++++++++++++++++++-- sphinx/util/docfields.py | 12 +++++++----- 4 files changed, 32 insertions(+), 7 deletions(-) diff --git a/CHANGES b/CHANGES index e8721e5cb..c3d63b4f4 100644 --- a/CHANGES +++ b/CHANGES @@ -36,6 +36,7 @@ Deprecated * ``sphinx.ext.autodoc.importer.MockLoader`` * ``sphinx.ext.autodoc.importer.mock()`` * ``sphinx.ext.autosummary.autolink_role()`` +* ``sphinx.util.docfields.DocFieldTransformer.preprocess_fieldtypes()`` * ``sphinx.util.node.find_source_node()`` * ``sphinx.util.i18n.find_catalog()`` * ``sphinx.util.i18n.find_catalog_files()`` diff --git a/doc/extdev/deprecated.rst b/doc/extdev/deprecated.rst index b30537073..99abc56eb 100644 --- a/doc/extdev/deprecated.rst +++ b/doc/extdev/deprecated.rst @@ -141,6 +141,11 @@ The following is a list of deprecated interfaces. - 4.0 - ``sphinx.ext.autosummary.AutoLink`` + * - ``sphinx.util.docfields.DocFieldTransformer.preprocess_fieldtypes()`` + - 2.1 + - 4.0 + - ``sphinx.directives.ObjectDescription.get_field_type_map()`` + * - ``sphinx.util.node.find_source_node()`` - 2.1 - 4.0 diff --git a/sphinx/directives/__init__.py b/sphinx/directives/__init__.py index e21eb7f6e..fd7bec586 100644 --- a/sphinx/directives/__init__.py +++ b/sphinx/directives/__init__.py @@ -17,12 +17,12 @@ from docutils.parsers.rst import directives, roles from sphinx import addnodes from sphinx.deprecation import RemovedInSphinx40Warning, deprecated_alias from sphinx.util import docutils -from sphinx.util.docfields import DocFieldTransformer +from sphinx.util.docfields import DocFieldTransformer, TypedField from sphinx.util.docutils import SphinxDirective if False: # For type annotation - from typing import Any, Dict # NOQA + from typing import Any, Dict, Tuple # NOQA from sphinx.application import Sphinx # NOQA from sphinx.util.docfields import Field # NOQA from sphinx.util.typing import DirectiveOption # NOQA @@ -67,6 +67,23 @@ class ObjectDescription(SphinxDirective): objtype = None # type: str indexnode = None # type: addnodes.index + # Warning: this might be removed in future version. Don't touch this from extensions. + _doc_field_type_map = {} # type: Dict[str, Tuple[Field, bool]] + + def get_field_type_map(self): + # type: () -> Dict[str, Tuple[Field, bool]] + if self._doc_field_type_map == {}: + for field in self.doc_field_types: + for name in field.names: + self._doc_field_type_map[name] = (field, False) + + if field.is_typed: + typed_field = cast(TypedField, field) + for name in typed_field.typenames: + self._doc_field_type_map[name] = (field, True) + + return self._doc_field_type_map + def get_signatures(self): # type: () -> List[str] """ diff --git a/sphinx/util/docfields.py b/sphinx/util/docfields.py index 591ca0786..9b19d229d 100644 --- a/sphinx/util/docfields.py +++ b/sphinx/util/docfields.py @@ -9,15 +9,18 @@ :license: BSD, see LICENSE for details. """ +import warnings from typing import List, Tuple, cast from docutils import nodes from sphinx import addnodes +from sphinx.deprecation import RemovedInSphinx40Warning if False: # For type annotation from typing import Any, Dict, Type, Union # NOQA + from sphinx.directive import ObjectDescription # NOQA from sphinx.environment import BuildEnvironment # NOQA from sphinx.util.typing import TextlikeNode # NOQA @@ -244,15 +247,14 @@ class DocFieldTransformer: typemap = None # type: Dict[str, Tuple[Field, bool]] def __init__(self, directive): - # type: (Any) -> None + # type: (ObjectDescription) -> None self.directive = directive - if '_doc_field_type_map' not in directive.__class__.__dict__: - directive.__class__._doc_field_type_map = \ - self.preprocess_fieldtypes(directive.__class__.doc_field_types) - self.typemap = directive._doc_field_type_map + self.typemap = directive.get_field_type_map() def preprocess_fieldtypes(self, types): # type: (List[Field]) -> Dict[str, Tuple[Field, bool]] + warnings.warn('DocFieldTransformer.preprocess_fieldtypes() is deprecated.', + RemovedInSphinx40Warning) typemap = {} for fieldtype in types: for name in fieldtype.names: From 2c75d273daaf5ba8c4cfd68d97ab098dad806ed1 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sat, 23 Mar 2019 17:33:03 +0900 Subject: [PATCH 101/121] Add an incompatible change entry (refs: #6186) --- CHANGES | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGES b/CHANGES index eb8a677b5..717517e70 100644 --- a/CHANGES +++ b/CHANGES @@ -89,6 +89,7 @@ Incompatible changes * Drop python 2.7 and 3.4 support * Drop docutils 0.11 support +* Drop features and APIs deprecated in 1.7.x * The default setting for :confval:`master_doc` is changed to ``'index'`` which has been longly used as default of sphinx-quickstart. * LaTeX: Move message resources to ``sphinxmessage.sty`` From 3d4fc8c47cae2d8c5c5b85015e7ca2ff5ed2e41b Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Mon, 4 Mar 2019 22:47:28 +0900 Subject: [PATCH 102/121] ``math`` directive does not support ``:class:`` option ``:class:`` option is a common options for all directives. But our implementation does not support it so far. This adds support for the option. --- CHANGES | 1 + sphinx/directives/patches.py | 2 ++ 2 files changed, 3 insertions(+) diff --git a/CHANGES b/CHANGES index e8721e5cb..6d63bd8d4 100644 --- a/CHANGES +++ b/CHANGES @@ -49,6 +49,7 @@ Features added * Add a helper class ``sphinx.transforms.post_transforms.SphinxPostTransform`` * Add a helper method ``SphinxDirective.set_source_info()`` * #6180: Support ``--keep-going`` with BuildDoc setup command +* ``math`` directive now supports ``:class:`` option Bugs fixed ---------- diff --git a/sphinx/directives/patches.py b/sphinx/directives/patches.py index ee8014aa6..c102f3461 100644 --- a/sphinx/directives/patches.py +++ b/sphinx/directives/patches.py @@ -165,6 +165,7 @@ class MathDirective(SphinxDirective): option_spec = { 'label': directives.unchanged, 'name': directives.unchanged, + 'class': directives.class_option, 'nowrap': directives.flag, } @@ -175,6 +176,7 @@ class MathDirective(SphinxDirective): latex = self.arguments[0] + '\n\n' + latex label = self.options.get('label', self.options.get('name')) node = nodes.math_block(latex, latex, + classes=self.options.get('class', []), docname=self.env.docname, number=None, label=label, From 8980f637c9556357fd04a154efe50bb4f866cf55 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sat, 23 Mar 2019 17:00:54 +0900 Subject: [PATCH 103/121] Add testcase for sphinx.domains.python --- tests/test_domain_py.py | 70 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index c4a50b742..87c310982 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -14,7 +14,12 @@ import pytest from docutils import nodes from sphinx import addnodes +from sphinx.addnodes import ( + desc, desc_addname, desc_annotation, desc_content, desc_name, desc_optional, + desc_parameter, desc_parameterlist, desc_returns, desc_signature +) from sphinx.domains.python import py_sig_re, _pseudo_parse_arglist, PythonDomain +from sphinx.testing import restructuredtext from sphinx.testing.util import assert_node @@ -203,3 +208,68 @@ def test_get_full_qualified_name(): kwargs = {'py:module': 'module1', 'py:class': 'Class'} node = nodes.reference(reftarget='func', **kwargs) assert domain.get_full_qualified_name(node) == 'module1.Class.func' + + +def test_pyfunction_signature(app): + text = ".. py:function:: hello(name: str) -> str" + doctree = restructuredtext.parse(app, text) + assert_node(doctree, (addnodes.index, + [desc, ([desc_signature, ([desc_name, "hello"], + desc_parameterlist, + [desc_returns, "str"])], + desc_content)])) + assert_node(doctree[1], addnodes.desc, desctype="function", + domain="py", objtype="function", noindex=False) + assert_node(doctree[1][0][1], [desc_parameterlist, desc_parameter, "name: str"]) + + +def test_optional_pyfunction_signature(app): + text = ".. py:function:: compile(source [, filename [, symbol]]) -> ast object" + doctree = restructuredtext.parse(app, text) + assert_node(doctree, (addnodes.index, + [desc, ([desc_signature, ([desc_name, "compile"], + desc_parameterlist, + [desc_returns, "ast object"])], + desc_content)])) + assert_node(doctree[1], addnodes.desc, desctype="function", + domain="py", objtype="function", noindex=False) + assert_node(doctree[1][0][1], + ([desc_parameter, "source"], + [desc_optional, ([desc_parameter, "filename"], + [desc_optional, desc_parameter, "symbol"])])) + + +def test_pyexception_signature(app): + text = ".. py:exception:: exceptions.IOError" + doctree = restructuredtext.parse(app, text) + assert_node(doctree, (addnodes.index, + [desc, ([desc_signature, ([desc_annotation, "exception "], + [desc_addname, "exceptions."], + [desc_name, "IOError"])], + desc_content)])) + assert_node(doctree[1], desc, desctype="exception", + domain="py", objtype="exception", noindex=False) + + +def test_exceptions_module_is_ignored(app): + text = (".. py:exception:: IOError\n" + " :module: exceptions\n") + doctree = restructuredtext.parse(app, text) + assert_node(doctree, (addnodes.index, + [desc, ([desc_signature, ([desc_annotation, "exception "], + [desc_name, "IOError"])], + desc_content)])) + assert_node(doctree[1], desc, desctype="exception", + domain="py", objtype="exception", noindex=False) + + +def test_pydata_signature(app): + text = (".. py:data:: version\n" + " :annotation: = 1\n") + doctree = restructuredtext.parse(app, text) + assert_node(doctree, (addnodes.index, + [desc, ([desc_signature, ([desc_name, "version"], + [desc_annotation, " = 1"])], + desc_content)])) + assert_node(doctree[1], addnodes.desc, desctype="data", + domain="py", objtype="data", noindex=False) From 700be75a73b17bf07fd32c295fdd127e3bd2275c Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sat, 23 Mar 2019 22:32:37 +0900 Subject: [PATCH 104/121] Fix #6196: py domain: unexpected prefix is generated --- CHANGES | 2 ++ sphinx/domains/python.py | 3 ++- tests/test_domain_py.py | 17 +++++++++++++++++ 3 files changed, 21 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 717517e70..a7f2db423 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,8 @@ Features added Bugs fixed ---------- +* #6196: py domain: unexpected prefix is generated + Testing -------- diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index 6c4030a6c..73d6d2c11 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -262,7 +262,8 @@ class PyObject(ObjectDescription): classname = self.env.ref_context.get('py:class') if classname: add_module = False - if name_prefix and name_prefix.startswith(classname): + if name_prefix and (name_prefix == classname or + name_prefix.startswith(classname + ".")): fullname = name_prefix + name # class name is given again in the signature name_prefix = name_prefix[len(classname):].lstrip('.') diff --git a/tests/test_domain_py.py b/tests/test_domain_py.py index 87c310982..fb6e70914 100644 --- a/tests/test_domain_py.py +++ b/tests/test_domain_py.py @@ -273,3 +273,20 @@ def test_pydata_signature(app): desc_content)])) assert_node(doctree[1], addnodes.desc, desctype="data", domain="py", objtype="data", noindex=False) + + +def test_pyobject_prefix(app): + text = (".. py:class:: Foo\n" + "\n" + " .. py:method:: Foo.say\n" + " .. py:method:: FooBar.say") + doctree = restructuredtext.parse(app, text) + assert_node(doctree, (addnodes.index, + [desc, ([desc_signature, ([desc_annotation, "class "], + [desc_name, "Foo"])], + [desc_content, (addnodes.index, + desc, + addnodes.index, + desc)])])) + assert doctree[1][1][1].astext().strip() == 'say' # prefix is stripped + assert doctree[1][1][3].astext().strip() == 'FooBar.say' # not stripped From 12b682958ef04df7d2d1d7e1b9b0d5dad554a26c Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sat, 23 Mar 2019 22:45:15 +0900 Subject: [PATCH 105/121] refactor PyObject class --- sphinx/domains/python.py | 48 ++++++++++++++++++---------------------- 1 file changed, 21 insertions(+), 27 deletions(-) diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index 6c4030a6c..b2b23aa12 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -254,30 +254,29 @@ class PyObject(ObjectDescription): m = py_sig_re.match(sig) if m is None: raise ValueError - name_prefix, name, arglist, retann = m.groups() + prefix, name, arglist, retann = m.groups() # determine module and class name (if applicable), as well as full name - modname = self.options.get( - 'module', self.env.ref_context.get('py:module')) + modname = self.options.get('module', self.env.ref_context.get('py:module')) classname = self.env.ref_context.get('py:class') if classname: add_module = False - if name_prefix and name_prefix.startswith(classname): - fullname = name_prefix + name + if prefix and prefix.startswith(classname): + fullname = prefix + name # class name is given again in the signature - name_prefix = name_prefix[len(classname):].lstrip('.') - elif name_prefix: + prefix = prefix[len(classname):].lstrip('.') + elif prefix: # class name is given in the signature, but different # (shouldn't happen) - fullname = classname + '.' + name_prefix + name + fullname = classname + '.' + prefix + name else: # class name is not given in the signature fullname = classname + '.' + name else: add_module = True - if name_prefix: - classname = name_prefix.rstrip('.') - fullname = name_prefix + name + if prefix: + classname = prefix.rstrip('.') + fullname = prefix + name else: classname = '' fullname = name @@ -290,36 +289,31 @@ class PyObject(ObjectDescription): if sig_prefix: signode += addnodes.desc_annotation(sig_prefix, sig_prefix) - if name_prefix: - signode += addnodes.desc_addname(name_prefix, name_prefix) - # exceptions are a special case, since they are documented in the - # 'exceptions' module. + if prefix: + signode += addnodes.desc_addname(prefix, prefix) elif add_module and self.env.config.add_module_names: - modname = self.options.get( - 'module', self.env.ref_context.get('py:module')) if modname and modname != 'exceptions': + # exceptions are a special case, since they are documented in the + # 'exceptions' module. nodetext = modname + '.' signode += addnodes.desc_addname(nodetext, nodetext) - anno = self.options.get('annotation') - signode += addnodes.desc_name(name, name) - if not arglist: + if arglist: + _pseudo_parse_arglist(signode, arglist) + else: if self.needs_arglist(): # for callables, add an empty parameter list signode += addnodes.desc_parameterlist() - if retann: - signode += addnodes.desc_returns(retann, retann) - if anno: - signode += addnodes.desc_annotation(' ' + anno, ' ' + anno) - return fullname, name_prefix - _pseudo_parse_arglist(signode, arglist) if retann: signode += addnodes.desc_returns(retann, retann) + + anno = self.options.get('annotation') if anno: signode += addnodes.desc_annotation(' ' + anno, ' ' + anno) - return fullname, name_prefix + + return fullname, prefix def get_index_text(self, modname, name): # type: (str, str) -> str From ab268c3138f4ca7a7255063bac960c552eb77058 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sun, 24 Mar 2019 17:32:08 +0900 Subject: [PATCH 106/121] refactor: test_ext_todo --- tests/test_ext_todo.py | 39 ++++++++++++++++----------------------- 1 file changed, 16 insertions(+), 23 deletions(-) diff --git a/tests/test_ext_todo.py b/tests/test_ext_todo.py index 3fca33f6f..b53ac3f72 100644 --- a/tests/test_ext_todo.py +++ b/tests/test_ext_todo.py @@ -30,23 +30,19 @@ def test_todo(app, status, warning): # check todolist content = (app.outdir / 'index.html').text() - html = ('<p class="admonition-title">Todo</p>\n' - '<p>todo in foo</p>') - assert re.search(html, content, re.S) + assert ('<p class="admonition-title">Todo</p>\n' + '<p>todo in foo</p>') in content - html = ('<p class="admonition-title">Todo</p>\n' - '<p>todo in bar</p>') - assert re.search(html, content, re.S) + assert ('<p class="admonition-title">Todo</p>\n' + '<p>todo in bar</p>') in content # check todo content = (app.outdir / 'foo.html').text() - html = ('<p class="admonition-title">Todo</p>\n' - '<p>todo in foo</p>') - assert re.search(html, content, re.S) + assert ('<p class="admonition-title">Todo</p>\n' + '<p>todo in foo</p>') in content - html = ('<p class="admonition-title">Todo</p>\n' - '<p>todo in param field</p>') - assert re.search(html, content, re.S) + assert ('<p class="admonition-title">Todo</p>\n' + '<p>todo in param field</p>') in content # check emitted warnings assert 'WARNING: TODO entry found: todo in foo' in warning.getvalue() @@ -72,19 +68,16 @@ def test_todo_not_included(app, status, warning): # check todolist content = (app.outdir / 'index.html').text() - html = ('<p class="admonition-title">Todo</p>\n' - '<p>todo in foo</p>') - assert not re.search(html, content, re.S) + assert ('<p class="admonition-title">Todo</p>\n' + '<p>todo in foo</p>') not in content - html = ('<p class="admonition-title">Todo</p>\n' - '<p>todo in bar</p>') - assert not re.search(html, content, re.S) + assert ('<p class="admonition-title">Todo</p>\n' + '<p>todo in bar</p>') not in content # check todo content = (app.outdir / 'foo.html').text() - html = ('<p class="admonition-title">Todo</p>\n' - '<p>todo in foo</p>') - assert not re.search(html, content, re.S) + assert ('<p class="admonition-title">Todo</p>\n' + '<p>todo in foo</p>') not in content # check emitted warnings assert 'WARNING: TODO entry found: todo in foo' in warning.getvalue() @@ -114,8 +107,8 @@ def test_todo_valid_link(app, status, warning): # Look for the link to foo. Note that there are two of them because the # source document uses todolist twice. We could equally well look for links # to bar. - link = r'\{\\hyperref\[\\detokenize\{(.*?foo.*?)}]\{\\sphinxcrossref{' \ - r'\\sphinxstyleemphasis{original entry}}}}' + link = (r'\{\\hyperref\[\\detokenize\{(.*?foo.*?)}]\{\\sphinxcrossref{' + r'\\sphinxstyleemphasis{original entry}}}}') m = re.findall(link, content) assert len(m) == 4 target = m[0] From 9fe962c20839aac4afe8228c95f24e034e10a6e8 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sun, 24 Mar 2019 21:46:31 +0900 Subject: [PATCH 107/121] Drop tests for deprecated modules --- tests/roots/test-changes/c-api.rst | 2 +- tests/test_util_i18n.py | 111 ----------------------------- 2 files changed, 1 insertion(+), 112 deletions(-) diff --git a/tests/roots/test-changes/c-api.rst b/tests/roots/test-changes/c-api.rst index 22c0c30c6..f0ad413cd 100644 --- a/tests/roots/test-changes/c-api.rst +++ b/tests/roots/test-changes/c-api.rst @@ -1,4 +1,4 @@ -.. highlightlang:: c +.. highlight:: c Memory diff --git a/tests/test_util_i18n.py b/tests/test_util_i18n.py index 4737d465c..4ca39d5ef 100644 --- a/tests/test_util_i18n.py +++ b/tests/test_util_i18n.py @@ -56,117 +56,6 @@ def test_catalog_write_mo(tempdir): assert read_mo(f) is not None -def test_get_catalogs_for_xx(tempdir): - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES').makedirs() - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'test1.po').write_text('#') - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'test2.po').write_text('#') - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'test3.pot').write_text('#') - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub').makedirs() - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub' / 'test4.po').write_text('#') - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub' / 'test5.po').write_text('#') - (tempdir / 'loc1' / 'en' / 'LC_MESSAGES').makedirs() - (tempdir / 'loc1' / 'en' / 'LC_MESSAGES' / 'test6.po').write_text('#') - (tempdir / 'loc1' / 'xx' / 'LC_ALL').makedirs() - (tempdir / 'loc1' / 'xx' / 'LC_ALL' / 'test7.po').write_text('#') - - catalogs = i18n.find_catalog_source_files([tempdir / 'loc1'], 'xx', force_all=False) - domains = {c.domain for c in catalogs} - assert domains == { - 'test1', - 'test2', - 'sub/test4', - 'sub/test5', - } - - -def test_get_catalogs_for_en(tempdir): - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES').makedirs() - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'xx_dom.po').write_text('#') - (tempdir / 'loc1' / 'en' / 'LC_MESSAGES').makedirs() - (tempdir / 'loc1' / 'en' / 'LC_MESSAGES' / 'en_dom.po').write_text('#') - - catalogs = i18n.find_catalog_source_files([tempdir / 'loc1'], 'en', force_all=False) - domains = {c.domain for c in catalogs} - assert domains == {'en_dom'} - - -def test_get_catalogs_with_non_existent_locale(tempdir): - catalogs = i18n.find_catalog_source_files([tempdir / 'loc1'], 'xx') - assert not catalogs - - catalogs = i18n.find_catalog_source_files([tempdir / 'loc1'], None) - assert not catalogs - - -def test_get_catalogs_with_non_existent_locale_dirs(): - catalogs = i18n.find_catalog_source_files(['dummy'], 'xx') - assert not catalogs - - -def test_get_catalogs_for_xx_without_outdated(tempdir): - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES').makedirs() - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'test1.po').write_text('#') - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'test1.mo').write_text('#') - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'test2.po').write_text('#') - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'test2.mo').write_text('#') - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'test3.pot').write_text('#') - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'test3.mo').write_text('#') - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub').makedirs() - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub' / 'test4.po').write_text('#') - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub' / 'test4.mo').write_text('#') - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub' / 'test5.po').write_text('#') - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub' / 'test5.mo').write_text('#') - - catalogs = i18n.find_catalog_source_files([tempdir / 'loc1'], 'xx', force_all=False) - assert not catalogs - - catalogs = i18n.find_catalog_source_files([tempdir / 'loc1'], 'xx', force_all=True) - domains = {c.domain for c in catalogs} - assert domains == { - 'test1', - 'test2', - 'sub/test4', - 'sub/test5', - } - - -def test_get_catalogs_from_multiple_locale_dirs(tempdir): - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES').makedirs() - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'test1.po').write_text('#') - (tempdir / 'loc2' / 'xx' / 'LC_MESSAGES').makedirs() - (tempdir / 'loc2' / 'xx' / 'LC_MESSAGES' / 'test1.po').write_text('#') - (tempdir / 'loc2' / 'xx' / 'LC_MESSAGES' / 'test2.po').write_text('#') - - catalogs = i18n.find_catalog_source_files([tempdir / 'loc1', tempdir / 'loc2'], 'xx') - domains = sorted(c.domain for c in catalogs) - assert domains == ['test1', 'test1', 'test2'] - - -@pytest.mark.filterwarnings('ignore:gettext_compact argument') -def test_get_catalogs_with_compact(tempdir): - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES').makedirs() - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'test1.po').write_text('#') - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'test2.po').write_text('#') - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub').makedirs() - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub' / 'test3.po').write_text('#') - (tempdir / 'loc1' / 'xx' / 'LC_MESSAGES' / 'sub' / 'test4.po').write_text('#') - - catalogs = i18n.find_catalog_source_files([tempdir / 'loc1'], 'xx', gettext_compact=True) - domains = {c.domain for c in catalogs} - assert domains == {'test1', 'test2', 'sub/test3', 'sub/test4'} - - -def test_get_catalogs_excluded(tempdir): - (tempdir / 'loc1' / 'en' / 'LC_MESSAGES' / '.git').makedirs() - (tempdir / 'loc1' / 'en' / 'LC_MESSAGES' / 'en_dom.po').write_text('#') - (tempdir / 'loc1' / 'en' / 'LC_MESSAGES' / '.git' / 'no_no.po').write_text('#') - - catalogs = i18n.find_catalog_source_files( - [tempdir / 'loc1'], 'en', force_all=False, excluded=lambda path: '.git' in path) - domains = {c.domain for c in catalogs} - assert domains == {'en_dom'} - - def test_format_date(): date = datetime.date(2016, 2, 7) From 8d5ef57c6ff5af1edfb6a1573165d40c93f44fe1 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sun, 24 Mar 2019 16:35:20 +0900 Subject: [PATCH 108/121] ``todo`` directive now supports ``:name:`` option --- CHANGES | 1 + sphinx/ext/todo.py | 43 ++++++++++-------------------------------- tests/test_ext_todo.py | 7 ++++--- 3 files changed, 15 insertions(+), 36 deletions(-) diff --git a/CHANGES b/CHANGES index 33ee29596..58a42e64f 100644 --- a/CHANGES +++ b/CHANGES @@ -51,6 +51,7 @@ Features added * Add a helper method ``SphinxDirective.set_source_info()`` * #6180: Support ``--keep-going`` with BuildDoc setup command * ``math`` directive now supports ``:class:`` option +* todo: ``todo`` directive now supports ``:name:`` option Bugs fixed ---------- diff --git a/sphinx/ext/todo.py b/sphinx/ext/todo.py index 3939f8ff8..1922bb49c 100644 --- a/sphinx/ext/todo.py +++ b/sphinx/ext/todo.py @@ -22,6 +22,7 @@ from sphinx.errors import NoUri from sphinx.locale import _, __ from sphinx.util import logging from sphinx.util.docutils import SphinxDirective +from sphinx.util.nodes import make_refnode from sphinx.util.texescape import tex_escape_map if False: @@ -55,6 +56,7 @@ class Todo(BaseAdmonition, SphinxDirective): final_argument_whitespace = False option_spec = { 'class': directives.class_option, + 'name': directives.unchanged, } def run(self): @@ -67,13 +69,10 @@ class Todo(BaseAdmonition, SphinxDirective): return [todo] elif isinstance(todo, todo_node): todo.insert(0, nodes.title(text=_('Todo'))) + self.add_name(todo) self.set_source_info(todo) - - targetid = 'index-%s' % self.env.new_serialno('index') - # Stash the target to be retrieved later in latex_visit_todo_node. - todo['targetref'] = '%s:%s' % (self.env.docname, targetid) - targetnode = nodes.target('', '', ids=[targetid]) - return [targetnode, todo] + self.state.document.note_explicit_target(todo) + return [todo] else: raise RuntimeError # never reached here @@ -89,20 +88,14 @@ def process_todos(app, doctree): for node in doctree.traverse(todo_node): app.emit('todo-defined', node) - try: - targetnode = node.parent[node.parent.index(node) - 1] - if not isinstance(targetnode, nodes.target): - raise IndexError - except IndexError: - targetnode = None newnode = node.deepcopy() - del newnode['ids'] + newnode['ids'] = [] env.todo_all_todos.append({ # type: ignore 'docname': env.docname, 'source': node.source or env.doc2path(env.docname), 'lineno': node.line, 'todo': newnode, - 'target': targetnode, + 'target': node['ids'][0], }) if env.config.todo_emit_warnings: @@ -167,27 +160,16 @@ def process_todo_nodes(app, doctree, fromdocname): para += nodes.Text(desc1, desc1) # Create a reference - newnode = nodes.reference('', '', internal=True) innernode = nodes.emphasis(_('original entry'), _('original entry')) try: - newnode['refuri'] = app.builder.get_relative_uri( - fromdocname, todo_info['docname']) - if 'refid' in todo_info['target']: - newnode['refuri'] += '#' + todo_info['target']['refid'] - else: - newnode['refuri'] += '#' + todo_info['target']['ids'][0] + para += make_refnode(app.builder, fromdocname, todo_info['docname'], + todo_info['target'], innernode) except NoUri: # ignore if no URI can be determined, e.g. for LaTeX output pass - newnode.append(innernode) - para += newnode para += nodes.Text(desc2, desc2) todo_entry = todo_info['todo'] - # Remove targetref from the (copied) node to avoid emitting a - # duplicate label of the original entry when we walk this node. - if 'targetref' in todo_entry: - del todo_entry['targetref'] # (Recursively) resolve references in the todo content env.resolve_references(todo_entry, todo_info['docname'], @@ -230,12 +212,7 @@ def depart_todo_node(self, node): def latex_visit_todo_node(self, node): # type: (LaTeXTranslator, todo_node) -> None self.body.append('\n\\begin{sphinxadmonition}{note}{') - # If this is the original todo node, emit a label that will be referenced by - # a hyperref in the todolist. - target = node.get('targetref') - if target is not None: - self.body.append('\\label{%s}' % target) - + self.body.append(self.hypertarget_to(node)) title_node = cast(nodes.title, node[0]) self.body.append('%s:}' % title_node.astext().translate(tex_escape_map)) node.pop(0) diff --git a/tests/test_ext_todo.py b/tests/test_ext_todo.py index b53ac3f72..1ce030208 100644 --- a/tests/test_ext_todo.py +++ b/tests/test_ext_todo.py @@ -107,14 +107,15 @@ def test_todo_valid_link(app, status, warning): # Look for the link to foo. Note that there are two of them because the # source document uses todolist twice. We could equally well look for links # to bar. - link = (r'\{\\hyperref\[\\detokenize\{(.*?foo.*?)}]\{\\sphinxcrossref{' + link = (r'{\\hyperref\[\\detokenize{(.*?foo.*?)}]{\\sphinxcrossref{' r'\\sphinxstyleemphasis{original entry}}}}') m = re.findall(link, content) assert len(m) == 4 target = m[0] # Look for the targets of this link. - labels = [m for m in re.findall(r'\\label\{([^}]*)}', content) if m == target] + labels = re.findall(r'\\label{\\detokenize{([^}]*)}}', content) + matched = [l for l in labels if l == target] # If everything is correct we should have exactly one target. - assert len(labels) == 1 + assert len(matched) == 1 From a2246152872c801fbe44c286f79973b3b4fe5479 Mon Sep 17 00:00:00 2001 From: Takayuki SHIMIZUKAWA <shimizukawa@gmail.com> Date: Mon, 25 Mar 2019 23:47:49 +0900 Subject: [PATCH 109/121] code snippet should not be a translation target --- sphinx/cmd/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/cmd/build.py b/sphinx/cmd/build.py index e19500901..ed11ea763 100644 --- a/sphinx/cmd/build.py +++ b/sphinx/cmd/build.py @@ -66,7 +66,7 @@ def handle_exception(app, args, exception, stderr=sys.stderr): print(__('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.:'), file=stderr) - print(__(' import sys; sys.setrecursionlimit(1500)'), file=stderr) + print(' import sys; sys.setrecursionlimit(1500)', file=stderr) else: print(red(__('Exception occurred:')), file=stderr) print(format_exception_cut_frames().rstrip(), file=stderr) From 60e2e8942722396d26146d1da42dfd30419559b1 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Fri, 29 Mar 2019 00:09:00 +0900 Subject: [PATCH 110/121] Merge CHANGES entries --- CHANGES | 101 ++++++++++++++++++++++++-------------------------------- 1 file changed, 44 insertions(+), 57 deletions(-) diff --git a/CHANGES b/CHANGES index a7f2db423..8ca26e1e5 100644 --- a/CHANGES +++ b/CHANGES @@ -4,63 +4,7 @@ Release 2.0.0 beta3 (in development) Dependencies ------------ -Incompatible changes --------------------- - -Deprecated ----------- - -Features added --------------- - -Bugs fixed ----------- - -* #6196: py domain: unexpected prefix is generated - -Testing --------- - -Release 2.0.0 beta2 (released Mar 21, 2019) -=========================================== - -Incompatible changes --------------------- - -* texinfo: image files are copied into ``name-figure`` directory - -Bugs fixed ----------- - -* #6096: html: Anchor links are not added to figures -* #3620: html: Defer searchindex.js rather than loading it via ajax -* #6113: html: Table cells and list items have large margins -* #5508: ``linenothreshold`` option for ``highlight`` directive was ignored -* texinfo: ``make install-info`` causes syntax error -* texinfo: ``make install-info`` fails on macOS -* #3079: texinfo: image files are not copied on ``make install-info`` -* #5391: A cross reference in heading is rendered as literal -* #5946: C++, fix ``cpp:alias`` problems in LaTeX (and singlehtml) -* #6147: classes attribute of ``citation_reference`` node is lost -* AssertionError is raised when custom ``citation_reference`` node having - classes attribute refers missing citation (refs: #6147) -* #2155: Support ``code`` directive -* C++, fix parsing of braced initializers. -* #6172: AttributeError is raised for old styled index nodes -* #4872: inheritance_diagram: correctly describe behavior of ``parts`` option in - docs, allow negative values. -* #6178: i18n: Captions missing in translations for hidden TOCs - -Testing --------- - -* Add a helper function: ``sphinx.testing.restructuredtext.parse()`` - -Release 2.0.0 beta1 (in development) -==================================== - -Dependencies ------------- +1.8.0b1 * LaTeX builder now depends on TeX Live 2015 or above. * LaTeX builder (with ``'pdflatex'`` :confval:`latex_engine`) will process @@ -89,6 +33,8 @@ Dependencies Incompatible changes -------------------- +1.8.0b1 + * Drop python 2.7 and 3.4 support * Drop docutils 0.11 support * Drop features and APIs deprecated in 1.7.x @@ -132,9 +78,15 @@ Incompatible changes * #4550: All tables and figures without ``align`` option are displayed to center * #4587: html: Output HTML5 by default +1.8.0b2 + +* texinfo: image files are copied into ``name-figure`` directory + Deprecated ---------- +1.8.0b1 + * Support for evaluating Python 2 syntax is deprecated. This includes configuration files which should be converted to Python 3. * The arguments of ``EpubBuilder.build_mimetype()``, @@ -222,6 +174,8 @@ For more details, see :ref:`deprecation APIs list <dev-deprecated-apis>`. Features added -------------- +1.8.0b1 + * #1618: The search results preview of generated HTML documentation is reader-friendlier: instead of showing the snippets as raw reStructuredText markup, Sphinx now renders the corresponding HTML. This means the Sphinx @@ -271,6 +225,8 @@ Features added Bugs fixed ---------- +1.8.0b1 + * #1682: LaTeX: writer should not translate Greek unicode, but use textgreek package * #5247: LaTeX: PDF does not build with default font config for Russian @@ -292,11 +248,42 @@ Bugs fixed * HTML search: search always returns nothing when multiple search terms are used and one term is shorter than three characters +1.8.0b2 + +* #6096: html: Anchor links are not added to figures +* #3620: html: Defer searchindex.js rather than loading it via ajax +* #6113: html: Table cells and list items have large margins +* #5508: ``linenothreshold`` option for ``highlight`` directive was ignored +* texinfo: ``make install-info`` causes syntax error +* texinfo: ``make install-info`` fails on macOS +* #3079: texinfo: image files are not copied on ``make install-info`` +* #5391: A cross reference in heading is rendered as literal +* #5946: C++, fix ``cpp:alias`` problems in LaTeX (and singlehtml) +* #6147: classes attribute of ``citation_reference`` node is lost +* AssertionError is raised when custom ``citation_reference`` node having + classes attribute refers missing citation (refs: #6147) +* #2155: Support ``code`` directive +* C++, fix parsing of braced initializers. +* #6172: AttributeError is raised for old styled index nodes +* #4872: inheritance_diagram: correctly describe behavior of ``parts`` option in + docs, allow negative values. +* #6178: i18n: Captions missing in translations for hidden TOCs + +1.8.0 final + +* #6196: py domain: unexpected prefix is generated + Testing -------- +1.8.0b1 + * Stop to use ``SPHINX_TEST_TEMPDIR`` envvar +1.8.0b2 + +* Add a helper function: ``sphinx.testing.restructuredtext.parse()`` + Release 1.8.6 (in development) Dependencies From e02af7f9600e967660ff1ab6b0a721f159703dea Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Fri, 29 Mar 2019 00:17:45 +0900 Subject: [PATCH 111/121] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 71824 -> 69487 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 1765 +++++---- sphinx/locale/bn/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 74423 -> 72078 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/ca/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 71416 -> 69102 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/cak/LC_MESSAGES/sphinx.js | 1 + sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 0 -> 69035 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 3355 ++++++++++++++++++ sphinx/locale/cs/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 71629 -> 69329 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/cy/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 71479 -> 69177 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/da/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 71324 -> 69066 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 1813 +++++----- sphinx/locale/de/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 71871 -> 69553 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 1767 +++++---- sphinx/locale/el/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 74901 -> 72560 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/eo/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 71241 -> 68939 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/es/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 72874 -> 71633 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 2129 ++++++----- sphinx/locale/et/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 71738 -> 70142 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 2133 ++++++----- sphinx/locale/eu/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 71511 -> 69205 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/fa/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 71982 -> 69680 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/fi/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 71064 -> 68762 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/fr/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 72633 -> 74330 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 2391 ++++++------- sphinx/locale/he/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 71873 -> 69558 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/hi/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 71685 -> 113306 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 3166 ++++++++--------- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 71233 -> 68931 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/hr/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 71665 -> 69350 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 1779 +++++----- sphinx/locale/hu/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 71894 -> 69583 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 1784 +++++----- sphinx/locale/id/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 71320 -> 70347 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 2308 ++++++------ sphinx/locale/it/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 71789 -> 69474 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 1764 +++++---- sphinx/locale/ja/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 74258 -> 82380 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 2653 +++++++------- sphinx/locale/ko/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 71298 -> 70528 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 2154 ++++++----- sphinx/locale/lt/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 71797 -> 69495 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/lv/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 71650 -> 69346 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/mk/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 71563 -> 69244 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 71137 -> 68834 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/ne/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 73961 -> 71623 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/nl/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 72258 -> 70058 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 1838 +++++----- sphinx/locale/pl/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 72816 -> 70929 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 1991 +++++------ sphinx/locale/pt/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 71213 -> 68922 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 1761 +++++---- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 71774 -> 69455 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 1765 +++++---- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 71769 -> 69466 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/ro/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 71771 -> 69463 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/ru/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 75166 -> 73462 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 1830 +++++----- sphinx/locale/si/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 72083 -> 69781 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/sk/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 72098 -> 69783 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 1777 +++++----- sphinx/locale/sl/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 71362 -> 69061 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/sr/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 71295 -> 69258 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 1784 +++++----- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 71317 -> 69013 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 1761 +++++---- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.js | 1 + sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 0 -> 69008 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 3354 +++++++++++++++++ sphinx/locale/sv/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 71176 -> 68875 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/ta/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 71219 -> 68991 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 1764 +++++---- sphinx/locale/tr/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 71747 -> 69419 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 73096 -> 70781 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 1759 +++++---- sphinx/locale/ur/LC_MESSAGES/sphinx.js | 1 + sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 0 -> 68916 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 3354 +++++++++++++++++ sphinx/locale/vi/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 71791 -> 69487 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 1761 +++++---- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 70460 -> 67686 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 2337 ++++++------ sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 71074 -> 68771 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 1761 +++++---- 153 files changed, 52605 insertions(+), 47750 deletions(-) create mode 100644 sphinx/locale/cak/LC_MESSAGES/sphinx.js create mode 100644 sphinx/locale/cak/LC_MESSAGES/sphinx.mo create mode 100644 sphinx/locale/cak/LC_MESSAGES/sphinx.po create mode 100644 sphinx/locale/sr_RS/LC_MESSAGES/sphinx.js create mode 100644 sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo create mode 100644 sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po create mode 100644 sphinx/locale/ur/LC_MESSAGES/sphinx.js create mode 100644 sphinx/locale/ur/LC_MESSAGES/sphinx.mo create mode 100644 sphinx/locale/ur/LC_MESSAGES/sphinx.po diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.js b/sphinx/locale/ar/LC_MESSAGES/sphinx.js index e2216a9b5..7d44f582e 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ar", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\"> \u062d\u0642\u0648\u0642 \u0627\u0644\u0646\u0634\u0631 </a> %(copyright)s", "© Copyright %(copyright)s.": "© \u062d\u0642\u0648\u0642 \u0627\u0644\u0646\u0634\u0631 %(copyright)s", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "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": "\u0627\u0644\u0645\u0648\u0636\u0648\u0639 \u0627\u0644\u062a\u0627\u0644\u064a", "Other changes": "", "Overview": "", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "\u0627\u0644\u0645\u0648\u0636\u0648\u0639 \u0627\u0644\u0633\u0627\u0628\u0642", "Quick search": "", "Search": "", "Search Page": "", "Search Results": "", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "\u0627\u0644\u0628\u062d\u062b \u0636\u0645\u0646 %(docstitle)s", "Searching": "", "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": "\u0627\u0644\u0641\u0635\u0644 \u0627\u0644\u062a\u0627\u0644\u064a", "previous chapter": "", "quick access to all modules": "", "search": "", "search this documentation": "", "the documentation for": ""}, "plural_expr": "n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5"}); +Documentation.addTranslations({"locale": "ar", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\"> \u062d\u0642\u0648\u0642 \u0627\u0644\u0646\u0634\u0631 </a> %(copyright)s", "© Copyright %(copyright)s.": "© \u062d\u0642\u0648\u0642 \u0627\u0644\u0646\u0634\u0631 %(copyright)s", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "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": "\u0627\u0644\u0645\u0648\u0636\u0648\u0639 \u0627\u0644\u062a\u0627\u0644\u064a", "Other changes": "", "Overview": "", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "\u0627\u0644\u0645\u0648\u0636\u0648\u0639 \u0627\u0644\u0633\u0627\u0628\u0642", "Quick search": "", "Search": "", "Search Page": "", "Search Results": "", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "\u0627\u0644\u0628\u062d\u062b \u0636\u0645\u0646 %(docstitle)s", "Searching": "", "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": "\u0627\u0644\u0641\u0635\u0644 \u0627\u0644\u062a\u0627\u0644\u064a", "previous chapter": "", "quick access to all modules": "", "search": "", "search this documentation": "", "the documentation for": ""}, "plural_expr": "n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5"}); \ No newline at end of file diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index 94e4e570bc2487bf3137a1fd14f06a00b388da05..a7a92f941ec7148b32e213cb9406ce26a3bc582c 100644 GIT binary patch delta 13940 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 Gxb<%}P4g@O delta 16271 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 diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 84d300868..27f53d15c 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-09-09 10:57+0000\n" -"Last-Translator: Mohammed Shannaq <sam@ms.per.jo>\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,21 +19,21 @@ msgstr "" "Language: ar\n" "Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 && n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "مجلد الاعدادات لا يحتوي على ملف conf.py (%s)" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "لا يمكن العثور على المجلد المصدر (%s)" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "لا يمكن ان يكون المجلد المصدر والمجلد الهدف متطابقين" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "تشغيل Sphinx v%s" @@ -46,95 +46,83 @@ msgid "" msgstr "يحتاج هذا المشروع على الاقل الى الاصدار %s من Sphinx وبالتالي لا يمكن بناءه باستخدام الاصدار الحالي" #: sphinx/application.py:234 -msgid "making output directory..." -msgstr "صناعة مجلد المخرجات ..." +msgid "making output directory" +msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "primary_domain %r لتم يتم العثور عليه، لهذا تم تجاهلة" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "تحميل الترجمات [ %s ]" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "تم" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "غير متوفرة للرسائل الافتراضية المدمجة" -#: sphinx/application.py:300 -msgid "loading pickled environment... " -msgstr "تحميل بيئة pickled ..." +#: sphinx/application.py:298 +msgid "loading pickled environment" +msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "فشل: %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "لم يتم اختيار نوع البناء، تم استخدام نوع البناء الافتراضي: html" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "نجح" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "انتهى مع وجود مشاكل" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "بناء %s، %sتحذير." -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "بناء %s." -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -150,60 +138,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -211,833 +193,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "primary_domain %r لتم يتم العثور عليه، لهذا تم تجاهلة" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "حدث غير معروف: %s" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "بناء [mo]:" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "بناء [%s]" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "التالي" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "السابق" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1051,188 +922,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1251,253 +1144,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "الرجاء ادخال بعض النصوص" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1505,11 +1392,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1517,25 +1404,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1545,15 +1432,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1564,22 +1451,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1588,36 +1475,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1625,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1655,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1684,214 +1571,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1920,12 +1807,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "" @@ -1933,7 +1820,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "" @@ -1941,297 +1828,262 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "" @@ -2240,209 +2092,200 @@ msgstr "" msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2454,352 +2297,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[المستندات]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2807,66 +2679,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2881,106 +2772,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "يتبع في الصفحة التالية" @@ -2999,7 +2890,7 @@ msgstr "" msgid "Go" msgstr "" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "" @@ -3148,13 +3039,13 @@ msgstr "" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3196,36 +3087,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3242,76 +3133,89 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3325,140 +3229,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "استمرار في الصفحة التالية" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.js b/sphinx/locale/bn/LC_MESSAGES/sphinx.js index 0ba224bfb..1ecc28cac 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "bn", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\u098f\u0987 \u09a1\u0995\u09c1\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09ae\u09cd\u09aa\u09b0\u09cd\u0995\u09c7", "Automatically generated list of changes in version %(version)s": "\u09b8\u09cd\u09ac\u09df\u0982\u0995\u09cd\u09b0\u09bf\u09df\u09ad\u09be\u09ac\u09c7 \u09a4\u09c8\u09b0\u09c0 %(version)s-\u098f \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8 \u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 \u09a4\u09be\u09b2\u09bf\u0995\u09be\u0964", "C API changes": "C API \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "\u09aa\u09c2\u09b0\u09cd\u09a3\u09be\u0999\u09cd\u0997 \u09b8\u09c2\u099a\u09c0\u09aa\u09a4\u09cd\u09b0", "Contents": "", "Copyright": "\u0995\u09aa\u09bf\u09b0\u09be\u0987\u099f", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \u09a6\u09bf\u09df\u09c7 \u09a4\u09c8\u09b0\u09c0\u0964", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u098f\u0996\u09be\u09a8 \u09a5\u09c7\u0995\u09c7 \u098f\u0987 \u09a8\u09a5\u09bf\u0997\u09c1\u09b2\u09c7\u09be\u09a4\u09c7 \u0986\u09aa\u09a8\u09bf \u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u0995\u09b0\u09a4\u09c7 \u09aa\u09be\u09b0\u09ac\u09c7\u09a8\u0964 \n \u0986\u09aa\u09a8\u09be\u09b0 \u0995\u09be\u0999\u09cd\u0995\u09cd\u09b7\u09bf\u09a4 \u09b6\u09ac\u09cd\u09a6\u09b8\u09ae\u09c2\u09b9 \u09a8\u09bf\u099a\u09c7\u09b0 \u09ac\u09be\u0995\u09cd\u09b8\u09c7 \u09b2\u09bf\u0996\u09c1\u09a8 \u098f\u09ac\u0982 \"\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8\" \u09ac\u09be\u099f\u09a8\u09c7 \u0995\u09cd\u09b2\u09bf\u0995 \u0995\u09b0\u09c1\u09a8\u0964\n \u0989\u09b2\u09cd\u09b2\u09c7\u0996\u09cd\u09af, \u09b8\u0995\u09b2 \u09b6\u09ac\u09cd\u09a6\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 \u0989\u09aa\u09b8\u09cd\u09a5\u09bf\u09a4\u09bf \u09a8\u09bf\u09df\u09c7 \u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u0995\u09b0\u09be \u09b9\u09ac\u09c7\u0964 \u09af\u09c7\u09b8\u09ac \u09aa\u09be\u09a4\u09be\u09df \u09b8\u0995\u09b2\n \u09b6\u09ac\u09cd\u09a6 \u09a8\u09c7\u0987 \u09b8\u09c7\u0997\u09c1\u09b2\u09c7\u09be \u09ac\u09be\u09a6 \u09a6\u09c7\u09df\u09be \u09b9\u09ac\u09c7\u0964", "Full index on one page": "\u098f\u0995 \u09aa\u09be\u09a4\u09be\u09df \u09b8\u09ae\u09cd\u09aa\u09c2\u09b0\u09cd\u09a3 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8", "General Index": "\u09b8\u09be\u09a7\u09be\u09b0\u09a3 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8", "Global Module Index": "\u0997\u09cd\u09b2\u09c7\u09be\u09ac\u09be\u09b2 \u09ae\u09a1\u09bf\u0989\u09b2 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8", "Go": "\u09af\u09be\u09a8", "Hide Search Matches": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8\u09c7\u09b0 \u09ae\u09cd\u09af\u09be\u099a\u0997\u09c1\u09b2\u09c7\u09be \u09b2\u09c1\u0995\u09be\u09a8", "Index": "\u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8", "Index – %(key)s": "\u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8 – %(key)s", "Index pages by letter": "\u09ac\u09b0\u09cd\u09a3\u09be\u09a8\u09c1\u09b8\u09be\u09b0\u09c7 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8 \u09aa\u09be\u09a4\u09be", "Indices and tables:": "\u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8 \u0993 \u099f\u09c7\u09ac\u09bf\u09b2 \u09b8\u09ae\u09c2\u09b9:", "Last updated on %(last_updated)s.": "%(last_updated)s \u09b8\u09b0\u09cd\u09ac\u09b6\u09c7\u09b7 \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8 \u0995\u09b0\u09be \u09b9\u09df\u09c7\u099b\u09c7\u0964", "Library changes": "\u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf\u09b0 \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8", "Navigation": "\u09a8\u09c7\u09ad\u09bf\u0997\u09c7\u09b6\u09a8", "Next topic": "\u09aa\u09b0\u09ac\u09b0\u09cd\u09a4\u09c0 \u099f\u09aa\u09bf\u0995", "Other changes": "\u0985\u09a8\u09cd\u09af\u09be\u09a8\u09cd\u09af \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8", "Overview": "\u09ad\u09c1\u09ae\u09bf\u0995\u09be", "Permalink to this definition": "\u098f\u0987 \u09b8\u0982\u099c\u09cd\u099e\u09be\u09b0 \u09aa\u09be\u09b0\u09cd\u09ae\u09be\u09b2\u09bf\u0999\u09cd\u0995", "Permalink to this headline": "\u098f\u0987 \u09b6\u09bf\u09b0\u09c7\u09be\u09a8\u09be\u09ae\u09c7\u09b0 \u09aa\u09be\u09b0\u09cd\u09ae\u09be\u09b2\u09bf\u0999\u09cd\u0995", "Please activate JavaScript to enable the search\n functionality.": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u0995\u09b0\u09be\u09b0 \u099c\u09a8\u09cd\u09af \u0985\u09a8\u09c1\u0997\u09cd\u09b0\u09b9\u09aa\u09c2\u09b0\u09cd\u09ac\u0995 \u099c\u09be\u09ad\u09be\u09b8\u09cd\u0995\u09cd\u09b0\u09bf\u09aa\u09cd\u099f \n \u09b8\u0995\u09cd\u09b0\u09bf\u09df \u0995\u09b0\u09c1\u09a8\u0964", "Preparing search...": "", "Previous topic": "\u09aa\u09c2\u09b0\u09cd\u09ac\u09ac\u09b0\u09cd\u09a4\u09c0 \u099f\u09aa\u09bf\u0995", "Quick search": "\u09a6\u09cd\u09b0\u09c1\u09a4 \u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8", "Search": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8", "Search Page": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u09aa\u09be\u09a4\u09be", "Search Results": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8\u09c7\u09b0 \u09ab\u09b2\u09be\u09ab\u09b2", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "%(docstitle)s \u098f\u09b0 \u09ae\u09a7\u09cd\u09af\u09c7 \u0996\u09c1\u0981\u099c\u09c1\u09a8", "Searching": "", "Show Source": "\u09b8\u09c7\u09be\u09b0\u09cd\u09b8 \u09a6\u09c7\u0996\u09c1\u09a8", "Table of Contents": "", "This Page": "\u098f\u0987 \u09aa\u09be\u09a4\u09be", "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": "\u09b8\u0995\u09b2 \u09ab\u09be\u0982\u09b6\u09a8, \u0995\u09cd\u09b2\u09be\u09b8, \u099f\u09be\u09b0\u09cd\u09ae", "can be huge": "\u0996\u09c1\u09ac \u09ac\u09dc \u09b9\u09a4\u09c7 \u09aa\u09be\u09b0\u09c7", "last updated": "", "lists all sections and subsections": "\u09b8\u0995\u09b2 \u0985\u09a8\u09c1\u099a\u09cd\u099b\u09c7\u09a6 \u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 \u09a4\u09be\u09b2\u09bf\u0995\u09be", "next chapter": "\u09aa\u09b0\u09ac\u09b0\u09cd\u09a4\u09c0 \u0985\u09a7\u09cd\u09af\u09be\u09df", "previous chapter": "\u09aa\u09c2\u09b0\u09cd\u09ac\u09ac\u09b0\u09cd\u09a4\u09c0 \u0985\u09a7\u09cd\u09af\u09be\u09df", "quick access to all modules": "\u09b8\u0995\u09b2 \u09ae\u09a1\u09bf\u0989\u09b2\u09c7 \u09a6\u09cd\u09b0\u09c1\u09a4 \u09aa\u09cd\u09b0\u09ac\u09c7\u09b6", "search": "\u0996\u09c1\u0981\u099c\u09c1\u09a8", "search this documentation": "\u098f\u0987 \u09b8\u09b9\u09be\u09df\u09bf\u0995\u09be\u09a4\u09c7 \u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be \u0995\u09b0\u09c1\u09a8", "the documentation for": ""}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "bn", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\u098f\u0987 \u09a1\u0995\u09c1\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09ae\u09cd\u09aa\u09b0\u09cd\u0995\u09c7", "Automatically generated list of changes in version %(version)s": "\u09b8\u09cd\u09ac\u09df\u0982\u0995\u09cd\u09b0\u09bf\u09df\u09ad\u09be\u09ac\u09c7 \u09a4\u09c8\u09b0\u09c0 %(version)s-\u098f \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8 \u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 \u09a4\u09be\u09b2\u09bf\u0995\u09be\u0964", "C API changes": "C API \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "\u09aa\u09c2\u09b0\u09cd\u09a3\u09be\u0999\u09cd\u0997 \u09b8\u09c2\u099a\u09c0\u09aa\u09a4\u09cd\u09b0", "Contents": "", "Copyright": "\u0995\u09aa\u09bf\u09b0\u09be\u0987\u099f", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \u09a6\u09bf\u09df\u09c7 \u09a4\u09c8\u09b0\u09c0\u0964", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u098f\u0996\u09be\u09a8 \u09a5\u09c7\u0995\u09c7 \u098f\u0987 \u09a8\u09a5\u09bf\u0997\u09c1\u09b2\u09c7\u09be\u09a4\u09c7 \u0986\u09aa\u09a8\u09bf \u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u0995\u09b0\u09a4\u09c7 \u09aa\u09be\u09b0\u09ac\u09c7\u09a8\u0964 \n \u0986\u09aa\u09a8\u09be\u09b0 \u0995\u09be\u0999\u09cd\u0995\u09cd\u09b7\u09bf\u09a4 \u09b6\u09ac\u09cd\u09a6\u09b8\u09ae\u09c2\u09b9 \u09a8\u09bf\u099a\u09c7\u09b0 \u09ac\u09be\u0995\u09cd\u09b8\u09c7 \u09b2\u09bf\u0996\u09c1\u09a8 \u098f\u09ac\u0982 \"\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8\" \u09ac\u09be\u099f\u09a8\u09c7 \u0995\u09cd\u09b2\u09bf\u0995 \u0995\u09b0\u09c1\u09a8\u0964\n \u0989\u09b2\u09cd\u09b2\u09c7\u0996\u09cd\u09af, \u09b8\u0995\u09b2 \u09b6\u09ac\u09cd\u09a6\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 \u0989\u09aa\u09b8\u09cd\u09a5\u09bf\u09a4\u09bf \u09a8\u09bf\u09df\u09c7 \u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u0995\u09b0\u09be \u09b9\u09ac\u09c7\u0964 \u09af\u09c7\u09b8\u09ac \u09aa\u09be\u09a4\u09be\u09df \u09b8\u0995\u09b2\n \u09b6\u09ac\u09cd\u09a6 \u09a8\u09c7\u0987 \u09b8\u09c7\u0997\u09c1\u09b2\u09c7\u09be \u09ac\u09be\u09a6 \u09a6\u09c7\u09df\u09be \u09b9\u09ac\u09c7\u0964", "Full index on one page": "\u098f\u0995 \u09aa\u09be\u09a4\u09be\u09df \u09b8\u09ae\u09cd\u09aa\u09c2\u09b0\u09cd\u09a3 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8", "General Index": "\u09b8\u09be\u09a7\u09be\u09b0\u09a3 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8", "Global Module Index": "\u0997\u09cd\u09b2\u09c7\u09be\u09ac\u09be\u09b2 \u09ae\u09a1\u09bf\u0989\u09b2 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8", "Go": "\u09af\u09be\u09a8", "Hide Search Matches": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8\u09c7\u09b0 \u09ae\u09cd\u09af\u09be\u099a\u0997\u09c1\u09b2\u09c7\u09be \u09b2\u09c1\u0995\u09be\u09a8", "Index": "\u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8", "Index – %(key)s": "\u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8 – %(key)s", "Index pages by letter": "\u09ac\u09b0\u09cd\u09a3\u09be\u09a8\u09c1\u09b8\u09be\u09b0\u09c7 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8 \u09aa\u09be\u09a4\u09be", "Indices and tables:": "\u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8 \u0993 \u099f\u09c7\u09ac\u09bf\u09b2 \u09b8\u09ae\u09c2\u09b9:", "Last updated on %(last_updated)s.": "%(last_updated)s \u09b8\u09b0\u09cd\u09ac\u09b6\u09c7\u09b7 \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8 \u0995\u09b0\u09be \u09b9\u09df\u09c7\u099b\u09c7\u0964", "Library changes": "\u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf\u09b0 \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8", "Navigation": "\u09a8\u09c7\u09ad\u09bf\u0997\u09c7\u09b6\u09a8", "Next topic": "\u09aa\u09b0\u09ac\u09b0\u09cd\u09a4\u09c0 \u099f\u09aa\u09bf\u0995", "Other changes": "\u0985\u09a8\u09cd\u09af\u09be\u09a8\u09cd\u09af \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8", "Overview": "\u09ad\u09c1\u09ae\u09bf\u0995\u09be", "Permalink to this definition": "\u098f\u0987 \u09b8\u0982\u099c\u09cd\u099e\u09be\u09b0 \u09aa\u09be\u09b0\u09cd\u09ae\u09be\u09b2\u09bf\u0999\u09cd\u0995", "Permalink to this headline": "\u098f\u0987 \u09b6\u09bf\u09b0\u09c7\u09be\u09a8\u09be\u09ae\u09c7\u09b0 \u09aa\u09be\u09b0\u09cd\u09ae\u09be\u09b2\u09bf\u0999\u09cd\u0995", "Please activate JavaScript to enable the search\n functionality.": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u0995\u09b0\u09be\u09b0 \u099c\u09a8\u09cd\u09af \u0985\u09a8\u09c1\u0997\u09cd\u09b0\u09b9\u09aa\u09c2\u09b0\u09cd\u09ac\u0995 \u099c\u09be\u09ad\u09be\u09b8\u09cd\u0995\u09cd\u09b0\u09bf\u09aa\u09cd\u099f \n \u09b8\u0995\u09cd\u09b0\u09bf\u09df \u0995\u09b0\u09c1\u09a8\u0964", "Preparing search...": "", "Previous topic": "\u09aa\u09c2\u09b0\u09cd\u09ac\u09ac\u09b0\u09cd\u09a4\u09c0 \u099f\u09aa\u09bf\u0995", "Quick search": "\u09a6\u09cd\u09b0\u09c1\u09a4 \u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8", "Search": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8", "Search Page": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u09aa\u09be\u09a4\u09be", "Search Results": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8\u09c7\u09b0 \u09ab\u09b2\u09be\u09ab\u09b2", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "%(docstitle)s \u098f\u09b0 \u09ae\u09a7\u09cd\u09af\u09c7 \u0996\u09c1\u0981\u099c\u09c1\u09a8", "Searching": "", "Show Source": "\u09b8\u09c7\u09be\u09b0\u09cd\u09b8 \u09a6\u09c7\u0996\u09c1\u09a8", "Table of Contents": "", "This Page": "\u098f\u0987 \u09aa\u09be\u09a4\u09be", "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": "\u09b8\u0995\u09b2 \u09ab\u09be\u0982\u09b6\u09a8, \u0995\u09cd\u09b2\u09be\u09b8, \u099f\u09be\u09b0\u09cd\u09ae", "can be huge": "\u0996\u09c1\u09ac \u09ac\u09dc \u09b9\u09a4\u09c7 \u09aa\u09be\u09b0\u09c7", "last updated": "", "lists all sections and subsections": "\u09b8\u0995\u09b2 \u0985\u09a8\u09c1\u099a\u09cd\u099b\u09c7\u09a6 \u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 \u09a4\u09be\u09b2\u09bf\u0995\u09be", "next chapter": "\u09aa\u09b0\u09ac\u09b0\u09cd\u09a4\u09c0 \u0985\u09a7\u09cd\u09af\u09be\u09df", "previous chapter": "\u09aa\u09c2\u09b0\u09cd\u09ac\u09ac\u09b0\u09cd\u09a4\u09c0 \u0985\u09a7\u09cd\u09af\u09be\u09df", "quick access to all modules": "\u09b8\u0995\u09b2 \u09ae\u09a1\u09bf\u0989\u09b2\u09c7 \u09a6\u09cd\u09b0\u09c1\u09a4 \u09aa\u09cd\u09b0\u09ac\u09c7\u09b6", "search": "\u0996\u09c1\u0981\u099c\u09c1\u09a8", "search this documentation": "\u098f\u0987 \u09b8\u09b9\u09be\u09df\u09bf\u0995\u09be\u09a4\u09c7 \u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be \u0995\u09b0\u09c1\u09a8", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index 4ba25bb94fac3b7b70ce373e1a1eb08e732b093e..0e43532710fba32ad2471772915ac7d6be6bd8e5 100644 GIT binary patch delta 14046 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 delta 16161 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 CVLr|P diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 6c6fa004f..910057eb5 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" "MIME-Version: 1.0\n" @@ -19,21 +19,21 @@ msgstr "" "Language: bn\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -46,95 +46,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -150,60 +138,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -211,833 +193,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "পাইথন উন্নয়ন পরামর্শ; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "বিল্টইন সমূহ" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "মডিউল লেভেল" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "সাধারণ ইনডেক্স" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "ইনডেক্স" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "পরবর্তী" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "পূর্ববর্তী" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1051,188 +922,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "(-" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "ইনডেক্স" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "রিলিজ" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1251,253 +1144,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1505,11 +1392,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1517,25 +1404,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1545,15 +1432,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1564,22 +1451,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1588,36 +1475,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1625,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1655,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1684,214 +1571,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "অনুচ্ছেদ লেখক:" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "মডিউল লেখক:" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "লেখক:" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "প্যারামিটার" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "রিটার্নস" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "রিটার্ন টাইপ" @@ -1920,12 +1807,12 @@ msgstr "%s (C টাইপ)" msgid "%s (C variable)" msgstr "%s (C ভ্যারিয়েবল)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "ফাংশন" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "" @@ -1933,7 +1820,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "" @@ -1941,297 +1828,262 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "%s ভার্সনে নতুন" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "%s ভার্সনে পরিবর্তিত" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "%s ভার্সন থেকে ডেপ্রিকেটেড" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ টাইপ)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++ মেম্বার)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++ ফাংশন)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++ ক্লাসে)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "ক্লাস" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (বিল্ট-ইন ফাংশন)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s মেথড)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (ক্লাসে)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s এ্যট্রিবিউট)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (মডিউল)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "মেথড" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "ডাটা" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "এ্যট্রিবিউট" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "মডিউল" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "কিওয়ার্ড" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "অপারেটর" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "অবজেক্ট" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "এক্সেপশন" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "স্ট্যাটমেন্ট" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "বিল্ট-ইন ফাংশন" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "রেইজেস" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s মডিউলে)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (বিল্ট-ইন ভ্যারিয়েবল)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (%s মডিউলে)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (বিল্ট-ইন ক্লাস)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (%s ক্লাসে)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s (%s.%s মেথড)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s (%s.%s স্ট্যাটিক মেথড)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s স্ট্যাটিক মেথড)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s ক্লাস মেথড)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s ক্লাস মেথড)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s এ্যট্রিবিউট)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "মডিউল সমূহ" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "ডেপ্রিকেটেড" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "ক্লাস মেথড" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "স্ট্যাটিক মেথড" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "" @@ -2240,209 +2092,200 @@ msgstr "" msgid "environment variable; %s" msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%sকমান্ড লাইন অপশন; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "শব্দকোষ" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "ব্যকরণ টোকেন" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "প্রোগ্রাম অপশন" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "ইনডেক্স" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "মডিউল ইনডেক্স" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "অনুসন্ধান পাতা" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2454,352 +2297,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "অসমাপ্ত কাজ" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2807,66 +2679,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` এর উপনাম" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2881,106 +2772,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "দৃষ্টি আকর্ষণ" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "সতর্কীকরণ" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "বিপজ্জনক" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "ভুল (এরর)" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "আভাস" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "গুরুত্বপূর্ণ" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "নোট" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "আরও দেখুন" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "পরামর্শ" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "সতর্কতা" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "পূর্ববর্তী পাতা হতে চলমান" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "পরবর্তী পাতাতে চলমান" @@ -2999,7 +2890,7 @@ msgstr "অনুসন্ধান" msgid "Go" msgstr "যান" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "সোর্স দেখুন" @@ -3148,13 +3039,13 @@ msgstr "খুঁজুন" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "অনুসন্ধানের ফলাফল" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3196,36 +3087,36 @@ msgstr "C API পরিবর্তন" msgid "Other changes" msgstr "অন্যান্য পরিবর্তন" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "এই শিরোনামের পার্মালিঙ্ক" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "এই সংজ্ঞার পার্মালিঙ্ক" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "অনুসন্ধানের ম্যাচগুলো লুকান" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3242,76 +3133,89 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3325,140 +3229,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "রিলিজ" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "পাদটীকা" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[ছবি]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.js b/sphinx/locale/ca/LC_MESSAGES/sphinx.js index 3c6dc3132..2133ba523 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ca", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "Quant a aquests documents", "Automatically generated list of changes in version %(version)s": "Llista de canvis de la versi\u00f3 %(version)s generada autom\u00e0ticament", "C API changes": "Canvis a la API de C", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "Taula de Contingut Completa", "Contents": "", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Creat amb <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Des d'aqu\u00ed pots fer cerques en aquests documents. Entra les \nparaules de la teva cerca i clica el bot\u00f3 \"cerca\". Tingues en compte\nque la cerca inclour\u00e0 totes les paraules que posis. Les p\u00e0gines que no\ntenen totes les paraules no sortir\u00e0n.", "Full index on one page": "\u00cdndex complet en una p\u00e0gina", "General Index": "\u00cdndex General", "Global Module Index": "\u00cdndex Global de M\u00f2duls", "Go": "Ves a", "Hide Search Matches": "Oculta Resultats de Cerca", "Index": "\u00cdndex", "Index – %(key)s": "\u00cdndes – %(key)s", "Index pages by letter": "P\u00e0gines d'\u00edndex per lletra", "Indices and tables:": "\u00cdndexs i taules:", "Last updated on %(last_updated)s.": "\u00daltima actualitzaci\u00f3 el %(last_updated)s.", "Library changes": "Canvis a la llibreria", "Navigation": "Navegaci\u00f3", "Next topic": "Tema seg\u00fcent", "Other changes": "Altres canvis", "Overview": "Resum", "Permalink to this definition": "Link permanent a aquesta definici\u00f3", "Permalink to this headline": "Link permanent a aquest t\u00edtol", "Please activate JavaScript to enable the search\n functionality.": "Activa JavaScript per utilitzar la funcionalitat\nde cerca.", "Preparing search...": "", "Previous topic": "Tema anterior", "Quick search": "Cerca r\u00e0pida", "Search": "Cerca", "Search Page": "P\u00e0gina de Cerca", "Search Results": "Resultats de la Cerca", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Cerca dins de %(docstitle)s", "Searching": "", "Show Source": "Mostra Codi Font", "Table of Contents": "", "This Page": "Aquesta P\u00e0gina", "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": "totes les funcions, classes, termes", "can be huge": "pot ser gegant", "last updated": "", "lists all sections and subsections": "llista totes les seccions i subseccions", "next chapter": "cap\u00edtol seg\u00fcent", "previous chapter": "cap\u00edtol anterior", "quick access to all modules": "acc\u00e9s r\u00e0pid a tots els m\u00f2duls", "search": "cerca", "search this documentation": "cerca aquesta documentaci\u00f3", "the documentation for": ""}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "ca", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "Quant a aquests documents", "Automatically generated list of changes in version %(version)s": "Llista de canvis de la versi\u00f3 %(version)s generada autom\u00e0ticament", "C API changes": "Canvis a la API de C", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "Taula de Contingut Completa", "Contents": "", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Creat amb <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Des d'aqu\u00ed pots fer cerques en aquests documents. Entra les \nparaules de la teva cerca i clica el bot\u00f3 \"cerca\". Tingues en compte\nque la cerca inclour\u00e0 totes les paraules que posis. Les p\u00e0gines que no\ntenen totes les paraules no sortir\u00e0n.", "Full index on one page": "\u00cdndex complet en una p\u00e0gina", "General Index": "\u00cdndex General", "Global Module Index": "\u00cdndex Global de M\u00f2duls", "Go": "Ves a", "Hide Search Matches": "Oculta Resultats de Cerca", "Index": "\u00cdndex", "Index – %(key)s": "\u00cdndes – %(key)s", "Index pages by letter": "P\u00e0gines d'\u00edndex per lletra", "Indices and tables:": "\u00cdndexs i taules:", "Last updated on %(last_updated)s.": "\u00daltima actualitzaci\u00f3 el %(last_updated)s.", "Library changes": "Canvis a la llibreria", "Navigation": "Navegaci\u00f3", "Next topic": "Tema seg\u00fcent", "Other changes": "Altres canvis", "Overview": "Resum", "Permalink to this definition": "Link permanent a aquesta definici\u00f3", "Permalink to this headline": "Link permanent a aquest t\u00edtol", "Please activate JavaScript to enable the search\n functionality.": "Activa JavaScript per utilitzar la funcionalitat\nde cerca.", "Preparing search...": "", "Previous topic": "Tema anterior", "Quick search": "Cerca r\u00e0pida", "Search": "Cerca", "Search Page": "P\u00e0gina de Cerca", "Search Results": "Resultats de la Cerca", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Cerca dins de %(docstitle)s", "Searching": "", "Show Source": "Mostra Codi Font", "Table of Contents": "", "This Page": "Aquesta P\u00e0gina", "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": "totes les funcions, classes, termes", "can be huge": "pot ser gegant", "last updated": "", "lists all sections and subsections": "llista totes les seccions i subseccions", "next chapter": "cap\u00edtol seg\u00fcent", "previous chapter": "cap\u00edtol anterior", "quick access to all modules": "acc\u00e9s r\u00e0pid a tots els m\u00f2duls", "search": "cerca", "search this documentation": "cerca aquesta documentaci\u00f3", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index bfd72b3a938020a3597874fa8be8c30a599f798c..d0194dc4ba00cac1af5e785febacb36daf057511 100644 GIT binary patch delta 13978 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 KaesG{TmK7TrVGdb delta 16259 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 diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index 3affbd436..fdaf2d372 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" "MIME-Version: 1.0\n" @@ -19,21 +19,21 @@ msgstr "" "Language: ca\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -46,95 +46,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -150,60 +138,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -211,833 +193,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Mòduls Interns" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Nivell de mòdul" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índex General" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "índex" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "següent" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "anterior" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s documentació" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1051,188 +922,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (a " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Índex" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Versió" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1251,253 +1144,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1505,11 +1392,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1517,25 +1404,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1545,15 +1432,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1564,22 +1451,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1588,36 +1475,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1625,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1655,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1684,214 +1571,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Autor de la secció:" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Autor del mòdul: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Autor: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Paràmetres" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Retorna" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Tipus de retorn" @@ -1920,12 +1807,12 @@ msgstr "%s (tipus de C)" msgid "%s (C variable)" msgstr "%s (variable de C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "funció" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "membre" @@ -1933,7 +1820,7 @@ msgstr "membre" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "tipus" @@ -1941,297 +1828,262 @@ msgstr "tipus" msgid "variable" msgstr "variable" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Novetat de la versió %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Canviat a la versió %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Obsolet desde la versió %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (tipus de C++)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (membre de C++)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (funció de C++)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (class de C++)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "class" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funció interna)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (mètode %s)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (class)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (mòdul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "mòdul" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "paraula clau" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operador" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "objecte" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "excepció" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "sentència" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "funció interna" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Llença" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (al mòdul %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable interna)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (al mòdul %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (class a %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (mètode %s.%s)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (mètode estàtic %s.%s)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (mètode estàtic %s)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atribut %s.%s)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "mòduls" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Obsolet" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "mètode estàtic" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (obsolet)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "" @@ -2240,209 +2092,200 @@ msgstr "" msgid "environment variable; %s" msgstr "variable d'entorn; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "opció de línia de comandes %s; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "variable d'entorn" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Índex" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Índex de Mòduls" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pàgina de Cerca" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "vegeu %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "vegeu també %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2454,352 +2297,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Pendent" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2807,66 +2679,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "àlies de :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2881,106 +2772,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Atenció" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Compte" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Perill" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Error" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Suggerència" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Important" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Vegeu també" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Truc" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Avís" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "ve de la pàgina anterior" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Continua a la pàgina següent" @@ -2999,7 +2890,7 @@ msgstr "Cerca" msgid "Go" msgstr "Ves a" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Mostra Codi Font" @@ -3148,13 +3039,13 @@ msgstr "cerca" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Resultats de la Cerca" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3196,36 +3087,36 @@ msgstr "Canvis a la API de C" msgid "Other changes" msgstr "Altres canvis" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Link permanent a aquest títol" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Link permanent a aquesta definició" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Oculta Resultats de Cerca" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3242,76 +3133,89 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3325,140 +3229,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Versió" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[imatge]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.js b/sphinx/locale/cak/LC_MESSAGES/sphinx.js new file mode 100644 index 000000000..cf65578e3 --- /dev/null +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.js @@ -0,0 +1 @@ +Documentation.addTranslations({"locale": "None", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", pa", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "Full index on one page": "", "General Index": "Konojel cholwuj", "Global Module Index": "", "Go": "", "Hide Search Matches": "", "Index": "Cholwuj", "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": "", "Show Source": "", "Table of Contents": "", "This Page": "Ruxaq wuj re'", "Welcome! This is": "\u00dctz apet\u00efk! Wawe' k'o", "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": "ri wuj richin"}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo new file mode 100644 index 0000000000000000000000000000000000000000..c46e91bfa9f82e4daa39853a522c5e85ac9a5ab9 GIT binary patch literal 69035 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 literal 0 HcmV?d00001 diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po new file mode 100644 index 000000000..58849c062 --- /dev/null +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -0,0 +1,3355 @@ +# Translations template for Sphinx. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the Sphinx project. +# +# Translators: +# Julien Malard <julien.malard@mail.mcgill.ca>, 2019 +msgid "" +msgstr "" +"Project-Id-Version: Sphinx\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-27 16:22+0000\n" +"Last-Translator: Julien Malard <julien.malard@mail.mcgill.ca>\n" +"Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.6.0\n" +"Language: cak\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: sphinx/application.py:153 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:157 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:161 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:192 +#, python-format +msgid "Running Sphinx v%s" +msgstr "" + +#: sphinx/application.py:214 +#, python-format +msgid "" +"This project needs at least Sphinx v%s and therefore cannot be built with " +"this version." +msgstr "" + +#: sphinx/application.py:234 +msgid "making output directory" +msgstr "" + +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 +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:269 +#, python-format +msgid "loading translations [%s]... " +msgstr "" + +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 +msgid "done" +msgstr "xk'isïk" + +#: sphinx/application.py:287 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:298 +msgid "loading pickled environment" +msgstr "" + +#: sphinx/application.py:303 +#, python-format +msgid "failed: %s" +msgstr "sachoj: %s" + +#: sphinx/application.py:313 +msgid "No builder selected, using default: html" +msgstr "" + +#: sphinx/application.py:344 +msgid "succeeded" +msgstr "" + +#: sphinx/application.py:344 +msgid "finished with problems" +msgstr "" + +#: sphinx/application.py:346 +#, python-format +msgid "build %s, %s warning." +msgstr "" + +#: sphinx/application.py:350 +#, python-format +msgid "build %s." +msgstr "" + +#: sphinx/application.py:557 +#, python-format +msgid "node class %r is already registered, its visitors will be overridden" +msgstr "" + +#: sphinx/application.py:654 +#, python-format +msgid "directive %r is already registered, it will be overridden" +msgstr "" + +#: sphinx/application.py:677 sphinx/application.py:696 +#, python-format +msgid "role %r is already registered, it will be overridden" +msgstr "" + +#: sphinx/application.py:1182 +#, 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:1188 +#, 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:1199 +#, python-format +msgid "doing serial %s" +msgstr "" + +#: sphinx/config.py:220 +#, python-format +msgid "" +"cannot override dictionary config setting %r, ignoring (use %r to set " +"individual elements)" +msgstr "" + +#: sphinx/config.py:229 +#, python-format +msgid "invalid number %r for config value %r, ignoring" +msgstr "" + +#: sphinx/config.py:234 +#, python-format +msgid "cannot override config setting %r with unsupported type, ignoring" +msgstr "" + +#: sphinx/config.py:264 +#, python-format +msgid "unknown config value %r in override, ignoring" +msgstr "" + +#: sphinx/config.py:282 +#, python-format +msgid "No such config value: %s" +msgstr "" + +#: sphinx/config.py:312 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:363 +#, python-format +msgid "There is a syntax error in your configuration file: %s\n" +msgstr "" + +#: sphinx/config.py:366 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:370 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:397 +#, python-format +msgid "" +"The config value `source_suffix' expects a string, list of strings, or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:405 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:406 +#, python-format +msgid "Fig. %s" +msgstr "Ruwachib'äl %s" + +#: sphinx/config.py:407 +#, python-format +msgid "Table %s" +msgstr "Kik'ajtz'ïk %s" + +#: sphinx/config.py:408 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:447 +msgid "" +"The config value `{name}` has to be a one of {candidates}, but `{current}` " +"is given." +msgstr "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}'; expected " +"{permitted}." +msgstr "" + +#: sphinx/config.py:478 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:497 +#, python-format +msgid "" +"the config value %r is set to a string with non-ASCII characters; this can " +"lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." +msgstr "" + +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 +#, python-format +msgid "Event %r already present" +msgstr "" + +#: sphinx/events.py:60 +#, python-format +msgid "Unknown event name: %s" +msgstr "" + +#: sphinx/extension.py:52 +#, python-format +msgid "" +"The %s extension is required by needs_extensions settings, but it is not " +"loaded." +msgstr "" + +#: sphinx/extension.py:57 +#, 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:142 +#, python-format +msgid "Pygments lexer name %r is not known" +msgstr "" + +#: sphinx/highlighting.py:163 +#, python-format +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." +msgstr "" + +#: sphinx/project.py:59 +msgid "document not readable. Ignored." +msgstr "" + +#: sphinx/registry.py:131 +#, python-format +msgid "Builder class %s has no \"name\" attribute" +msgstr "" + +#: sphinx/registry.py:133 +#, 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:155 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:163 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:201 +#, python-format +msgid "The %r directive is already registered to domain %s" +msgstr "" + +#: sphinx/registry.py:215 +#, python-format +msgid "The %r role is already registered to domain %s" +msgstr "" + +#: sphinx/registry.py:226 +#, python-format +msgid "The %r index is already registered to domain %s" +msgstr "" + +#: sphinx/registry.py:250 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:270 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:278 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:308 +#, python-format +msgid "source_parser for %r is already registered" +msgstr "" + +#: sphinx/registry.py:324 +#, python-format +msgid "Source parser for %s not registered" +msgstr "" + +#: sphinx/registry.py:344 +#, python-format +msgid "source_input for %r is already registered" +msgstr "" + +#: sphinx/registry.py:363 +#, python-format +msgid "Translator for %r already exists" +msgstr "" + +#: sphinx/registry.py:375 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:445 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:453 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:464 +#, python-format +msgid "" +"the extension %r was already merged with Sphinx since version %s; this " +"extension is ignored." +msgstr "" + +#: sphinx/registry.py:475 +msgid "Original exception:\n" +msgstr "" + +#: sphinx/registry.py:476 +#, python-format +msgid "Could not import extension %s" +msgstr "" + +#: sphinx/registry.py:479 +#, python-format +msgid "" +"extension %r has no setup() function; is it really a Sphinx extension " +"module?" +msgstr "" + +#: sphinx/registry.py:488 +#, 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:496 +#, 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:221 sphinx/roles.py:272 +#, python-format +msgid "Python Enhancement Proposals; PEP %s" +msgstr "" + +#: sphinx/theming.py:79 +#, python-format +msgid "theme %r doesn't have \"theme\" setting" +msgstr "" + +#: sphinx/theming.py:81 +#, python-format +msgid "theme %r doesn't have \"inherit\" setting" +msgstr "" + +#: sphinx/theming.py:87 +#, python-format +msgid "no theme named %r found, inherited by %r" +msgstr "" + +#: sphinx/theming.py:112 +#, python-format +msgid "setting %s.%s occurs in none of the searched theme configs" +msgstr "" + +#: sphinx/theming.py:132 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + +#: sphinx/theming.py:242 +#, python-format +msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgstr "" + +#: sphinx/theming.py:258 +msgid "" +"sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " +"install it manually.(pip install sphinx_rtd_theme)" +msgstr "" + +#: sphinx/theming.py:262 +#, python-format +msgid "no theme named %r found (missing theme.conf?)" +msgstr "" + +#: sphinx/builders/__init__.py:205 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:209 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:231 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:245 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:266 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:276 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:284 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:298 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:303 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:314 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:325 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:335 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:342 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:347 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:349 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" +msgstr "" + +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" +msgstr "" + +#: sphinx/builders/__init__.py:364 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" +msgstr "" + +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 +#, python-format +msgid "cannot read image file %r: copying it instead" +msgstr "" + +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:445 +#, python-format +msgid "cannot write image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" +msgstr "" + +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:566 +#, python-format +msgid "unknown mimetype for %s, ignoring" +msgstr "" + +#: sphinx/builders/changes.py:39 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:68 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 +msgid "Builtins" +msgstr "" + +#: sphinx/builders/changes.py:89 +msgid "Module level" +msgstr "" + +#: sphinx/builders/changes.py:134 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:141 +#, python-format +msgid "could not read %r for changelog creation" +msgstr "" + +#: sphinx/builders/dummy.py:24 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:69 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:212 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:216 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:219 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:223 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:226 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:229 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:232 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:235 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:239 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:242 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:215 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:239 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:240 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:244 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:271 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:182 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:217 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:399 +#, python-format +msgid "Failed to read build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 +#, python-format +msgid "%b %d, %Y" +msgstr "" + +#: sphinx/builders/html.py:500 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 +msgid "General Index" +msgstr "Konojel cholwuj" + +#: sphinx/builders/html.py:506 +msgid "index" +msgstr "cholwuj" + +#: sphinx/builders/html.py:570 +msgid "next" +msgstr "jun chïk" + +#: sphinx/builders/html.py:579 +msgid "previous" +msgstr "chi rij kan" + +#: sphinx/builders/html.py:677 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:695 +msgid "writing additional pages..." +msgstr "" + +#: sphinx/builders/html.py:780 +msgid "copying downloadable files... " +msgstr "" + +#: sphinx/builders/html.py:788 +#, python-format +msgid "cannot copy downloadable file %r: %s" +msgstr "" + +#: sphinx/builders/html.py:795 +msgid "copying static files... " +msgstr "" + +#: sphinx/builders/html.py:830 +#, python-format +msgid "html_static_path entry %r does not exist" +msgstr "" + +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#, python-format +msgid "logo file %r does not exist" +msgstr "" + +#: sphinx/builders/html.py:847 +#, python-format +msgid "favicon file %r does not exist" +msgstr "" + +#: sphinx/builders/html.py:854 +#, python-format +msgid "cannot copy static file %r" +msgstr "" + +#: sphinx/builders/html.py:860 +msgid "copying extra files... " +msgstr "" + +#: sphinx/builders/html.py:866 +#, python-format +msgid "html_extra_path entry %r does not exist" +msgstr "" + +#: sphinx/builders/html.py:872 +#, python-format +msgid "cannot copy extra file %r" +msgstr "" + +#: sphinx/builders/html.py:880 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:927 +msgid "" +"search index couldn't be loaded, but not all documents will be built: the " +"index will be incomplete." +msgstr "" + +#: sphinx/builders/html.py:996 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1094 +#, 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.py:1099 +#, python-format +msgid "" +"An error happened in rendering the page %s.\n" +"Reason: %r" +msgstr "" + +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1131 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1138 +#, python-format +msgid "dumping search index in %s ... " +msgstr "" + +#: sphinx/builders/html.py:1184 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1228 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1231 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1264 +#, python-format +msgid "%s %s documentation" +msgstr "" + +#: sphinx/builders/linkcheck.py:80 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:144 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:242 +#, python-format +msgid "broken link: %s (%s)" +msgstr "" + +#: sphinx/builders/manpage.py:43 +#, python-format +msgid "The manual pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/manpage.py:51 +msgid "no \"man_pages\" config value found; no manual pages will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "tajin nutz'ib'aj" + +#: sphinx/builders/manpage.py:76 +#, python-format +msgid "\"man_pages\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." +msgstr "" + +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:52 +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:85 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:93 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#, python-format +msgid "processing %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +msgid " (in " +msgstr "(chupam" + +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" +msgstr "" + +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" +msgstr "" + +#: sphinx/builders/text.py:33 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:38 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:112 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:121 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:123 +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:163 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:171 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Cholwuj" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 +msgid "copying TeX support files..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:445 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +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 "Rusachoj nuk'unem:" + +#: 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 "Rusachoj kamulunem:" + +#: 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:69 +msgid " import sys; sys.setrecursionlimit(1500)" +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 <https://github.com/sphinx-" +"doc/sphinx/issues>. Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:97 +msgid "job number should be a positive number" +msgstr "" + +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +msgid "For more information, visit <http://sphinx-doc.org/>." +msgstr "" + +#: sphinx/cmd/build.py:107 +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:128 +msgid "path to documentation source files" +msgstr "" + +#: sphinx/cmd/build.py:130 +msgid "path to output directory" +msgstr "" + +#: sphinx/cmd/build.py:132 +msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgstr "" + +#: sphinx/cmd/build.py:135 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:138 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:140 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:143 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:146 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:149 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:156 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:159 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:162 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:165 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:167 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:170 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:172 +msgid "increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "no output on stdout, just warnings on stderr" +msgstr "" + +#: sphinx/cmd/build.py:176 +msgid "no output at all, not even warnings" +msgstr "" + +#: sphinx/cmd/build.py:179 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:182 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:185 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: sphinx/cmd/build.py:187 +msgid "turn warnings into errors" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "With -W, Keep going when getting warnings" +msgstr "" + +#: sphinx/cmd/build.py:191 +msgid "show full traceback on exception" +msgstr "" + +#: sphinx/cmd/build.py:193 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:227 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:230 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:249 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:259 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:266 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:52 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:53 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:54 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: sphinx/cmd/quickstart.py:55 +msgid "write \"todo\" entries that can be shown or hidden on build" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "checks for documentation coverage" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "include math, rendered as PNG or SVG images" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "include math, rendered in the browser by MathJax" +msgstr "" + +#: sphinx/cmd/quickstart.py:59 +msgid "conditional inclusion of content based on config values" +msgstr "" + +#: sphinx/cmd/quickstart.py:61 +msgid "include links to the source code of documented Python objects" +msgstr "" + +#: sphinx/cmd/quickstart.py:63 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:107 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:119 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:128 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:136 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:143 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:169 +msgid "" +"* Note: non-ASCII characters entered and terminal encoding unknown -- " +"assuming UTF-8 or Latin-1." +msgstr "" + +#: sphinx/cmd/quickstart.py:248 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "Ütz apetïk pa rokisanem runuk'ik Sphinx %s." + +#: sphinx/cmd/quickstart.py:249 +msgid "" +"\n" +"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:254 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:257 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:259 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:264 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:266 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:274 +msgid "" +"\n" +"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:278 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:282 +msgid "" +"\n" +"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:286 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:289 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:291 +msgid "Project name" +msgstr "Rub'i' samäj" + +#: sphinx/cmd/quickstart.py:293 +msgid "Author name(s)" +msgstr "Kib'i' ajtz'ib'anel(a')" + +#: sphinx/cmd/quickstart.py:296 +msgid "" +"\n" +"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:302 +msgid "Project version" +msgstr "Rujalwäch samäj" + +#: sphinx/cmd/quickstart.py:304 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +msgid "" +"\n" +"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" +"http://sphinx-doc.org/config.html#confval-language." +msgstr "\nWe xetz'ib'an ri wuj pa jun ch'abäl man Q'anch' ta,\nyatikïr nacha' jun chïk runuk'unem ch'ab'äl wawe' chi Sphinx tiq'ax\nruch'abäl ri wuj xtik'iyij pa ri ch'ab'äl re.\n\nChi natz'u rucholajem runuk'unem ch'ab'äl k'o chïk pa Sphinx, tab'e pa\nhttp://sphinx-doc.org/config.html#confval-language." + +#: sphinx/cmd/quickstart.py:314 +msgid "Project language" +msgstr "Ruch'ab'äl samaj" + +#: sphinx/cmd/quickstart.py:319 +msgid "" +"\n" +"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:322 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:325 +msgid "" +"\n" +"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:330 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:338 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:340 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:344 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:354 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:359 +msgid "" +"\n" +"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:363 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:366 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:450 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:451 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:453 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:456 +#, python-format +msgid "" +"Use the sphinx-build command to build the docs, like so:\n" +" sphinx-build -b builder %s %s\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:459 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:499 +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:509 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:514 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:516 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:518 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:520 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:522 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:524 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:526 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:528 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:530 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:532 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:534 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:536 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:538 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:540 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:557 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:563 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:565 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:571 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:605 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:619 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:621 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:636 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:74 +msgid "Over dedent has detected" +msgstr "" + +#: sphinx/directives/code.py:94 +#, python-format +msgid "Invalid caption: %s" +msgstr "" + +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:222 +#, python-format +msgid "Cannot use both \"%s\" and \"%s\" options" +msgstr "" + +#: sphinx/directives/code.py:235 +#, python-format +msgid "Include file %r not found or reading it failed" +msgstr "" + +#: sphinx/directives/code.py:237 +#, 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:275 +#, python-format +msgid "Object named %r not found in include file %r" +msgstr "" + +#: sphinx/directives/code.py:301 +msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" +msgstr "" + +#: sphinx/directives/code.py:306 +#, python-format +msgid "Line spec %r: no lines pulled from include file %r" +msgstr "" + +#: sphinx/directives/other.py:172 +msgid "Section author: " +msgstr "" + +#: sphinx/directives/other.py:174 +msgid "Module author: " +msgstr "" + +#: sphinx/directives/other.py:176 +msgid "Code author: " +msgstr "" + +#: sphinx/directives/other.py:178 +msgid "Author: " +msgstr "" + +#: sphinx/domains/__init__.py:344 +#, python-format +msgid "%s %s" +msgstr "" + +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 +msgid "Parameters" +msgstr "Jalajöj" + +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +msgid "Returns" +msgstr "" + +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 +msgid "Return type" +msgstr "" + +#: sphinx/domains/c.py:189 +#, python-format +msgid "%s (C function)" +msgstr "" + +#: sphinx/domains/c.py:191 +#, python-format +msgid "%s (C member)" +msgstr "" + +#: sphinx/domains/c.py:193 +#, python-format +msgid "%s (C macro)" +msgstr "" + +#: sphinx/domains/c.py:195 +#, python-format +msgid "%s (C type)" +msgstr "" + +#: sphinx/domains/c.py:197 +#, python-format +msgid "%s (C variable)" +msgstr "" + +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +msgid "function" +msgstr "" + +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +msgid "member" +msgstr "" + +#: sphinx/domains/c.py:260 +msgid "macro" +msgstr "" + +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +msgid "type" +msgstr "" + +#: sphinx/domains/c.py:262 +msgid "variable" +msgstr "retal jalöj" + +#: sphinx/domains/changeset.py:33 +#, python-format +msgid "New in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "Changed in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Deprecated since version %s" +msgstr "" + +#: sphinx/domains/cpp.py:4297 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6374 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:6505 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 +msgid "class" +msgstr "Ruwäch" + +#: sphinx/domains/cpp.py:6955 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6959 +msgid "concept" +msgstr "" + +#: sphinx/domains/cpp.py:6960 +msgid "enum" +msgstr "" + +#: sphinx/domains/cpp.py:6961 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/cpp.py:7054 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Name of declaration is '%s'." +msgstr "" + +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#, python-format +msgid "%s() (built-in function)" +msgstr "" + +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#, python-format +msgid "%s() (%s method)" +msgstr "" + +#: sphinx/domains/javascript.py:134 +#, python-format +msgid "%s() (class)" +msgstr "" + +#: sphinx/domains/javascript.py:136 +#, python-format +msgid "%s (global variable or constant)" +msgstr "" + +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#, python-format +msgid "%s (%s attribute)" +msgstr "" + +#: sphinx/domains/javascript.py:204 +msgid "Arguments" +msgstr "" + +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#, python-format +msgid "%s (module)" +msgstr "" + +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +msgid "method" +msgstr "" + +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +msgid "data" +msgstr "" + +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 +msgid "module" +msgstr "" + +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:126 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:50 +msgid "keyword" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "operator" +msgstr "" + +#: sphinx/domains/python.py:52 +msgid "object" +msgstr "wachinäq" + +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:54 +msgid "statement" +msgstr "" + +#: sphinx/domains/python.py:55 +msgid "built-in function" +msgstr "" + +#: sphinx/domains/python.py:215 +msgid "Variables" +msgstr "Retal jalöj" + +#: sphinx/domains/python.py:219 +msgid "Raises" +msgstr "" + +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#, python-format +msgid "%s() (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:433 +#, python-format +msgid "%s (built-in variable)" +msgstr "" + +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#, python-format +msgid "%s (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:454 +#, python-format +msgid "%s (built-in class)" +msgstr "" + +#: sphinx/domains/python.py:455 +#, python-format +msgid "%s (class in %s)" +msgstr "" + +#: sphinx/domains/python.py:492 +#, python-format +msgid "%s() (%s.%s method)" +msgstr "" + +#: sphinx/domains/python.py:504 +#, python-format +msgid "%s() (%s.%s static method)" +msgstr "" + +#: sphinx/domains/python.py:507 +#, python-format +msgid "%s() (%s static method)" +msgstr "" + +#: sphinx/domains/python.py:517 +#, python-format +msgid "%s() (%s.%s class method)" +msgstr "" + +#: sphinx/domains/python.py:520 +#, python-format +msgid "%s() (%s class method)" +msgstr "" + +#: sphinx/domains/python.py:530 +#, python-format +msgid "%s (%s.%s attribute)" +msgstr "" + +#: sphinx/domains/python.py:667 +msgid "Python Module Index" +msgstr "" + +#: sphinx/domains/python.py:668 +msgid "modules" +msgstr "" + +#: sphinx/domains/python.py:719 +msgid "Deprecated" +msgstr "" + +#: sphinx/domains/python.py:746 +msgid "class method" +msgstr "" + +#: sphinx/domains/python.py:747 +msgid "static method" +msgstr "" + +#: sphinx/domains/python.py:879 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:917 +msgid " (deprecated)" +msgstr "" + +#: sphinx/domains/rst.py:62 +#, python-format +msgid "%s (directive)" +msgstr "" + +#: sphinx/domains/rst.py:64 +#, python-format +msgid "%s (role)" +msgstr "" + +#: sphinx/domains/rst.py:116 +msgid "directive" +msgstr "" + +#: sphinx/domains/rst.py:117 +msgid "role" +msgstr "" + +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 +#, python-format +msgid "environment variable; %s" +msgstr "" + +#: sphinx/domains/std.py:166 +#, 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:207 +#, python-format +msgid "%scommand line option; %s" +msgstr "" + +#: sphinx/domains/std.py:458 +msgid "glossary term" +msgstr "" + +#: sphinx/domains/std.py:459 +msgid "grammar token" +msgstr "" + +#: sphinx/domains/std.py:460 +msgid "reference label" +msgstr "" + +#: sphinx/domains/std.py:462 +msgid "environment variable" +msgstr "" + +#: sphinx/domains/std.py:463 +msgid "program option" +msgstr "" + +#: sphinx/domains/std.py:464 +msgid "document" +msgstr "wuj" + +#: sphinx/domains/std.py:502 +msgid "Module Index" +msgstr "" + +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 +msgid "Search Page" +msgstr "" + +#: sphinx/domains/std.py:598 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:665 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:748 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:756 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:767 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:781 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:784 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:69 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:70 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:71 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:210 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:212 +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:408 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:536 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:621 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:662 +msgid "document isn't included in any toctree" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:82 +#, python-format +msgid "see %s" +msgstr "tatz'u %s" + +#: sphinx/environment/adapters/indexentries.py:86 +#, python-format +msgid "see also %s" +msgstr "tatz'u chuqa' %s" + +#: sphinx/environment/adapters/indexentries.py:89 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:156 +msgid "Symbols" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:153 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:172 +#, 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:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:91 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:107 +#, 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:197 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:69 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:299 +msgid "" +"\n" +"Look recursively in <MODULE_PATH> for Python modules and packages and create\n" +"one reST file with automodule directives per package in the <OUTPUT_PATH>.\n" +"\n" +"The <EXCLUDE_PATTERN>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:312 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:314 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:322 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:325 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:328 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:331 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:334 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:337 +msgid "include \"_private\" modules" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 +msgid "don't create a table of contents file" +msgstr "" + +#: sphinx/ext/apidoc.py:344 +msgid "" +"don't create headings for the module/package packages (e.g. when the " +"docstrings already contain them)" +msgstr "" + +#: sphinx/ext/apidoc.py:349 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:353 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:357 +msgid "file suffix (default: rst)" +msgstr "" + +#: sphinx/ext/apidoc.py:359 +msgid "generate a full project with sphinx-quickstart" +msgstr "" + +#: sphinx/ext/apidoc.py:362 +msgid "append module_path to sys.path, used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:364 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:366 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:368 +msgid "project version, used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:370 +msgid "project release, used when --full is given, defaults to --doc-version" +msgstr "" + +#: sphinx/ext/apidoc.py:373 +msgid "extension options" +msgstr "" + +#: sphinx/ext/apidoc.py:402 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:46 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:55 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:70 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:152 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:142 +#, python-format +msgid "missing '+' or '-' in '%s' option." +msgstr "" + +#: sphinx/ext/doctest.py:147 +#, python-format +msgid "'%s' is not a valid option." +msgstr "" + +#: sphinx/ext/doctest.py:161 +#, python-format +msgid "'%s' is not a valid pyversion option" +msgstr "" + +#: sphinx/ext/doctest.py:230 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:291 +#, python-format +msgid "" +"Testing of doctests in the sources finished, look at the results in " +"%(outdir)s/output.txt." +msgstr "" + +#: sphinx/ext/doctest.py:438 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:527 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:140 +msgid "Graphviz directive cannot have both content and a filename argument" +msgstr "" + +#: sphinx/ext/graphviz.py:150 +#, python-format +msgid "External Graphviz file %r not found or reading it failed" +msgstr "" + +#: sphinx/ext/graphviz.py:156 +msgid "Ignoring \"graphviz\" directive without content." +msgstr "" + +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 +#, python-format +msgid "" +"dot command %r cannot be run (needed for graphviz output), check the " +"graphviz_dot setting" +msgstr "" + +#: sphinx/ext/graphviz.py:263 +#, python-format +msgid "" +"dot exited with error:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:273 +#, python-format +msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" +msgstr "" + +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 +#, python-format +msgid "convert command %r cannot be run.check the image_converter setting" +msgstr "" + +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 +#, python-format +msgid "" +"convert exited with error:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/imgmath.py:140 +#, 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:290 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:317 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +msgid "Permalink to this equation" +msgstr "" + +#: sphinx/ext/intersphinx.py:182 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:312 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx.py:314 +#, python-format +msgid "(in %s)" +msgstr "(chupam %s)" + +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 +msgid "[source]" +msgstr "" + +#: sphinx/ext/todo.py:70 +msgid "Todo" +msgstr "Chi tiqib'ana'" + +#: sphinx/ext/todo.py:111 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:160 +msgid "<<original entry>>" +msgstr "<<original entry>>" + +#: sphinx/ext/todo.py:163 +#, python-format +msgid "(The <<original entry>> is located in %s, line %d.)" +msgstr "(Ri <<original entry>> k'o chupam %s, pa juch' %d.)" + +#: sphinx/ext/todo.py:172 +msgid "original entry" +msgstr "" + +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 +msgid "[docs]" +msgstr "" + +#: sphinx/ext/viewcode.py:201 +msgid "Module code" +msgstr "" + +#: sphinx/ext/viewcode.py:207 +#, python-format +msgid "<h1>Source code for %s</h1>" +msgstr "" + +#: sphinx/ext/viewcode.py:233 +msgid "Overview: module code" +msgstr "" + +#: sphinx/ext/viewcode.py:234 +msgid "<h1>All modules for which code is available</h1>" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:302 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:402 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:514 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:602 +#, python-format +msgid "" +"autodoc: failed to determine %r to be documented.the following exception was raised:\n" +"%s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:694 +#, 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:788 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:796 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:829 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:844 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1128 +#, python-format +msgid "Bases: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1185 +#, python-format +msgid "alias of :class:`%s`" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1470 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:102 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:106 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:366 +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:383 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:387 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:390 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "custom template directory (default: %(default)s)" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:398 +#, python-format +msgid "document imported members (default: %(default)s)" +msgstr "" + +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 +msgid "Keyword Arguments" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Example" +msgstr "Tz'etb'äl" + +#: sphinx/ext/napoleon/docstring.py:628 +msgid "Examples" +msgstr "Tz'etb'äl" + +#: sphinx/ext/napoleon/docstring.py:684 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:688 +msgid "Other Parameters" +msgstr "Jalajöj chïk" + +#: sphinx/ext/napoleon/docstring.py:717 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:754 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:759 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:307 +msgid "Attention" +msgstr "" + +#: sphinx/locale/__init__.py:308 +msgid "Caution" +msgstr "" + +#: sphinx/locale/__init__.py:309 +msgid "Danger" +msgstr "" + +#: sphinx/locale/__init__.py:310 +msgid "Error" +msgstr "Sachoj" + +#: sphinx/locale/__init__.py:311 +msgid "Hint" +msgstr "" + +#: sphinx/locale/__init__.py:312 +msgid "Important" +msgstr "" + +#: sphinx/locale/__init__.py:313 +msgid "Note" +msgstr "" + +#: sphinx/locale/__init__.py:314 +msgid "See also" +msgstr "Tatz'u chuqa'" + +#: sphinx/locale/__init__.py:315 +msgid "Tip" +msgstr "" + +#: sphinx/locale/__init__.py:316 +msgid "Warning" +msgstr "" + +#: sphinx/templates/latex/longtable.tex_t:23 +msgid "continued from previous page" +msgstr "" + +#: sphinx/templates/latex/longtable.tex_t:29 +msgid "Continued on next page" +msgstr "" + +#: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/searchresults.html:10 +msgid "Search" +msgstr "" + +#: sphinx/themes/agogo/layout.html:54 sphinx/themes/basic/searchbox.html:16 +msgid "Go" +msgstr "" + +#: sphinx/themes/agogo/layout.html:79 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 "Ütz apetïk! Wawe' k'o" + +#: sphinx/themes/basic/defindex.html:16 +msgid "the documentation for" +msgstr "ri wuj richin" + +#: 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:72 +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:31 +msgid "Navigation" +msgstr "" + +#: sphinx/themes/basic/layout.html:138 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "" + +#: sphinx/themes/basic/layout.html:147 +msgid "About these documents" +msgstr "" + +#: sphinx/themes/basic/layout.html:156 +msgid "Copyright" +msgstr "" + +#: sphinx/themes/basic/layout.html:201 +#, python-format +msgid "© <a href=\"%(path)s\">Copyright</a> %(copyright)s." +msgstr "" + +#: sphinx/themes/basic/layout.html:203 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "" + +#: sphinx/themes/basic/layout.html:207 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "" + +#: sphinx/themes/basic/layout.html:210 +#, python-format +msgid "" +"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> " +"%(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:30 +msgid "" +"Please activate JavaScript to enable the search\n" +" functionality." +msgstr "" + +#: sphinx/themes/basic/search.html:35 +msgid "" +"From here you can search these documents. Enter your search\n" +" words into the box below and click \"search\". Note that the search\n" +" function will automatically search for all of the words. Pages\n" +" containing fewer words won't appear in the result list." +msgstr "" + +#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/searchresults.html:17 +msgid "search" +msgstr "" + +#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js:295 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js:297 +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 "Ruxaq wuj re'" + +#: 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:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 +msgid "Permalink to this headline" +msgstr "" + +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 +msgid "Permalink to this definition" +msgstr "" + +#: sphinx/themes/basic/static/doctools.js:233 +msgid "Hide Search Matches" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:131 +msgid "Searching" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:136 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:299 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:352 +msgid ", in " +msgstr ", pa" + +#: 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:259 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:301 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:307 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:335 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:382 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:402 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:110 +#, python-format +msgid "more than one target found for 'any' cross-reference %r: could be %s" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:142 +#, python-format +msgid "%s:%s reference target not found: %%(target)s" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:145 +#, python-format +msgid "%r reference target not found: %%(target)s" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:92 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:120 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:140 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 +msgid "when adding directive classes, no additional arguments may be given" +msgstr "" + +#: sphinx/util/i18n.py:74 +#, python-format +msgid "reading error: %s, %s" +msgstr "rusachoj rusik'inïk: %s, %s" + +#: sphinx/util/i18n.py:81 +#, python-format +msgid "writing error: %s, %s" +msgstr "rusachoj rutz'ib'axïk: %s, %s" + +#: sphinx/util/i18n.py:215 +#, 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:428 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:501 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 +#, python-format +msgid "Any IDs not assigned for %s node" +msgstr "" + +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +msgid "Permalink to this table" +msgstr "" + +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 +msgid "Permalink to this code" +msgstr "" + +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +msgid "Permalink to this image" +msgstr "" + +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +msgid "Permalink to this toctree" +msgstr "" + +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:510 +#, python-format +msgid "unknown %r toplevel_sectioning for class %r" +msgstr "" + +#: sphinx/writers/latex.py:603 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:893 +msgid "document title is not a single Text node" +msgstr "" + +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 +msgid "" +"encountered title node not in section, topic, table, admonition or sidebar" +msgstr "" + +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1843 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2552 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 +#, python-format +msgid "[image: %s]" +msgstr "[wachib'äl: %s]" + +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 +msgid "[image]" +msgstr "[wachib'äl]" + +#: sphinx/writers/texinfo.py:1330 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1421 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1426 +#, python-format +msgid "unknown node type: %r" +msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.js b/sphinx/locale/cs/LC_MESSAGES/sphinx.js index ae5f30015..5aacfc501 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "cs", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", v ", "About these documents": "O t\u011bchto dokumentech", "Automatically generated list of changes in version %(version)s": "Automaticky generovan\u00fd seznam zm\u011bn ve verzi %(version)s", "C API changes": "Zm\u011bny API", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Sbalit bo\u010dn\u00ed li\u0161tu", "Complete Table of Contents": "Celkov\u00fd obsah", "Contents": "Obsah", "Copyright": "Ve\u0161ker\u00e1 pr\u00e1va vyhrazena", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Vytvo\u0159eno pomoc\u00ed <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Rozbalit bo\u010dn\u00ed li\u0161tu", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Toto je vyhled\u00e1vac\u00ed str\u00e1nka. Zadejte kl\u00ed\u010dov\u00e1 slova a klikn\u011bte na \"hledat\". \nVyhled\u00e1v\u00e1n\u00ed automaticky hled\u00e1 v\u0161echna slova, nebudou tedy nalezeny str\u00e1nky obsahuj\u00edc\u00ed jen n\u011bkter\u00e9 z nich.", "Full index on one page": "Cel\u00fd rejst\u0159\u00edk na jedn\u00e9 str\u00e1nce", "General Index": "Obecn\u00fd rejst\u0159\u00edk", "Global Module Index": "Celkov\u00fd rejst\u0159\u00edk modul\u016f", "Go": "OK", "Hide Search Matches": "Skr\u00fdt v\u00fdsledky vyhled\u00e1v\u00e1n\u00ed", "Index": "Rejst\u0159\u00edk", "Index – %(key)s": "Rejst\u0159\u00edk – %(key)s", "Index pages by letter": "Rejst\u0159\u00edk podle p\u00edsmene", "Indices and tables:": "Rejst\u0159\u00edky a tabulky:", "Last updated on %(last_updated)s.": "Aktualizov\u00e1no dne %(last_updated)s.", "Library changes": "Zm\u011bny v knihovn\u00e1ch", "Navigation": "Navigace", "Next topic": "Dal\u0161\u00ed t\u00e9ma", "Other changes": "Ostatn\u00ed zm\u011bny", "Overview": "P\u0159ehled", "Permalink to this definition": "Trval\u00fd odkaz na tuto definici", "Permalink to this headline": "Trval\u00fd odkaz na tento nadpis", "Please activate JavaScript to enable the search\n functionality.": "Pro podporu vyhled\u00e1v\u00e1n\u00ed aktivujte JavaScript.", "Preparing search...": "Vyhled\u00e1v\u00e1n\u00ed se p\u0159ipravuje...", "Previous topic": "P\u0159echoz\u00ed t\u00e9ma", "Quick search": "Rychl\u00e9 vyhled\u00e1v\u00e1n\u00ed", "Search": "Vyhled\u00e1v\u00e1n\u00ed", "Search Page": "Vyhled\u00e1vac\u00ed str\u00e1nka", "Search Results": "V\u00fdsledky vyhled\u00e1v\u00e1n\u00ed", "Search finished, found %s page(s) matching the search query.": "Vyhled\u00e1v\u00e1n\u00ed dokon\u010deno, str\u00e1nky odpov\u00eddaj\u00edc\u00ed hledan\u00e9mu v\u00fdrazu: %s.", "Search within %(docstitle)s": "Prohledat %(docstitle)s", "Searching": "Prob\u00edh\u00e1 vyhled\u00e1n\u00ed", "Show Source": "Uk\u00e1zat zdroj", "Table of Contents": "", "This Page": "Tato str\u00e1nka", "Welcome! This is": "V\u00edtejte! Toto je", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Vyhled\u00e1v\u00e1n\u00ed nenalezlo \u017e\u00e1dn\u00fd odpov\u00eddaj\u00edc\u00ed dokument. Ujist\u011bte se, \u017ee jste v\u0161echna slova zapsal/a spr\u00e1vn\u011b a \u017ee jste vybral/a dostatek kategori\u00ed.", "all functions, classes, terms": "v\u0161echny funkce, t\u0159\u00eddy, term\u00edny", "can be huge": "m\u016f\u017ee b\u00fdt obrovsk\u00fd", "last updated": "naposledy aktualizov\u00e1no", "lists all sections and subsections": "seznam v\u0161ech sekc\u00ed a podsekc\u00ed", "next chapter": "dal\u0161\u00ed kapitola", "previous chapter": "p\u0159edchoz\u00ed kapitola", "quick access to all modules": "rychl\u00fd p\u0159\u00edstup ke v\u0161em modul\u016fm", "search": "hledat", "search this documentation": "prohledat tuto dokumentaci", "the documentation for": "dokumentace pro"}, "plural_expr": "(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3"}); +Documentation.addTranslations({"locale": "cs", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", v ", "About these documents": "O t\u011bchto dokumentech", "Automatically generated list of changes in version %(version)s": "Automaticky generovan\u00fd seznam zm\u011bn ve verzi %(version)s", "C API changes": "Zm\u011bny API", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Sbalit bo\u010dn\u00ed li\u0161tu", "Complete Table of Contents": "Celkov\u00fd obsah", "Contents": "Obsah", "Copyright": "Ve\u0161ker\u00e1 pr\u00e1va vyhrazena", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Vytvo\u0159eno pomoc\u00ed <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Rozbalit bo\u010dn\u00ed li\u0161tu", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Toto je vyhled\u00e1vac\u00ed str\u00e1nka. Zadejte kl\u00ed\u010dov\u00e1 slova a klikn\u011bte na \"hledat\". \nVyhled\u00e1v\u00e1n\u00ed automaticky hled\u00e1 v\u0161echna slova, nebudou tedy nalezeny str\u00e1nky obsahuj\u00edc\u00ed jen n\u011bkter\u00e9 z nich.", "Full index on one page": "Cel\u00fd rejst\u0159\u00edk na jedn\u00e9 str\u00e1nce", "General Index": "Obecn\u00fd rejst\u0159\u00edk", "Global Module Index": "Celkov\u00fd rejst\u0159\u00edk modul\u016f", "Go": "OK", "Hide Search Matches": "Skr\u00fdt v\u00fdsledky vyhled\u00e1v\u00e1n\u00ed", "Index": "Rejst\u0159\u00edk", "Index – %(key)s": "Rejst\u0159\u00edk – %(key)s", "Index pages by letter": "Rejst\u0159\u00edk podle p\u00edsmene", "Indices and tables:": "Rejst\u0159\u00edky a tabulky:", "Last updated on %(last_updated)s.": "Aktualizov\u00e1no dne %(last_updated)s.", "Library changes": "Zm\u011bny v knihovn\u00e1ch", "Navigation": "Navigace", "Next topic": "Dal\u0161\u00ed t\u00e9ma", "Other changes": "Ostatn\u00ed zm\u011bny", "Overview": "P\u0159ehled", "Permalink to this definition": "Trval\u00fd odkaz na tuto definici", "Permalink to this headline": "Trval\u00fd odkaz na tento nadpis", "Please activate JavaScript to enable the search\n functionality.": "Pro podporu vyhled\u00e1v\u00e1n\u00ed aktivujte JavaScript.", "Preparing search...": "Vyhled\u00e1v\u00e1n\u00ed se p\u0159ipravuje...", "Previous topic": "P\u0159echoz\u00ed t\u00e9ma", "Quick search": "Rychl\u00e9 vyhled\u00e1v\u00e1n\u00ed", "Search": "Vyhled\u00e1v\u00e1n\u00ed", "Search Page": "Vyhled\u00e1vac\u00ed str\u00e1nka", "Search Results": "V\u00fdsledky vyhled\u00e1v\u00e1n\u00ed", "Search finished, found %s page(s) matching the search query.": "Vyhled\u00e1v\u00e1n\u00ed dokon\u010deno, str\u00e1nky odpov\u00eddaj\u00edc\u00ed hledan\u00e9mu v\u00fdrazu: %s.", "Search within %(docstitle)s": "Prohledat %(docstitle)s", "Searching": "Prob\u00edh\u00e1 vyhled\u00e1n\u00ed", "Show Source": "Uk\u00e1zat zdroj", "Table of Contents": "", "This Page": "Tato str\u00e1nka", "Welcome! This is": "V\u00edtejte! Toto je", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Vyhled\u00e1v\u00e1n\u00ed nenalezlo \u017e\u00e1dn\u00fd odpov\u00eddaj\u00edc\u00ed dokument. Ujist\u011bte se, \u017ee jste v\u0161echna slova zapsal/a spr\u00e1vn\u011b a \u017ee jste vybral/a dostatek kategori\u00ed.", "all functions, classes, terms": "v\u0161echny funkce, t\u0159\u00eddy, term\u00edny", "can be huge": "m\u016f\u017ee b\u00fdt obrovsk\u00fd", "last updated": "naposledy aktualizov\u00e1no", "lists all sections and subsections": "seznam v\u0161ech sekc\u00ed a podsekc\u00ed", "next chapter": "dal\u0161\u00ed kapitola", "previous chapter": "p\u0159edchoz\u00ed kapitola", "quick access to all modules": "rychl\u00fd p\u0159\u00edstup ke v\u0161em modul\u016fm", "search": "hledat", "search this documentation": "prohledat tuto dokumentaci", "the documentation for": "dokumentace pro"}, "plural_expr": "(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3"}); \ No newline at end of file diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index e03265956db013602ea1f86e62f41f3f3d3286e8..5b35be9de961b5cde8106df2e9188154c0f36655 100644 GIT binary patch delta 13969 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 F{{SKm_1pje delta 16231 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 diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index f76d10bac..fe21d6ad5 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" "MIME-Version: 1.0\n" @@ -20,21 +20,21 @@ msgstr "" "Language: cs\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -47,95 +47,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,7 +131,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -151,60 +139,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -212,833 +194,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "Obr. %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "Tabulka %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Výpis %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Vestavěné funkce" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Úroveň modulu" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Obecný rejstřík" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "rejstřík" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "další" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "předchozí" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "Dokumentace pro %s %s" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1052,188 +923,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (v " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Rejstřík" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Vydání" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1252,253 +1145,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1506,11 +1393,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1518,25 +1405,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1546,15 +1433,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1565,22 +1452,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1589,36 +1476,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1626,29 +1513,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1656,26 +1543,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1685,214 +1572,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Autor sekce: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Autor modulu: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Autor kódu:" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Autor: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametry" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Vrací" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Typ návratové hodnoty" @@ -1921,12 +1808,12 @@ msgstr "%s (C typ)" msgid "%s (C variable)" msgstr "%s (C proměnná)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "funkce" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "člen" @@ -1934,7 +1821,7 @@ msgstr "člen" msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "typ" @@ -1942,297 +1829,262 @@ msgstr "typ" msgid "variable" msgstr "proměnná" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Nové ve verzi %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Změněno ve verzi %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Zastaralé od verze %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Vyvolá" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ typ)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++ člen)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++ funkce)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++ třída)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "třída" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (vestavěná funkce)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (třída)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globální proměnná nebo konstanta)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Argumenty" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "klíčové slovo" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operátor" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "výjimka" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "příkaz" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "vestavěná funkce" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Proměnné" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Vyvolá" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (vestavěná proměnná)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (vestavěná třída)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (třída v %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (metoda %s.%s)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statická metoda %s.%s)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metoda %s)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (třídní metoda %s.%s)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (třídní metoda %s)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atribut %s.%s)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Rejstřík modulů Pythonu" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Zastaralé" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "třídní metoda" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "statická metoda" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (zastaralé)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (direktiva)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (role)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "direktiva" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "role" @@ -2241,209 +2093,200 @@ msgstr "role" msgid "environment variable; %s" msgstr "proměnná prostředí; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%svolba příkazového řádku; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "termín v glosáři" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "token gramatiky" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "referenční návěstí" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "proměnná prostředí" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "volba programu" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Rejstřík" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Rejstřík modulů" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Vyhledávací stránka" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "viz %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "viz také %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Symboly" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2455,352 +2298,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[graf: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[graf]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(v %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[zdroj]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "původní záznam" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[dokumentace]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Kód modulu" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Zdrojový kód pro %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Přehled: kód modulu" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Všechny moduly s dostupným kódem</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2808,66 +2680,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "alias třídy :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2882,106 +2773,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Výstraha" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Upozornění" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Nebezpečí" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Chyba" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Rada" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Důležité" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Poznámka" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Viz také" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Varování" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "pokračujte na předchozí stránce" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Pokračujte na další stránce" @@ -3000,7 +2891,7 @@ msgstr "Vyhledávání" msgid "Go" msgstr "OK" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Ukázat zdroj" @@ -3149,13 +3040,13 @@ msgstr "hledat" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Výsledky vyhledávání" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3197,36 +3088,36 @@ msgstr "Změny API" msgid "Other changes" msgstr "Ostatní změny" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Trvalý odkaz na tento nadpis" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Trvalý odkaz na tuto definici" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Skrýt výsledky vyhledávání" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Probíhá vyhledání" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Vyhledávání se připravuje..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Vyhledávání dokončeno, stránky odpovídající hledanému výrazu: %s." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", v " @@ -3243,76 +3134,89 @@ msgstr "Sbalit boční lištu" msgid "Contents" msgstr "Obsah" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3326,140 +3230,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Permalink k této tabulce" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Permalink k tomuto kódu" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Permalink k tomuto obrázku" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Vydání" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Poznámky pod čarou" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[obrázek: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[obrázek]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.js b/sphinx/locale/cy/LC_MESSAGES/sphinx.js index c7d71fcec..c8e16806f 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "cy", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", yn ", "About these documents": "Yngl\u0177n \u00e2'r dogfennau hyn", "Automatically generated list of changes in version %(version)s": "Rhestr o newidiadau yn fersiwn %(version)s wedi'i cynhyrchu'n awtomatig", "C API changes": "Newidiadau i'r C-API", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Cyfangu'r bar ochr", "Complete Table of Contents": "Tabl Cynnwys Llawn", "Contents": "Cynnwys", "Copyright": "Hawlfraint", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Cr\u8c37wyd gan ddefnyddio <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s", "Expand sidebar": "Ehangu'r bar ochr", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "O'r fan hon gallwch chwilio'r dogfennau hyn. Rhowch eich geiriau chwilio yn y blwch isod a chliciwch \"chwilio\". Nodwch fod y ffwythiant chwilio yn chwilio am bob un o'r geiriau yn awtomatig. Ni fydd dudalennau sy'n cynnwys llai o eiriau yn ymddangos yn y rhestr canlyniadau.", "Full index on one page": "Indecs llawn ar un tudalen", "General Index": "Indecs cyffredinol", "Global Module Index": "Indecs Modiwl Byd-Eang", "Go": "Ewch", "Hide Search Matches": "Cuddio Canlyniadau Chwilio", "Index": "Indecs", "Index – %(key)s": "Indecs – %(key)s", "Index pages by letter": "Indecs tudalennau gan lythyren", "Indices and tables:": "Indecsau a tablau:", "Last updated on %(last_updated)s.": "Diweddarwyd yn ddiwethaf ar %(last_updated)s.", "Library changes": "Newidiadau i'r llyfrgell", "Navigation": "Llywio", "Next topic": "Pwnc nesaf", "Other changes": "Newidiadau arall", "Overview": "Trosolwg", "Permalink to this definition": "Permalink i'r diffiniad hwn", "Permalink to this headline": "Permalink i'r pennawd hwn", "Please activate JavaScript to enable the search\n functionality.": "Trwoch JavaScript ymlaen i alluogi'r chwilio.", "Preparing search...": "Paratoi chwilio...", "Previous topic": "Pwnc blaenorol", "Quick search": "Chwilio cyflym", "Search": "Chwilio", "Search Page": "Tudalen Chwilio", "Search Results": "Canlyniadau chwilio", "Search finished, found %s page(s) matching the search query.": "Chwiliad wedi gorffen, wedi ffeindio %s tudalen(nau) yn cyfateb a'r ymholiad chwilio.", "Search within %(docstitle)s": "Chwilio o fewn %(docstitle)s", "Searching": "Yn chwilio", "Show Source": "Dangos Ffynhonell", "Table of Contents": "", "This Page": "Y Dudalen Hon", "Welcome! This is": "Croeso! Dyma", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Nid yw eich chwiliad yn cyfateb unrhyw ddogfennau. Gwnewch yn si\u0175r fod pob gair wedi'i sillafu'n gywir, ac eich bod wedi dewis digon o gategor\u00efau.", "all functions, classes, terms": "holl ffwythiannau, dosbarthau a thermau", "can be huge": "gall fod yn enfawr", "last updated": "diweddarwyd yn ddiwethaf", "lists all sections and subsections": "rhestru holl adrannau ac isadrannau", "next chapter": "pennod nesaf", "previous chapter": "pennod blaenorol", "quick access to all modules": "mynediad cloi i bob modiwl", "search": "chwilio", "search this documentation": "chwiliwch y ddogfennaeth", "the documentation for": "y dogfennaeth am"}, "plural_expr": "(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3"}); +Documentation.addTranslations({"locale": "cy", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", yn ", "About these documents": "Yngl\u0177n \u00e2'r dogfennau hyn", "Automatically generated list of changes in version %(version)s": "Rhestr o newidiadau yn fersiwn %(version)s wedi'i cynhyrchu'n awtomatig", "C API changes": "Newidiadau i'r C-API", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Cyfangu'r bar ochr", "Complete Table of Contents": "Tabl Cynnwys Llawn", "Contents": "Cynnwys", "Copyright": "Hawlfraint", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Cr\u8c37wyd gan ddefnyddio <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s", "Expand sidebar": "Ehangu'r bar ochr", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "O'r fan hon gallwch chwilio'r dogfennau hyn. Rhowch eich geiriau chwilio yn y blwch isod a chliciwch \"chwilio\". Nodwch fod y ffwythiant chwilio yn chwilio am bob un o'r geiriau yn awtomatig. Ni fydd dudalennau sy'n cynnwys llai o eiriau yn ymddangos yn y rhestr canlyniadau.", "Full index on one page": "Indecs llawn ar un tudalen", "General Index": "Indecs cyffredinol", "Global Module Index": "Indecs Modiwl Byd-Eang", "Go": "Ewch", "Hide Search Matches": "Cuddio Canlyniadau Chwilio", "Index": "Indecs", "Index – %(key)s": "Indecs – %(key)s", "Index pages by letter": "Indecs tudalennau gan lythyren", "Indices and tables:": "Indecsau a tablau:", "Last updated on %(last_updated)s.": "Diweddarwyd yn ddiwethaf ar %(last_updated)s.", "Library changes": "Newidiadau i'r llyfrgell", "Navigation": "Llywio", "Next topic": "Pwnc nesaf", "Other changes": "Newidiadau arall", "Overview": "Trosolwg", "Permalink to this definition": "Permalink i'r diffiniad hwn", "Permalink to this headline": "Permalink i'r pennawd hwn", "Please activate JavaScript to enable the search\n functionality.": "Trwoch JavaScript ymlaen i alluogi'r chwilio.", "Preparing search...": "Paratoi chwilio...", "Previous topic": "Pwnc blaenorol", "Quick search": "Chwilio cyflym", "Search": "Chwilio", "Search Page": "Tudalen Chwilio", "Search Results": "Canlyniadau chwilio", "Search finished, found %s page(s) matching the search query.": "Chwiliad wedi gorffen, wedi ffeindio %s tudalen(nau) yn cyfateb a'r ymholiad chwilio.", "Search within %(docstitle)s": "Chwilio o fewn %(docstitle)s", "Searching": "Yn chwilio", "Show Source": "Dangos Ffynhonell", "Table of Contents": "", "This Page": "Y Dudalen Hon", "Welcome! This is": "Croeso! Dyma", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Nid yw eich chwiliad yn cyfateb unrhyw ddogfennau. Gwnewch yn si\u0175r fod pob gair wedi'i sillafu'n gywir, ac eich bod wedi dewis digon o gategor\u00efau.", "all functions, classes, terms": "holl ffwythiannau, dosbarthau a thermau", "can be huge": "gall fod yn enfawr", "last updated": "diweddarwyd yn ddiwethaf", "lists all sections and subsections": "rhestru holl adrannau ac isadrannau", "next chapter": "pennod nesaf", "previous chapter": "pennod blaenorol", "quick access to all modules": "mynediad cloi i bob modiwl", "search": "chwilio", "search this documentation": "chwiliwch y ddogfennaeth", "the documentation for": "y dogfennaeth am"}, "plural_expr": "(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3"}); \ No newline at end of file diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index 58f631f76b074a1cfd3d7496dd18fe3e13ff0c50..c1d9c69b1744c16df6047dad0db5979bf55fb430 100644 GIT binary patch delta 14035 zcmeI&d32OTy2tUiAqfNsgaCnr?IjQhWPt!-N!S+wA#8%kBG4fn5>3*vI|+oXaTFC$ zSz3*PvMMehDlG%32;zbwpg4juD31FAxS)a{%KiRQuQQ&Rd(WLY=gv9zkMXFVdaB>9 zx9X{<DwyMrtzo<F4-1@(3A@|kug9xdRx`Z0k)pr-b-IIP-Ai}|+u<$A{Nu8$t+<@; zWTf&L{jYSitS0n7-N~{}5g$sotii;)I$Ks_yxhgI=Fs0b!?Jw15(_OWV1;+1lMWwt z<iRDlnE09QmUSf#>S0+2a2Za*Nj)u#cU#*r3O~ef{05n$^&|F1JJYfl!kUUh@gD4p zA7BEu%(ARV-fs<{QIn1ln26(11I<MZya^lN7OanZu_3;N_3(47gXd8b3hQNAwJ`?u zc?%~_LyeP(u{aW=dB5eMQ5Vb6#zm+XZ9)yS6C?2@=kvpO74bLN9|y8r4Y<hhevBp# zp)>#^HOY37o@ttksA7H=&V8Lo4WmdSE!Rt=2Tu7w<rJ#d;W9;z?|ZzhWDVC$GD( zFLuETsEMccv#c7}6Q^T;R7N)-<zYS2kNm6gXF7&p9hMV=<B&SCW};qnFXrIWsQPR? zz)UC=73ZRjb5NOD?f4KXvrnM5_<3Z`)_&*nh=BpiN}?lrps^>mAkIM+Vcm%O;tQy~ zJ%Fw7U8EkZi>R9EGRUlSB5Fcz?25C{#x1DtA3|--3Dg#x4$x>xqsCzKqIRgg?1Wm$ z5KP1|j<c{i@dHR9ThF4Z{2c0gX;+x)9*o(<`KVg@BSzq>SPS1kWj63<r*RI+t`);R z48w6a9oL|$_%eoLy`daQY=r!6P2yj}aU-ghzQGz;lR;`?G;-9fI8<$oLT$+mWMTo! zM?<N+8C46rF#*4EjJeXXS`%lW2A+u80yioHH=#24Jlc2?Bk?lo#gUqwi|s^ZsNV>) z6%(+5&cBC7H9n|7w$qwd^#SJ`!-(I;G(3*l)0*T}FX)ZxAA-tEIco3cIj%%y>Jik+ z&p5h9TGnLZM%bM9TQ{hI%TRmuI8MYpsFlWzGFy;^+@{uWtc43u6JCtUz#%NgGe|jD zQ%0L(y#ebHKY==ydz}8)F_22fyEKw8VvHHMBWfa<PCNqj`2^G+FGOYLKAePWP#L&@ zDR>!mL#B*1)!rYYh{vM7KOI#Y6=TW2QuYTrw4!@ad$bXo;WMaX@{Z$K)QuK(l`#=@ zLG{MAH~~4@)&eZR7qBxXk26I*6}5$rpfdLUIP$N?FLY?&=HrbS*nl`2>!KSQVF^a# zEm#LDQK@|pWAJGw-j6EUcd!lqj2h3r+I+7oMiBQ8(9nQGQ5l$ss`6aaUKKj=Y}7;- zqF%HPH9!a(;xnk{-#|_H1oGp-`U-W<+f6V<I}r7rY}9)L*U->j6ksy?Py?+&FFuC4 zGUKl?FP?~6Ss~WP<yejzP!o@%ay6k=sBycYp6iRsz!>Cj%fr8@oq)B6Mh80LiMrrm z?1&YpqI(q6@GYcHEf;5}1jnK>@*?V#e2ls`!l#&&C!tN8jUFsUhOpkok=XHCE;*h5 z1vG}!@h42gmQ&5ZgOM>U4{F6PU_1QOiKC{OI2|>CiP#(GVt3qyx+lKF)%Y{!V&!xS z6)$0VfW|nt*~{0lI`Lbm<8=&eJb@W_36-JFIp&n)VN>GysFmM`n!t0Ym0m<mVEhcT zHPcYXbSCPU7GXd|u!=@|+>DLzD5|(l;SxNH`oessuNOXs`ur7CtsFw_{c$J$(238W zYT!py%74YBn9Y9l)$<<muL~$H&z#dCsN$J}&2bs3+8;+vbT9VABN&ghXPOnZMIFaZ zsMPjGP55rq`QL{m!}<}2;5GT?J?rwxzgE1R4yEdKR1F-(>G(5hB2x;?p9|)oZnFDO z=l)^G9jGebkIKk#Y>S^_8?1Akxv0`n;|)hGpddg)E4~?9;(gd3ccJ$1XH<r+zTQmW zW^6{h5%s;j*b0wg4?K_B<4%PpBi*nD@jz5j4##eI6J}xH85+ZAoO3$*6`3Ea^KdBr zJ5VXtPZp&v6P40GIBv(f#9v@nJdd%M!sVff4#WXC9reA97>CEq=K<?m8cInNhq?(S zV+$OFjd2F52Ie~Pov7zFVG{1a-uMMZW7`|d)^x{C#6vI)XQN&`A3I_t#_Rm=r_q6q zk5GFS<ukR=6}9p{s0q$S8}C7-eg|r64x%P{5w-Fdzxjhqd(^m-Q8ji8*2Mc!6MG2T z@_y?Wjr#Ztss`$nnw53Ldc@bDQkn0#2vwvTkdtJ+it910%xuA%s1=8EFYEiYa3aQ| z_Pi9+@JS3P)gRE%3w}jSpy@30vmgtV;+fbLm!qD485`gysQch2<odT7&NlzaR)m_s zPSiwqV=ep`8{*g41glq&|704?D$L#tMNJ?FBk>Q|18>J{d>L7s)nJav*kX(!UX2mB z6*aN#7>}=EWBdelsxF}>(r2z&$gsKOzZ)I-bm$bUMLqZ>YJlW<X0NWmSmIfzQ*bAa z#AB#EO`LC1orX$nAJm=~VHDovxB`0<uf=Bget<?h8W&NiPFP^>`r(*Dd?U8Pt=IzJ z#HRQSYJ#;{fCf|{DU-RV;#!VZ;|q>W7McutaV-72Q5RDn`bKkMWS~-)g<9Dttb=P% z18&Cl_#SFy5q~hJq8Vx>nW$qm0psvi)P&cgGPf6Xy57N7_^XKnmVJ}Cp@!gKJ{X01 z@!hE7vjMx~AxyyVn@y&YP?;Em&9TUdm!h6~7{l=Zss`Rf72g-AqWlH3bpBf}GQ~5^ zF%LCB5o)H(aRhF2KEI5ui6d??6Yqe7h&y8j&O#O0;~0iJQ489Q>39GK<0Txx`>g@D znxa~SiNuFcDf}MwqNv-<#gmST$6^YWqcX4&brJ2sBs_zfQ0!tek;$m<<)J=b;=~~g zM9}dLjhc88>*D8F8_%J>P;H5GHKUH>AhdBlj>a{pjD3SD%9y3*`BWT5d<81?_n>NQ zGwOYNmXiNy8n4o!l^;hPm&>S$MBQ#y+6<M#VW<gRjY?qvJK)Qx)P9Sqm4rJ?W+q`R z;&RkIaU-gD??O%Fu{+4WI-aLPSLNHzgP&kq;`6BDX>q67%WkNfFblP!64b;Op)$D{ zXW%x}7RD|!{hhEjad&Ko12Ge?574k_Y{GuHA8TOE<>pvLqh_9pnovJ%k26s#U*YsW zhZBfD#y*&}!en9&a#dK{FcQ;Onha;5;=nK(DKxG^4Y&|H;bzpadJnb2i&%+v(6|#B z(;9u3$>2vgh4?2_QI5actn>!d_wU1G+=El`6n5tQ)|K~|V>2I>nh<KGCr}qiHQuUJ zwn81JEX=@us27!EIIcv!;9g9{mz>YfqK<LhdySp25%JinnElVE5lhDsR8_7=9hb*Y z89D6qU%(jRYWJDv8{t6W6dZ#ks0r`Gp7<eVVbfJ+%O;?<_D0k=i?NB$|NS(ylI^IO z9YI~GpQ9cOTWyN4F@EdfnnmVf*$<eE?Lz%Z_CwUKWb@aWU&&rr&kN}Pe1rLwto0zL zhWIq<SF)Wqk^eaibmhb5cd{>IA#smK%nKhv{YrK>aurx-9yLGTXFbL(M!XLv;T@Yz z>c7A!;)YwymL#Aun1sFYD(sFca45dEh5heKBj#~)fs92}Wf|7Q0IGOyLk+YQwb#c{ znfU<g<5|>k4BKjsaU9kmZjVve4Qt~d=kw7{Jbf$q*F{iBhiYIUMq?$`#YeCe?m)fh zIBK9%sEM9O8(mMBU&$t5f8uh~csm{6K#ltuHpcT9hxGzanhCVWcshDx6TAksf*YLA z7ho#!O4JwkVmJIVw#52RnHoyRHpJPu3w_uHQ?{9jPe&DDAx_6YDGjCcD5m2H$Ec9` zq0|>+=)V<Ha24tW`!NSkqb5G;X)~egP({2RZQOy%)VmmlA7Nem9Jw(A);StO==cTo z;Nb1%jvwVX8+EMKqiSU@sy3`Ynmvz1ZBYyCf&EZ5Q-NC8T2w|K!mju{+W0-z;r&*_ z9cG2C9J``YIs}!fnW*FF#aehf>IIdKyRkX($C!z(ou<lrVJvYeCg4)M8n<G73}=5L zc)!({h6Zkdao8Sp9}Gkl(=;50>v1}s!g@I38MDGEIEXk0b*vu7;rJ~!!Cudrg^WjK z?pn;iJPb6TaX$^s=t;+Y*n{|OR82%ZXI9YHF$Z-+E<z3XC~6C~VJ5zf%3!_SCe<BL z$8a?2#ZxiH#gF0L<UgK{ho3iFun(28qo`szjk;pLLp_(V$NV@QjcLRaP<wid)Bmi~ zzt4%kLyh+nw!nIOO{UUNMeW}kFvsr}IwsSx3Y+6O$A&MM%yh<y^bbNE!!@YX9>mW0 zDQXLw>@yQ?jV+01Vlm!|gYg_{>w3NDY+-<g&iNF_0@Mr2F$o_;j)`>$8{*rj7k%k` z{sU?v&0jLL&<!UM_j2M&)Uka4_5A}FjUPA$zNMi7TrZowj7O!cHR?r~*a!z>Q=E+2 zidh(kE1h@?>U;a0{*$O5<3FJm)bbVcE7@#R#&#e@9k9Nlp*`%n-=wU-aWOWg|53*m zP<wV9b%C5lP3&jXit4{=GMRu%aYxkieVuqLwkFQOHh2qG{r-P54Gp*lBk(Y4z@w-P ze1<jgJJj8O5o=(?Yi7cAQ7=kE_4h|jY#3@H(@>|(i{tSoY=+0N7WHSHQv+QG%opmQ zYN8n?V|&!`9FJa{iGA=L)Qe+ZH!Ew8dM+EwaT;pk$54C!0cwIjpq{&gRp-C%K~voc zsN$K29q=9Og4GV0|F-LfNyK@m<F^b)<MUX8^$weiEW}pC>o5WLp;G=S+F0ui^NWk* zH`sr@a0MMB@idOZtT)XKwj2|Q-$NazYDdg5O+fAC0&IsHocMqfe~p?z>|5p!9zC!- zaXCieR$PtGy+!_WX<YLs^T+4isMIxj+tkACjzJ8ge-+xe7Bg@!DnsW`)!*T$IVJs3 zE58<d<3iLzpT|gyJ7%_`b$~`V9m$x2=~xG+Vtc$E8{yrk;@pgP;WpIsL*6kjEJc03 z9BX4GYOgn<R=gSY;$2SsA}Zs7BQ%!Mu-`R5UbkQ>@oDUg@yAW^WTR4@gE6=SqwxXk ziCa<k!WXC)RsXYDNEA*Wjz>+{hZ=V+=IH#tMPmpZ87It(=A%};5;f2xs2bRY)A3!@ z72WeabEi*0t*{*H;mwYBVFTg^Q4`*YZSi$fF`mUZ-fuO2-wc?J@q91}8{&1Sq6=Vu zT#J+NLsW)(oir1;4x14#MtyG+s`#G89{4_Li(@}<jx}m)+GF<sjdU8_umH1g9S+0y zoVe{@%#YO^97_KKsFZ((%AEb7Nol_0YOG8DVeE?UV=Tse<lGZDfH)fi+Kc5h;_yY( zO5VrjcoCamlaI|x)3Gt}XjDq`op>(lxghF(*n++BD5^#pd}6ky4R#{#iec#ag#7Ep z*U`}tZ$@pw)2IvR4b+}pMAbs8PtD4cQ4{o_jW?lE{~&5>cA+NvIcnvXF&$$+Gvf|L z)tLXYfVm<U)1jHI#J2b%*2k}~C0;_Utl8&gC4*6!8t>@CMB-)W!R@#nn|@)oU^j*l zpG6hvd7Owf0$-XvcVikI4`2&Ch<d>()C6jNWquYUVG{8;)ZWfVJ--cA?MJXFeu~$i z>y-IVwn?Z7JcOF)V^|9VZ_-fePN4SiTTI5t)21deP!kx1k?6%9Sb^EN4a-pf6Ob}i zj;f8@FalSjCbj{!wSPoy%@ORc^Zz9c%_RA2vyyJ8(=Z-~;qAzS)-luoO};T()djV; zxi|#p;z)cEHD1iOCe_U`jW`vx=Tk5WeO0pm3u&lY??k2iAhyFVQK_!~ow@5XF@?AU zTj2w!)bBy1{3L3E7g6IiI%_g{6?P&H;MMq~V~y|0An&)P(in?dunk^DrLN5nCUwcE zmG#9scqeMW)z}^nqE>bebt>xoXcp1|I}#5;ow8Y|39mq9?nw-^rLmueR`fM0jy`8n z*c}HG4?xw%ZP)?VV|P4=tugGp$y5?56Jt;lDRSbam_Yn6hT{QjjBlQ2{~OZyf(}*X zFQ^-^^-t!(X{bziPy-aACb|qq;8V`$zoI4*e!;m~aS(AjW?(t0Cbpm^umhFJ-51Dz zI*kK#Xr-5M01milifR#RVuvsezel|&>SuHDq@&`osM;vUrnnJPaSy77&Y&g~d&x{> zGU|JI0UCN>iPI569kX{(GyD+i;n!Fje?>iC>ld>nU9bo72()n#j>b)>jGf1LjQ`a< zpMj%@N1`$xSVN-$jS%X^`!O1ipjQ47>bTUrY<{T3qE?!Sn&4Q}gr=b~cpIul4x=)A z0lQ<e<*J&<4AfREz!;tX#WWhxaX)Gz+no3n)XLvO9<)xQit{q6c-p#LRX186>`FWk zwW8UmiQj=WFoZMkS!{wWtGTKc+5_wHero^?o%gYriF44#?br{Gp$2MP-Boozv_ws) z7ivPIP{*(wweodN|LZt`_$>CpE5lq>nOKYqh+n`+-f#5_cU7hMO4JrygGzA@YQSZv z^ZpDr$5W^kMn<@*ekI${aX+r0e_9P!)fRq-Q;4h8bX67QG}J=pqQ1Wo1G?*9qcIhK z#LhS_(p7bAZbf}zH)^GyVhgNO%T;w6l2JcY2BVJIm8j}ph~aoYYWxkT({R}N{1WOI zH>vFkR5dbdn;Mvc`oM>=co){h&8Xw@G%6$SI{nq_n60RTdcGwN#BMkS=b$Eh5PRY& z%)-Pdvt{n6er9i%(xE*KqKae_Y9)J6#d!jo;diL#>ee+y*s5+YKIMVX$0@~igEu^N zU2xvgCZT7a%5Vjb^;%Lb(I5OaG$xqTXQ=JY&GqD_*ol67M!vgvrqlL$ioE5XT#E<4 zD~$`Tn;R8+;_1fKgIoHSh87LT3Jbn{MNH_@6>o*5+NECG=W*xS1;wQvpT8u(pm_GQ zB6mqiLGjGViT-O->|ryDy*^KFrk&_pxvwykF=A%5(32x~x<dWOBvcQUj>`@HW!$RZ zn(=$W3knOpvx4)+CxouOIwdSnP&~t9mv>I<lwx01HLhLe_xSCEg5q4y>;&8Gw~O3< zUOFw;JHyVYuyZ|m?y|ztG<$TR$L;rMX?DWz9_ekjo8e`a#ijms37U6>x6EhLm6ujh zk!D>*#0zr^e4ZJlUSCD9*O7`qSxJf4S8C^ZeYU6EU0CKWWnK2@iqd><vEAABR}`1J zXWIpSUS7iY+@+pe+g+S%&tffhj)&A#C6es?wuY{0ozm=q-r{l(<C1pf;SATs8IGw` z6y<me{nofp+~jOmWUjZ!%>ZnMcS^h8MQf*w`dbuQ{inNKE`M;v)Oc4)aMaQ5wX$r_ z>=M@E$qm&%Hr^Ese|J~#%)2+ZYK5N3`N9>I>$S%D+{OMvH>(YuIWfl-d@k>vP>X_2 z)q}Agmj*xhc<(@OX}(?R&M7N&`(}6x%ZiHqRjbRKRghbn@6WWoC8Y%<!tL|eGYiT+ z#cB3mKO!du+WF9`Pdd7S&AoSo_Iu~KLPKs?Rz3K_DNmHI)?|NauD7i8+FFUe;Iy)M z{>ciiDT@o<dAfhFPI*kI?wPHw%Jhb=uAz@+bqM>rFPu4>@OM4UzE27+p4UD2`1iN1 z{2?+X*B<8`XtUYA3bwDTI5#tx{zJbJes7V7{qmPlNwW%AUR8%T&o0fUpIs>?8wDPJ zik(wds?G{KpX#3F^<A%>cNbD{#Z*DL$DbKoKL32Y&qr;{@)cASMqWXo$If<N?@=Rk z<AUz4Ay%H7cCPlhps1>t68-<!=gql}onniB_fd)4M->;lnQ)>%^i&|*m0IYj3N>AK z4zHr|TS?nVPW@-vMc&-9LXSUq`217B%{Pt>p7|-SX~E3=LjI|mrTLt1=6cf7((KTf z3;n7GpI!7&yT6{`zh*+K=bY&>-~jvW)IOTawYMZ!`~89c-Q#&aZxN3$ZZL3Lv*6m> z=7yRtP7kY@>#=7Py8Zsjr)s<6Dj#m>N(hd)<4mZ}ojI<C7DtE0D!&}%vLc<(;B(7H zhN6~la@F=%olA{q2OnDzsO~NFm_f1|x|)QNR^I1|xW1sI#FHC58C<+$VQtrau2AcH zx`#FN%$`wL#_jgkLAik{*GIb=1xK%HlQN^!=h6Ah^Y}bmG=2`tKR#}idi7jzZC1-2 z?)t8!u0|!f<_ho>mlycF#hPoTz2mDGS3g%}vqr8*DxYiQY8K7aLqT|p-G#O)!Cx60 z>q-n3t&Oc*66@+z&tFzl<W^nsnKCta-Gr!~shv8fruVQrrDtYz4nDfBsd~Dkrgyc| zyJdFiw(-ciYTV}6)vaDpYzIr8y570bpLdzteAT~llP|3vTDvnltbRovSAJPLpPl3O z+1?rXzEHc}C;!DeecQhC)k3vje$5r^KW1Gh`_)y|f<GPbaHn4t-1++OV7r66BS!yr zv9}6+a&XvxE_QdB7218|-*K@|J^sx<UhI+8Li;`#{eOL_C%c00f4b_oOWj*Nc+;tN z|GC)z;j;gCT<oF4=fhq9#I62W^?%_;AK(g>|9at{zSV=x7th{4&$X-ie}A*jt9&BN vRq;Px@0FV)T%&gU65)F2f4Sg;Nh`B<jE!`8{{EJKJ^cUg1t0x)7rgaf4+Rf` delta 16199 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 I(wDIR1p~BdY5)KL diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po index 9aaa811ce..1af63d14f 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" "MIME-Version: 1.0\n" @@ -20,21 +20,21 @@ msgstr "" "Language: cy\n" "Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -47,95 +47,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,7 +131,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -151,60 +139,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -212,833 +194,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "Ffig. %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "Tabl %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Listing %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Lefel modiwl" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indecs cyffredinol" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "indecs" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "nesaf" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "blaenorol" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "Dogfennaeth %s %s " -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1052,188 +923,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (yn " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Indecs" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Rhyddhad" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1252,253 +1145,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1506,11 +1393,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1518,25 +1405,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1546,15 +1433,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1565,22 +1452,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1589,36 +1476,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1626,29 +1513,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1656,26 +1543,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1685,214 +1572,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Awdur yr adran:" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Awdur y fodiwl:" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Awdur y cod:" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Awdur:" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Paramedrau" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1921,12 +1808,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "ffwythiant" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "aelod" @@ -1934,7 +1821,7 @@ msgstr "aelod" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "" @@ -1942,297 +1829,262 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Newydd yn fersiwn %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Wedi newid yn fersiwn %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Dibrisiwyd ers fersiwn %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (newidyn byd-eang neu cysonyn)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "modiwl" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "allweddair" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "gweithredydd" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "gwrthrych" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "datganiad" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "ffwythiant built-in" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "" @@ -2241,209 +2093,200 @@ msgstr "" msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Indecs" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Indecs Modiwlau" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Tudalen Chwilio" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "gweler %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "gweler hefyd %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Symbolau" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2455,352 +2298,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[graff: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[graff]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(yn %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[ffynhonnell]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "eitem wreiddiol" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Cod y modiwl" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Cod ffynhonnell ar gyfer %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Trosolwg: cod y modiwl" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Holl fodiwlau lle mae'r cod ar gael</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2808,66 +2680,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2882,106 +2773,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Sylw" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Gofal" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Perygl" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Gwall" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Awgrym" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Pwysig" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Nodyn" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Gweler hefyd" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Awgrym" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Rhybudd" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "wedi'i barhau o'r tudalen blaenorol" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Yn parhau ar y tudalen nesaf" @@ -3000,7 +2891,7 @@ msgstr "Chwilio" msgid "Go" msgstr "Ewch" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Dangos Ffynhonell" @@ -3149,13 +3040,13 @@ msgstr "chwilio" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Canlyniadau chwilio" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3197,36 +3088,36 @@ msgstr "Newidiadau i'r C-API" msgid "Other changes" msgstr "Newidiadau arall" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Permalink i'r pennawd hwn" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Permalink i'r diffiniad hwn" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Cuddio Canlyniadau Chwilio" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Yn chwilio" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Paratoi chwilio..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Chwiliad wedi gorffen, wedi ffeindio %s tudalen(nau) yn cyfateb a'r ymholiad chwilio." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", yn " @@ -3243,76 +3134,89 @@ msgstr "Cyfangu'r bar ochr" msgid "Contents" msgstr "Cynnwys" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3326,140 +3230,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Permalink i'r tabl hwn" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Permalink i'r cod hwn" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Permalink i'r ddelwedd hon" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "Permalink i'r toctree hwn" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Rhyddhad" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Troednodiadau" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[delwedd: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[delwedd]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.js b/sphinx/locale/da/LC_MESSAGES/sphinx.js index 3b164aed2..feebfceac 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "da", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", i", "About these documents": "Om disse dokumenter", "Automatically generated list of changes in version %(version)s": "Automatisk oprettet liste af \u00e6ndringer i version %(version)s", "C API changes": "\u00c6ndringer i C-API", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Sammenfold sidebj\u00e6lke", "Complete Table of Contents": "Fuldst\u00e6ndig indholdsfortegnelse", "Contents": "Indhold", "Copyright": "Ophavsret", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Bygget med <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Udfold sidebj\u00e6lke", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Her fra kan du s\u00f8ge i disse dokumenter. Indtast dine s\u00f8geord\n i boksen nedenfor og klik p\u00e5 \"s\u00f8g\". Bem\u00e6rk at s\u00f8gefunktionen\n automatisk vil s\u00f8ge p\u00e5 alle ordene. Sider, der indeholder\n f\u00e6rre ord, vil ikke indg\u00e5 i resultaterne.", "Full index on one page": "Fuldt indeks p\u00e5 \u00e9n side", "General Index": "Generelt indeks", "Global Module Index": "Globalt modulindeks", "Go": "S\u00f8g", "Hide Search Matches": "Skjul s\u00f8geresultater", "Index": "Indeks", "Index – %(key)s": "Indeks – %(key)s", "Index pages by letter": "Indeks\u00e9r sider efter bogstav", "Indices and tables:": "Indeks og tabeller:", "Last updated on %(last_updated)s.": "Sidst opdateret %(last_updated)s.", "Library changes": "Biblioteks\u00e6ndringer", "Navigation": "Navigation", "Next topic": "N\u00e6ste emne", "Other changes": "Andre \u00e6ndringer", "Overview": "Oversigt", "Permalink to this definition": "Permalink til denne definition", "Permalink to this headline": "Permalink til denne overskrift", "Please activate JavaScript to enable the search\n functionality.": "Aktiv\u00e9r venligst JavaScript for at aktivere\n s\u00f8gefunktionalitet.", "Preparing search...": "Forbereder s\u00f8gning...", "Previous topic": "Forrige emne", "Quick search": "Hurtig s\u00f8gning", "Search": "S\u00f8g", "Search Page": "S\u00f8geside", "Search Results": "S\u00f8geresultater", "Search finished, found %s page(s) matching the search query.": "S\u00f8gning f\u00e6rdig, fandt %s sider der matcher s\u00f8geforesp\u00f8rgslen.", "Search within %(docstitle)s": "S\u00f8g i %(docstitle)s", "Searching": "S\u00f8ger", "Show Source": "Vis kilde", "Table of Contents": "", "This Page": "Denne side", "Welcome! This is": "Velkommen! Dette er", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Din s\u00f8gning matchede ikke nogen dokumenter. Sikr dig at alle ord er stavet korrekt og at du har valgt nok kategorier.", "all functions, classes, terms": "alle funktioner, klasser, begreber", "can be huge": "kan v\u00e6re enormt", "last updated": "sidst opdateret", "lists all sections and subsections": "viser alle afsnit og underafsnit", "next chapter": "n\u00e6ste kapitel", "previous chapter": "forrige kapitel", "quick access to all modules": "hurtig adgang til alle moduler", "search": "s\u00f8g", "search this documentation": "s\u00f8g i denne dokumentation", "the documentation for": "dokumentationen for"}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "da", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", i", "About these documents": "Om disse dokumenter", "Automatically generated list of changes in version %(version)s": "Automatisk oprettet liste af \u00e6ndringer i version %(version)s", "C API changes": "\u00c6ndringer i C-API", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Sammenfold sidebj\u00e6lke", "Complete Table of Contents": "Fuldst\u00e6ndig indholdsfortegnelse", "Contents": "Indhold", "Copyright": "Ophavsret", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Bygget med <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Udfold sidebj\u00e6lke", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Her fra kan du s\u00f8ge i disse dokumenter. Indtast dine s\u00f8geord\n i boksen nedenfor og klik p\u00e5 \"s\u00f8g\". Bem\u00e6rk at s\u00f8gefunktionen\n automatisk vil s\u00f8ge p\u00e5 alle ordene. Sider, der indeholder\n f\u00e6rre ord, vil ikke indg\u00e5 i resultaterne.", "Full index on one page": "Fuldt indeks p\u00e5 \u00e9n side", "General Index": "Generelt indeks", "Global Module Index": "Globalt modulindeks", "Go": "S\u00f8g", "Hide Search Matches": "Skjul s\u00f8geresultater", "Index": "Indeks", "Index – %(key)s": "Indeks – %(key)s", "Index pages by letter": "Indeks\u00e9r sider efter bogstav", "Indices and tables:": "Indeks og tabeller:", "Last updated on %(last_updated)s.": "Sidst opdateret %(last_updated)s.", "Library changes": "Biblioteks\u00e6ndringer", "Navigation": "Navigation", "Next topic": "N\u00e6ste emne", "Other changes": "Andre \u00e6ndringer", "Overview": "Oversigt", "Permalink to this definition": "Permalink til denne definition", "Permalink to this headline": "Permalink til denne overskrift", "Please activate JavaScript to enable the search\n functionality.": "Aktiv\u00e9r venligst JavaScript for at aktivere\n s\u00f8gefunktionalitet.", "Preparing search...": "Forbereder s\u00f8gning...", "Previous topic": "Forrige emne", "Quick search": "Hurtig s\u00f8gning", "Search": "S\u00f8g", "Search Page": "S\u00f8geside", "Search Results": "S\u00f8geresultater", "Search finished, found %s page(s) matching the search query.": "S\u00f8gning f\u00e6rdig, fandt %s sider der matcher s\u00f8geforesp\u00f8rgslen.", "Search within %(docstitle)s": "S\u00f8g i %(docstitle)s", "Searching": "S\u00f8ger", "Show Source": "Vis kilde", "Table of Contents": "", "This Page": "Denne side", "Welcome! This is": "Velkommen! Dette er", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Din s\u00f8gning matchede ikke nogen dokumenter. Sikr dig at alle ord er stavet korrekt og at du har valgt nok kategorier.", "all functions, classes, terms": "alle funktioner, klasser, begreber", "can be huge": "kan v\u00e6re enormt", "last updated": "sidst opdateret", "lists all sections and subsections": "viser alle afsnit og underafsnit", "next chapter": "n\u00e6ste kapitel", "previous chapter": "forrige kapitel", "quick access to all modules": "hurtig adgang til alle moduler", "search": "s\u00f8g", "search this documentation": "s\u00f8g i denne dokumentation", "the documentation for": "dokumentationen for"}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index e1e37b42c4ad1681c7c1c63bea17595753d10e68..f5793a0b2f5fcca54e85efef77515aa3438b4581 100644 GIT binary patch delta 14815 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 BIC200 delta 16289 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 GcK-{ok(ylq diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 2eb3df65a..0d294f459 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -1,17 +1,17 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: # askhl <asklarsen@gmail.com>, 2010-2011 # Jakob Lykke Andersen <jakob@caput.dk>, 2014,2016 -# Joe Hansen <joedalton2@yahoo.dk>, 2016 +# Joe Hansen <joedalton2@yahoo.dk>, 2016,2019 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" "MIME-Version: 1.0\n" @@ -21,122 +21,110 @@ msgstr "" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" +msgstr "konfigurationsmappe indeholder ikke en conf.py-fil (%s)" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" -msgstr "" +msgstr "Kan ikke finde kildemappen (%s)" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" -msgstr "" +msgstr "Kildemappe og destinationsmappe kan ikke være identiske" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" -msgstr "" +msgstr "Kører Sphinx v%s" #: sphinx/application.py:214 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." -msgstr "" +msgstr "Dette projekt kræver mindst Sphinx v%s og kan derfor ikke bygges med denne version." #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " -msgstr "" +msgstr "indlæser oversættelser [%s] ..." -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" -msgstr "" +msgstr "færdig" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" +msgstr "ikke tilgængelig for indbyggede beskeder" + +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " -msgstr "" - -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" -msgstr "" +msgstr "fejlede: %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" -msgstr "" +msgstr "lykkedes" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" -msgstr "" +msgstr "færdig med problemer" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." -msgstr "" +msgstr "kompilering %s, %s advarsel." -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." -msgstr "" +msgstr "kompilering %s." -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,7 +132,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -152,60 +140,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" -msgstr "" +msgstr "Ingen sådan konfigurationsværdi: %s" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" -msgstr "" +msgstr "Konfigurationsværdien %r er allerede til stede" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -213,833 +195,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "figur %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "tabel %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Viser %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "primary_domain %r blev ikke fundet, ignorerer." + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Indbyggede" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Modulniveau" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" -msgstr "" +msgstr "ugyldig css_file: %r, ignoreret" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." -msgstr "" +msgstr "Beskedkatalogerne er i %(outdir)s." -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " -msgstr "" +msgstr "læser skabeloner ..." -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " -msgstr "" +msgstr "skriver beskedkataloger ..." -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." -msgstr "" +msgstr "HTML-siderne er i %(outdir)s." -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d. %b, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Generelt indeks" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "indeks" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "næste" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "forrige" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" -msgstr "" +msgstr "kan ikke kopiere statisk fil %r" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " -msgstr "" +msgstr "kopierer ekstra filer ..." -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " -msgstr "" +msgstr "dumper objektlager ..." -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" -msgstr "" +msgstr "udgyldig js_file: %r, ignoreret" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentation" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1053,188 +924,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." +msgstr "HTML-siden er i %(outdir)s." + +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (i " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Indeks" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Udgave" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1253,253 +1146,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1507,11 +1394,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1519,25 +1406,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1547,15 +1434,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1566,22 +1453,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1590,36 +1477,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1627,29 +1514,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1657,26 +1544,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1686,214 +1573,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Afsnitsforfatter: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Modulforfatter: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Kodeforfatter: " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Forfatter: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametre" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Returnerer" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Returtype" @@ -1922,12 +1809,12 @@ msgstr "%s (C-type)" msgid "%s (C variable)" msgstr "%s (C-variabel)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "funktion" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "medlem" @@ -1935,7 +1822,7 @@ msgstr "medlem" msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "type" @@ -1943,297 +1830,262 @@ msgstr "type" msgid "variable" msgstr "variabel" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Ny i version %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Ændret i version %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Forældet siden version %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "Template-parametre" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Kaster" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++-type)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++-medlem)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++-funktion)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++-klasse)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (C++ optæl)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (C++-optælling)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "optæl" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "optælling" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (indbygget funktion)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (metode i %s)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (klasse)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut i %s)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Parametre" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "metode" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "nøgleord" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "undtagelse" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "erklæring" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "indbygget funktion" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Variable" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Rejser" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modulet %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (indbygget variabel)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (i modulet %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (indbygget klasse)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (metode i %s.%s)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statisk metode i %s.%s)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statisk metode i %s)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (klassemetode i %s.%s)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassemetode i %s)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (attribut i %s.%s)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Python-modulindeks" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Forældet" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (forældet)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (direktiv)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (rolle)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "direktiv" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "rolle" @@ -2242,209 +2094,200 @@ msgstr "rolle" msgid "environment variable; %s" msgstr "miljøvariabel; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%skommandolinjetilvalg; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "begreb i ordliste" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "grammatisk element" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "referenceetiket" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "miljøvariabel" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "programtilvalg" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Indeks" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Modulindeks" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Søgeside" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "se %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "se også %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Symboler" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2456,352 +2299,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[graf: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[graf]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" -msgstr "" +msgstr "Permalink til denne ligning" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(i %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[kilde]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "<<oprindeligt punkt>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "(Det <<oprindelige punkt>> befinder sig i %s, linje %d.)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "oprindeligt punkt" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[dok]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Modulkode" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Kildekode for %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Oversigt: modulkode" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Alle moduler, der er kode tilgængelig for</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2809,66 +2681,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "alias for :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2883,106 +2774,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Vær opmærksom" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Forsigtig" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Fare" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Fejl" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Fif" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Vigtigt" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Bemærk" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Se også" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Advarsel" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "fortsat fra forrige side" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Fortsættes på næste side" @@ -3001,7 +2892,7 @@ msgstr "Søg" msgid "Go" msgstr "Søg" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Vis kilde" @@ -3150,13 +3041,13 @@ msgstr "søg" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Søgeresultater" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3198,36 +3089,36 @@ msgstr "Ændringer i C-API" msgid "Other changes" msgstr "Andre ændringer" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Permalink til denne overskrift" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Permalink til denne definition" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Skjul søgeresultater" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Søger" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Forbereder søgning..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Søgning færdig, fandt %s sider der matcher søgeforespørgslen." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", i" @@ -3244,76 +3135,89 @@ msgstr "Sammenfold sidebjælke" msgid "Contents" msgstr "Indhold" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3327,140 +3231,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Permahenvisning til denne tabel" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Permahenvisning til denne kode" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Permahenvisning til dette billede" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "Permahenvisning til dette toctree" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Udgave" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "side" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Fodnoter" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[billede: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[billede]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.js b/sphinx/locale/de/LC_MESSAGES/sphinx.js index bab2a8343..3234903a2 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "de", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", in ", "About these documents": "\u00dcber dieses Dokument", "Automatically generated list of changes in version %(version)s": "Automatisch generierte Liste der \u00c4nderungen in Version %(version)s", "C API changes": "C API-\u00c4nderungen", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Seitenleiste einklappen", "Complete Table of Contents": "Vollst\u00e4ndiges Inhaltsverzeichnis", "Contents": "Inhalt", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Mit <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s erstellt.", "Expand sidebar": "Seitenleiste ausklappen", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Von hier aus k\u00f6nnen Sie die Dokumentation durchsuchen. Geben Sie Ihre Suchbegriffe in das untenstehende Feld ein und klicken Sie auf \"Suchen\". Bitte beachten Sie, dass die Suchfunktion automatisch nach allen Worten sucht. Seiten, die nicht alle Worte enthalten, erscheinen nicht in der Ergebnisliste.", "Full index on one page": "Gesamtes Stichwortverzeichnis auf einer Seite", "General Index": "Stichwortverzeichnis", "Global Module Index": "Globaler Modulindex", "Go": "Los", "Hide Search Matches": "Suchergebnisse ausblenden", "Index": "Stichwortverzeichnis", "Index – %(key)s": "Stichwortverzeichnis – %(key)s", "Index pages by letter": "Stichwortverzeichnis nach Anfangsbuchstabe", "Indices and tables:": "Verzeichnisse und Tabellen:", "Last updated on %(last_updated)s.": "Zuletzt aktualisiert am %(last_updated)s.", "Library changes": "Bibliotheks-\u00c4nderungen", "Navigation": "Navigation", "Next topic": "N\u00e4chstes Thema", "Other changes": "Andere \u00c4nderungen", "Overview": "\u00dcbersicht", "Permalink to this definition": "Link zu dieser Definition", "Permalink to this headline": "Link zu dieser \u00dcberschrift", "Please activate JavaScript to enable the search\n functionality.": "Bitte aktivieren Sie JavaScript, wenn Sie die Suchfunktion nutzen wollen.", "Preparing search...": "Suche wird vorbereitet...", "Previous topic": "Vorheriges Thema", "Quick search": "Schnellsuche", "Search": "Suche", "Search Page": "Suche", "Search Results": "Suchergebnisse", "Search finished, found %s page(s) matching the search query.": "Die Suche ist fertig, es wurde(n) %s Seite(n) mit Treffern gefunden.", "Search within %(docstitle)s": "Suche in %(docstitle)s", "Searching": "Suchen", "Show Source": "Quellcode anzeigen", "Table of Contents": "", "This Page": "Diese Seite", "Welcome! This is": "Willkommen! Dies ist", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Ihre Suche ergab keine Treffer. Bitte stellen Sie sicher, dass alle W\u00f6rter richtig geschrieben sind und gen\u00fcgend Kategorien ausgew\u00e4hlt sind.", "all functions, classes, terms": "alle Funktionen, Klassen, Begriffe", "can be huge": "kann gro\u00df sein", "last updated": "zuletzt aktualisiert", "lists all sections and subsections": "Liste aller Kapitel und Unterkapitel", "next chapter": "n\u00e4chstes Kapitel", "previous chapter": "vorheriges Kapitel", "quick access to all modules": "schneller Zugriff auf alle Module", "search": "suchen", "search this documentation": "durchsuche diese Dokumentation", "the documentation for": "die Dokumentation f\u00fcr"}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "de", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", in ", "About these documents": "\u00dcber dieses Dokument", "Automatically generated list of changes in version %(version)s": "Automatisch generierte Liste der \u00c4nderungen in Version %(version)s", "C API changes": "C API-\u00c4nderungen", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Seitenleiste einklappen", "Complete Table of Contents": "Vollst\u00e4ndiges Inhaltsverzeichnis", "Contents": "Inhalt", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Mit <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s erstellt.", "Expand sidebar": "Seitenleiste ausklappen", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Von hier aus k\u00f6nnen Sie die Dokumentation durchsuchen. Geben Sie Ihre Suchbegriffe in das untenstehende Feld ein und klicken Sie auf \"Suchen\". Bitte beachten Sie, dass die Suchfunktion automatisch nach allen Worten sucht. Seiten, die nicht alle Worte enthalten, erscheinen nicht in der Ergebnisliste.", "Full index on one page": "Gesamtes Stichwortverzeichnis auf einer Seite", "General Index": "Stichwortverzeichnis", "Global Module Index": "Globaler Modulindex", "Go": "Los", "Hide Search Matches": "Suchergebnisse ausblenden", "Index": "Stichwortverzeichnis", "Index – %(key)s": "Stichwortverzeichnis – %(key)s", "Index pages by letter": "Stichwortverzeichnis nach Anfangsbuchstabe", "Indices and tables:": "Verzeichnisse und Tabellen:", "Last updated on %(last_updated)s.": "Zuletzt aktualisiert am %(last_updated)s.", "Library changes": "Bibliotheks-\u00c4nderungen", "Navigation": "Navigation", "Next topic": "N\u00e4chstes Thema", "Other changes": "Andere \u00c4nderungen", "Overview": "\u00dcbersicht", "Permalink to this definition": "Link zu dieser Definition", "Permalink to this headline": "Link zu dieser \u00dcberschrift", "Please activate JavaScript to enable the search\n functionality.": "Bitte aktivieren Sie JavaScript, wenn Sie die Suchfunktion nutzen wollen.", "Preparing search...": "Suche wird vorbereitet...", "Previous topic": "Vorheriges Thema", "Quick search": "Schnellsuche", "Search": "Suche", "Search Page": "Suche", "Search Results": "Suchergebnisse", "Search finished, found %s page(s) matching the search query.": "Die Suche ist fertig, es wurde(n) %s Seite(n) mit Treffern gefunden.", "Search within %(docstitle)s": "Suche in %(docstitle)s", "Searching": "Suchen", "Show Source": "Quellcode anzeigen", "Table of Contents": "Inhaltsverzeichnis", "This Page": "Diese Seite", "Welcome! This is": "Willkommen! Dies ist", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Ihre Suche ergab keine Treffer. Bitte stellen Sie sicher, dass alle W\u00f6rter richtig geschrieben sind und gen\u00fcgend Kategorien ausgew\u00e4hlt sind.", "all functions, classes, terms": "alle Funktionen, Klassen, Begriffe", "can be huge": "kann gro\u00df sein", "last updated": "zuletzt aktualisiert", "lists all sections and subsections": "Liste aller Kapitel und Unterkapitel", "next chapter": "n\u00e4chstes Kapitel", "previous chapter": "vorheriges Kapitel", "quick access to all modules": "schneller Zugriff auf alle Module", "search": "suchen", "search this documentation": "durchsuche diese Dokumentation", "the documentation for": "die Dokumentation f\u00fcr"}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index a34b51f6a31eee2785ee340ec2cb144c023bc83a..e66c81a9a2c05bab8935d5baf6c89b31964d4a31 100644 GIT binary patch delta 14021 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 Om;d_ekN(ZoZ~Zsi+8*@) delta 16331 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 IAN>IQU&m*iD*ylh diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 6b701fed1..343a993ff 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-09-02 19:33+0000\n" -"Last-Translator: Lukas Prokop <admin@lukas-prokop.at>\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,21 +22,21 @@ msgstr "" "Language: de\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "Konfigurationsverzeichnis enthält keine conf.py Datei (%s)" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Kann Quellverzeichnis nicht finden (%s)" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "Quellverzeichnis und Zielverzeichnis können nicht identisch sein" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "Sphinx v%s in Verwendung" @@ -49,95 +49,83 @@ msgid "" msgstr "Dieses Projekt benötigt Version %s oder später und kann daher nicht gebaut werden." #: sphinx/application.py:234 -msgid "making output directory..." -msgstr "Erstelle Ausgabeverzeichnis…" +msgid "making output directory" +msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "primary_domain %r nicht gefunden, daher ignoriert." - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "Lade Übersetzungen [%s]…" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "erledigt" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "nicht verfügbar für vordefinierte Nachrichten" -#: sphinx/application.py:300 -msgid "loading pickled environment... " -msgstr "Lade pickle Umgebung..." +#: sphinx/application.py:298 +msgid "loading pickled environment" +msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "Fehlgeschlagen: %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "Kein builder ausgewählt, verwende 'html' per default" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "abgeschlossen" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "mit Problemen beendet" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -145,7 +133,7 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenlesen fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -153,60 +141,54 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenschreiben fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "Ungültige Nummer %r for Konfiguration %r, wird ignoriert" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "Keine solche Konfigurationseinstellung: %s" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "Konfigurationswert %r bereits gesetzt" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -214,833 +196,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "Abschnitt %s" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "Abb. %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "Tab. %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Quellcode %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "primary_domain %r nicht gefunden, daher ignoriert." + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "Event %r bereits verfügbar" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "Unbekannter Event name: %s" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "Pygments Lexer Name %r ist unbekannt" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "Ursprüngliche Ausnahme:\n" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Builtins" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Modulebene" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Stichwortverzeichnis" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "Index" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "weiter" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "zurück" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s Dokumentation" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1054,188 +925,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (in " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Stichwortverzeichnis" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Release" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1254,253 +1147,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1508,11 +1395,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1520,25 +1407,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1548,15 +1435,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1567,22 +1454,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1591,36 +1478,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1628,29 +1515,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1658,26 +1545,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1687,214 +1574,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Autor des Abschnitts: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Autor des Moduls: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Autor des Quellcode: " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Autor: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s-%s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parameter" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Rückgabe" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Rückgabetyp" @@ -1923,12 +1810,12 @@ msgstr "%s (C-Typ)" msgid "%s (C variable)" msgstr "%s (C-Variable)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "Funktion" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "Member" @@ -1936,7 +1823,7 @@ msgstr "Member" msgid "macro" msgstr "Makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "Typ" @@ -1944,297 +1831,262 @@ msgstr "Typ" msgid "variable" msgstr "Variable" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Neu in Version %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Geändert in Version %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Veraltet ab Version %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "Template Parameter" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Wirft" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++-Typ)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++-Member)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++-Funktion)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++-Klasse)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (C++-Aufzählung)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (C++-Enumerator)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "Klasse" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "Aufzählung" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "Enumerator" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (Standard-Funktion)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (Methode von %s)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (Klasse)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globale Variable oder Konstante)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (Attribut von %s)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Parameter" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (Modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "Methode" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "Wert" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "Attribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "Modul" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "Schlüsselwort" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "Operator" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "Objekt" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "Exception" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "Anweisung" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "Builtin-Funktion" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Variablen" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Verursacht" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (im Modul %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (Standard-Variable)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (in Modul %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (Builtin-Klasse)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (Klasse in %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (Methode von %s.%s)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statische Methode von %s.%s)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische Methode von %s)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (Klassenmethode von %s.%s)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (Klassenmethode von %s)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (Attribut von %s.%s)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Python-Modulindex" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "Module" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Veraltet" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "Klassenmethode" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "statische Methode" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (veraltet)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (Direktive)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (Rolle)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "Direktive" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "Rolle" @@ -2243,209 +2095,200 @@ msgstr "Rolle" msgid "environment variable; %s" msgstr "Umgebungsvariable; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%sKommandozeilenoption; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "Glossareintrag" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "Grammatik-Token" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "Referenz-Label" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "Umgebungsvariable" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "Programmoption" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Stichwortverzeichnis" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Suche" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "siehe %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "siehe auch %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Sonderzeichen" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2457,352 +2300,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[Diagramm: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[Diagramm]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[Quellcode]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Zu tun" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "<<ursprüngliche Eintrag>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "(Der <<ursprüngliche Eintrag>> steht in %s, Zeile %d.)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "ursprüngliche Eintrag" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[Doku]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Modul-Quellcode" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Quellcode für %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Überblick: Modul-Quellcode" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Alle Module, für die Quellcode verfügbar ist</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2810,66 +2682,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "Alias von :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2884,113 +2775,113 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Achtung" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Vorsicht" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Gefahr" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Fehler" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Hinweis" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Wichtig" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Bemerkung" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Siehe auch" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Tipp" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Warnung" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "Fortsetzung der vorherigen Seite" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Fortsetzung auf der nächsten Seite" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 #: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" -msgstr "" +msgstr "Inhaltsverzeichnis" #: sphinx/themes/agogo/layout.html:51 sphinx/themes/basic/layout.html:153 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 @@ -3002,7 +2893,7 @@ msgstr "Suche" msgid "Go" msgstr "Los" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Quellcode anzeigen" @@ -3151,13 +3042,13 @@ msgstr "suchen" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Suchergebnisse" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3199,36 +3090,36 @@ msgstr "C API-Änderungen" msgid "Other changes" msgstr "Andere Änderungen" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Link zu dieser Überschrift" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Link zu dieser Definition" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Suchergebnisse ausblenden" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Suchen" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Suche wird vorbereitet..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Die Suche ist fertig, es wurde(n) %s Seite(n) mit Treffern gefunden." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", in " @@ -3245,76 +3136,89 @@ msgstr "Seitenleiste einklappen" msgid "Contents" msgstr "Inhalt" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3328,140 +3232,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Link zu dieser Tabelle" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Link zu diesem Quellcode" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Link zu diesem Bild" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "Permanenter Link zu diesem Inhaltsverzeichnis" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Release" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "Fortsetzung auf der nächsten Seite" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "Seite" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Fußnoten" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[Bild: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[Bild]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.js b/sphinx/locale/el/LC_MESSAGES/sphinx.js index 2ad9b2a2a..5aa92f562 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "el", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", \u03c3\u03c4\u03bf ", "About these documents": "\u03a3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03b1\u03c5\u03c4\u03ac \u03c4\u03b1 \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03b1", "Automatically generated list of changes in version %(version)s": "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c0\u03b1\u03c1\u03b1\u03b3\u03cc\u03bc\u03b5\u03bd\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd \u03c3\u03c4\u03b7\u03bd \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 %(version)s", "C API changes": "\u0391\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c3\u03c4\u03bf API \u03c4\u03b7\u03c2 C", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf \u03c0\u03bb\u03b1\u03ca\u03bd\u03ae\u03c2 \u03bc\u03c0\u03ac\u03c1\u03b1\u03c2", "Complete Table of Contents": "\u03a0\u03bb\u03ae\u03c1\u03b7\u03c2 \u03a0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2 \u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd", "Contents": "\u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03b1", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03c4\u03bf <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c0\u03bb\u03b1\u03ca\u03bd\u03ae\u03c2 \u03bc\u03c0\u03ac\u03c1\u03b1\u03c2", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u0391\u03c0\u03cc \u03b5\u03b4\u03ce \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03b6\u03b7\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ac \u03c4\u03b1 \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03b1. \u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03bb\u03ad\u03be\u03b5\u03b9\u03c2\n \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2 \u03c3\u03c4\u03bf \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03c4\u03c9 \u03c0\u03bb\u03b1\u03af\u03c3\u03b9\u03bf \u03ba\u03b1\u03b9 \u03c0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \"\u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\". \u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03c4\u03b5 \u03cc\u03c4\u03b9 \u03b7 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \n \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2 \u03b8\u03b1 \u03b1\u03bd\u03b1\u03b6\u03b7\u03c4\u03ae\u03c3\u03b5\u03b9 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03b3\u03b9\u03b1 \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03bb\u03ad\u03be\u03b5\u03b9\u03c2. \u03a3\u03b5\u03bb\u03af\u03b4\u03b5\u03c2\n \u03c0\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd \u03bb\u03b9\u03b3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03bb\u03ad\u03be\u03b5\u03b9\u03c2 \u03b4\u03b5 \u03b8\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03c3\u03c4\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1 \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03c3\u03bc\u03ac\u03c4\u03c9\u03bd.", "Full index on one page": "\u03a0\u03bb\u03ae\u03c1\u03b5\u03c2 \u03b5\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf \u03c3\u03b5 \u03bc\u03af\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1", "General Index": "\u039a\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03cc \u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf\u03bf", "Global Module Index": "\u039a\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc \u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf \u039c\u03bf\u03bd\u03ac\u03b4\u03c9\u03bd", "Go": "\u03a0\u03ac\u03bc\u03b5", "Hide Search Matches": "\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u0395\u03c5\u03c1\u03b5\u03b8\u03ad\u03bd\u03c4\u03c9\u03bd \u0391\u03bd\u03b1\u03b6\u03b7\u03c4\u03ae\u03c3\u03b5\u03c9\u03bd", "Index": "\u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf", "Index – %(key)s": "\u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf – %(key)s", "Index pages by letter": "\u03a3\u03b5\u03bb\u03af\u03b4\u03b5\u03c2 \u03b5\u03c5\u03c1\u03b5\u03c4\u03b7\u03c1\u03af\u03bf\u03c5 \u03b1\u03bd\u03ac \u03b3\u03c1\u03ac\u03bc\u03bc\u03b1", "Indices and tables:": "\u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03b1 \u03ba\u03b1\u03b9 \u03c0\u03af\u03bd\u03b1\u03ba\u03b5\u03c2:", "Last updated on %(last_updated)s.": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c3\u03c4\u03b9\u03c2 %(last_updated)s.", "Library changes": "\u0391\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2", "Navigation": "\u03a0\u03bb\u03bf\u03ae\u03b3\u03b7\u03c3\u03b7", "Next topic": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf \u03b8\u03ad\u03bc\u03b1", "Other changes": "\u0386\u03bb\u03bb\u03b5\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2", "Overview": "\u0395\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7", "Permalink to this definition": "\u039c\u03cc\u03bd\u03b9\u03bc\u03bf\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc", "Permalink to this headline": "\u039c\u03cc\u03bd\u03b9\u03bc\u03bf\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae\u03bd \u03c4\u03b7\u03bd \u03ba\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1", "Please activate JavaScript to enable the search\n functionality.": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce, \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b7 JavaScript \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03c5\u03bd\u03b1\u03c4\u03ae \u03b7 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1\n \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2.", "Preparing search...": "\u03a0\u03c1\u03bf\u03b5\u03c4\u03bf\u03b9\u03bc\u03b1\u03c3\u03af\u03b1 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2...", "Previous topic": "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03b8\u03ad\u03bc\u03b1", "Quick search": "\u03a3\u03cd\u03bd\u03c4\u03bf\u03bc\u03b7 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", "Search": "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", "Search Page": "\u03a3\u03b5\u03bb\u03af\u03b4\u03b1 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2", "Search Results": "\u0391\u03c0\u03bf\u03c4\u03b5\u03bb\u03ad\u03c3\u03bc\u03b1\u03c4\u03b1 \u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2", "Search finished, found %s page(s) matching the search query.": "\u0397 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5, \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5/\u03b1\u03bd %s \u03c3\u03b5\u03bb\u03af\u03b4\u03b1/\u03b5\u03c2 \u03bc\u03b5 \u03b2\u03ac\u03c3\u03b7 \u03c4\u03bf\u03c5\u03c2 \u03cc\u03c1\u03bf\u03c5\u03c2 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2.", "Search within %(docstitle)s": "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c4\u03bf %(docstitle)s", "Searching": "\u0395\u03ba\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b1\u03b9 \u03b7 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", "Show Source": "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1", "Table of Contents": "", "This Page": "\u0391\u03c5\u03c4\u03ae \u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1", "Welcome! This is": "\u039a\u03b1\u03bb\u03c9\u03c3\u03ae\u03c1\u03b8\u03b1\u03c4\u03b5! \u0391\u03c5\u03c4\u03ae \u03b5\u03af\u03bd\u03b1\u03b9", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u0397 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03ae \u03c3\u03b1\u03c2 \u03b4\u03b5\u03bd \u03c4\u03b1\u03c5\u03c4\u03bf\u03c0\u03bf\u03b9\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03ba\u03b1\u03bd\u03ad\u03bd\u03b1 \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce, \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03b9\u03ce\u03c3\u03c4\u03b5 \u03cc\u03c4\u03b9 \u03cc\u03bb\u03b5\u03c2 \u03bf\u03b9 \u03bb\u03ad\u03be\u03b5\u03b9\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b7 \u03c3\u03c9\u03c3\u03c4\u03ae \u03bf\u03c1\u03b8\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b1 \u03ba\u03b1\u03b9 \u03cc\u03c4\u03b9 \u03ad\u03c7\u03b5\u03c4\u03b5 \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03b5\u03b9\u03c2 \u03b1\u03c1\u03ba\u03b5\u03c4\u03ad\u03c2 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b5\u03c2.", "all functions, classes, terms": "\u03cc\u03bb\u03b5\u03c2 \u03bf\u03b9 \u03c3\u03c5\u03bd\u03b1\u03c1\u03c4\u03ae\u03c3\u03b5\u03b9\u03c2, \u03ba\u03bb\u03ac\u03c3\u03b5\u03b9\u03c2, \u03cc\u03c1\u03bf\u03b9", "can be huge": "\u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03b5\u03c1\u03ac\u03c3\u03c4\u03b9\u03bf", "last updated": "\u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7", "lists all sections and subsections": "\u03b1\u03c0\u03b1\u03c1\u03b9\u03b8\u03bc\u03b5\u03af \u03cc\u03bb\u03b1 \u03c4\u03b1 \u03ba\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03b1 \u03ba\u03b1\u03b9 \u03c5\u03c0\u03bf\u03ba\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03b1", "next chapter": "\u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf \u03ba\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03bf", "previous chapter": "\u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03ba\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03bf", "quick access to all modules": "\u03b3\u03c1\u03ae\u03b3\u03bf\u03c1\u03b7 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03b5 \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03bc\u03bf\u03bd\u03ac\u03b4\u03b5\u03c2", "search": "\u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", "search this documentation": "\u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03c4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7\u03c2", "the documentation for": "\u03b7 \u03c4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5"}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "el", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", \u03c3\u03c4\u03bf ", "About these documents": "\u03a3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03b1\u03c5\u03c4\u03ac \u03c4\u03b1 \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03b1", "Automatically generated list of changes in version %(version)s": "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c0\u03b1\u03c1\u03b1\u03b3\u03cc\u03bc\u03b5\u03bd\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd \u03c3\u03c4\u03b7\u03bd \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 %(version)s", "C API changes": "\u0391\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c3\u03c4\u03bf API \u03c4\u03b7\u03c2 C", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf \u03c0\u03bb\u03b1\u03ca\u03bd\u03ae\u03c2 \u03bc\u03c0\u03ac\u03c1\u03b1\u03c2", "Complete Table of Contents": "\u03a0\u03bb\u03ae\u03c1\u03b7\u03c2 \u03a0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2 \u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd", "Contents": "\u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03b1", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03c4\u03bf <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c0\u03bb\u03b1\u03ca\u03bd\u03ae\u03c2 \u03bc\u03c0\u03ac\u03c1\u03b1\u03c2", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u0391\u03c0\u03cc \u03b5\u03b4\u03ce \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03b6\u03b7\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ac \u03c4\u03b1 \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03b1. \u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03bb\u03ad\u03be\u03b5\u03b9\u03c2\n \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2 \u03c3\u03c4\u03bf \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03c4\u03c9 \u03c0\u03bb\u03b1\u03af\u03c3\u03b9\u03bf \u03ba\u03b1\u03b9 \u03c0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \"\u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\". \u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03c4\u03b5 \u03cc\u03c4\u03b9 \u03b7 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \n \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2 \u03b8\u03b1 \u03b1\u03bd\u03b1\u03b6\u03b7\u03c4\u03ae\u03c3\u03b5\u03b9 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03b3\u03b9\u03b1 \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03bb\u03ad\u03be\u03b5\u03b9\u03c2. \u03a3\u03b5\u03bb\u03af\u03b4\u03b5\u03c2\n \u03c0\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd \u03bb\u03b9\u03b3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03bb\u03ad\u03be\u03b5\u03b9\u03c2 \u03b4\u03b5 \u03b8\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03c3\u03c4\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1 \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03c3\u03bc\u03ac\u03c4\u03c9\u03bd.", "Full index on one page": "\u03a0\u03bb\u03ae\u03c1\u03b5\u03c2 \u03b5\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf \u03c3\u03b5 \u03bc\u03af\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1", "General Index": "\u039a\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03cc \u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf\u03bf", "Global Module Index": "\u039a\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc \u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf \u039c\u03bf\u03bd\u03ac\u03b4\u03c9\u03bd", "Go": "\u03a0\u03ac\u03bc\u03b5", "Hide Search Matches": "\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u0395\u03c5\u03c1\u03b5\u03b8\u03ad\u03bd\u03c4\u03c9\u03bd \u0391\u03bd\u03b1\u03b6\u03b7\u03c4\u03ae\u03c3\u03b5\u03c9\u03bd", "Index": "\u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf", "Index – %(key)s": "\u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf – %(key)s", "Index pages by letter": "\u03a3\u03b5\u03bb\u03af\u03b4\u03b5\u03c2 \u03b5\u03c5\u03c1\u03b5\u03c4\u03b7\u03c1\u03af\u03bf\u03c5 \u03b1\u03bd\u03ac \u03b3\u03c1\u03ac\u03bc\u03bc\u03b1", "Indices and tables:": "\u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03b1 \u03ba\u03b1\u03b9 \u03c0\u03af\u03bd\u03b1\u03ba\u03b5\u03c2:", "Last updated on %(last_updated)s.": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c3\u03c4\u03b9\u03c2 %(last_updated)s.", "Library changes": "\u0391\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2", "Navigation": "\u03a0\u03bb\u03bf\u03ae\u03b3\u03b7\u03c3\u03b7", "Next topic": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf \u03b8\u03ad\u03bc\u03b1", "Other changes": "\u0386\u03bb\u03bb\u03b5\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2", "Overview": "\u0395\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7", "Permalink to this definition": "\u039c\u03cc\u03bd\u03b9\u03bc\u03bf\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc", "Permalink to this headline": "\u039c\u03cc\u03bd\u03b9\u03bc\u03bf\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae\u03bd \u03c4\u03b7\u03bd \u03ba\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1", "Please activate JavaScript to enable the search\n functionality.": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce, \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b7 JavaScript \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03c5\u03bd\u03b1\u03c4\u03ae \u03b7 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1\n \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2.", "Preparing search...": "\u03a0\u03c1\u03bf\u03b5\u03c4\u03bf\u03b9\u03bc\u03b1\u03c3\u03af\u03b1 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2...", "Previous topic": "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03b8\u03ad\u03bc\u03b1", "Quick search": "\u03a3\u03cd\u03bd\u03c4\u03bf\u03bc\u03b7 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", "Search": "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", "Search Page": "\u03a3\u03b5\u03bb\u03af\u03b4\u03b1 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2", "Search Results": "\u0391\u03c0\u03bf\u03c4\u03b5\u03bb\u03ad\u03c3\u03bc\u03b1\u03c4\u03b1 \u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2", "Search finished, found %s page(s) matching the search query.": "\u0397 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5, \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5/\u03b1\u03bd %s \u03c3\u03b5\u03bb\u03af\u03b4\u03b1/\u03b5\u03c2 \u03bc\u03b5 \u03b2\u03ac\u03c3\u03b7 \u03c4\u03bf\u03c5\u03c2 \u03cc\u03c1\u03bf\u03c5\u03c2 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2.", "Search within %(docstitle)s": "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c4\u03bf %(docstitle)s", "Searching": "\u0395\u03ba\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b1\u03b9 \u03b7 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", "Show Source": "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1", "Table of Contents": "", "This Page": "\u0391\u03c5\u03c4\u03ae \u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1", "Welcome! This is": "\u039a\u03b1\u03bb\u03c9\u03c3\u03ae\u03c1\u03b8\u03b1\u03c4\u03b5! \u0391\u03c5\u03c4\u03ae \u03b5\u03af\u03bd\u03b1\u03b9", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u0397 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03ae \u03c3\u03b1\u03c2 \u03b4\u03b5\u03bd \u03c4\u03b1\u03c5\u03c4\u03bf\u03c0\u03bf\u03b9\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03ba\u03b1\u03bd\u03ad\u03bd\u03b1 \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce, \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03b9\u03ce\u03c3\u03c4\u03b5 \u03cc\u03c4\u03b9 \u03cc\u03bb\u03b5\u03c2 \u03bf\u03b9 \u03bb\u03ad\u03be\u03b5\u03b9\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b7 \u03c3\u03c9\u03c3\u03c4\u03ae \u03bf\u03c1\u03b8\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b1 \u03ba\u03b1\u03b9 \u03cc\u03c4\u03b9 \u03ad\u03c7\u03b5\u03c4\u03b5 \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03b5\u03b9\u03c2 \u03b1\u03c1\u03ba\u03b5\u03c4\u03ad\u03c2 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b5\u03c2.", "all functions, classes, terms": "\u03cc\u03bb\u03b5\u03c2 \u03bf\u03b9 \u03c3\u03c5\u03bd\u03b1\u03c1\u03c4\u03ae\u03c3\u03b5\u03b9\u03c2, \u03ba\u03bb\u03ac\u03c3\u03b5\u03b9\u03c2, \u03cc\u03c1\u03bf\u03b9", "can be huge": "\u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03b5\u03c1\u03ac\u03c3\u03c4\u03b9\u03bf", "last updated": "\u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7", "lists all sections and subsections": "\u03b1\u03c0\u03b1\u03c1\u03b9\u03b8\u03bc\u03b5\u03af \u03cc\u03bb\u03b1 \u03c4\u03b1 \u03ba\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03b1 \u03ba\u03b1\u03b9 \u03c5\u03c0\u03bf\u03ba\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03b1", "next chapter": "\u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf \u03ba\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03bf", "previous chapter": "\u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03ba\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03bf", "quick access to all modules": "\u03b3\u03c1\u03ae\u03b3\u03bf\u03c1\u03b7 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03b5 \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03bc\u03bf\u03bd\u03ac\u03b4\u03b5\u03c2", "search": "\u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", "search this documentation": "\u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03c4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7\u03c2", "the documentation for": "\u03b7 \u03c4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5"}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index 39bb664f0e43ef6dd85527b9f1a07a8c7f9652dc..46face3ca4a8d175af5eb5944ecab62ae608aa6d 100644 GIT binary patch delta 13971 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 delta 16252 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 Nzj!}e@Zb7=_HRi)R$Tx9 diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 2f0ec8bc1..6275eb494 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" "MIME-Version: 1.0\n" @@ -19,21 +19,21 @@ msgstr "" "Language: el\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -46,95 +46,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -150,60 +138,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -211,833 +193,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "Σχήμα %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "Πίνακας %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Λίστα %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Ενσωματωμένες λειτουργίες" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Επίπεδο μονάδας λειτουργίας" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d de %B de %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Κεντρικό Ευρετήριοο" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "ευρετήριο" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "επόμενο" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "προηγούμενο" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "Τεκμηρίωση του %s - %s" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1051,188 +922,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (σε " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Ευρετήριο" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Δημοσίευση" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1251,253 +1144,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1505,11 +1392,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1517,25 +1404,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1545,15 +1432,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1564,22 +1451,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1588,36 +1475,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1625,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1655,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1684,214 +1571,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Συντάκτης τμήματος: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Συντάκτης μονάδας: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Συντάκτης κώδικα: " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Συντάκτης: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Παράμετροι" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Επιστρέφει" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Επιστρεφόμενος τύπος" @@ -1920,12 +1807,12 @@ msgstr "%s (τύπος C)" msgid "%s (C variable)" msgstr "%s (μεταβλητή C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "συνάρτηση" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "μέλος" @@ -1933,7 +1820,7 @@ msgstr "μέλος" msgid "macro" msgstr "μακροεντολή" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "τύπος" @@ -1941,297 +1828,262 @@ msgstr "τύπος" msgid "variable" msgstr "μεταβλητή" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Νέο στην έκδοση %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Άλλαξε στην έκδοση %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Αποσύρθηκε στην έκδοση %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Προκαλεί" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (τύπος C++)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (μέλος C++)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (συνάρτηση C++)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (κλάση C++)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (enum της C++)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (enumarator της C++)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "κλάση" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (ενσωματωμένη συνάρτηση)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (μέθοδος της %s)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (κλάση)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (καθολική μεταβλητή ή σταθερά)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (ιδιότητα της %s)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Παράμετροι" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (μονάδα)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "μέθοδος" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "δεδομένα" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "ιδιότητα" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "μονάδα" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "λέξη κλειδί" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "τελεστής" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "αντικείμενο" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "εξαίρεση" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "δήλωση" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "ενσωματωμένη συνάρτηση" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Μεταβλητές" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Προκαλεί" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (στη μονάδα %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (ενσωματωμένη μεταβλητή)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (στη μονάδα %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (ενσωματωμένη κλάση)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (κλάση σε %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (μέθοδος %s.%s)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (στατική μέθοδος %s.%s)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (στατική μέθοδος της %s)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (μέθοδος κλάσης %s.%s)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (μέθοδος κλάσης της %s)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (ιδιότητα της %s.%s)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Ευρετήριο Μονάδων της Python" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "μονάδες" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Αποσύρθηκε" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "μέθοδος της κλάσης" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "στατική μέθοδος" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (αποσύρθηκε)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (οδηγία)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (ρόλος)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "οδηγία" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "ρόλος" @@ -2240,209 +2092,200 @@ msgstr "ρόλος" msgid "environment variable; %s" msgstr "μεταβλητή περιβάλλοντος; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%sπαράμετρος γραμμής εντολών; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "γλωσσάρι" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "γραμματική ένδειξη" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "ετικέτα αναφοράς" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "μεταβλητή περιβάλλοντος" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "επιλογή προγράμματος" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Ευρετήριο" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Ευρετήριο μονάδων" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Σελίδα αναζήτησης" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "δείτε %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "δείτε επίσης %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Σύμβολα" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2454,352 +2297,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[γράφημα: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[γράφημα]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(στη %s έκδοση %s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[πηγή]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Εκκρεμότητα" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "αρχική εγγραφή" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[τεκμηρίωση]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Κώδικας μονάδας" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Πηγαίος κώδικας για το %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Επισκόπηση: κώδικας της μονάδας" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Όλες οι μονάδες για τις οποίες υπάρχει διαθέσιμος κώδικας</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2807,66 +2679,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "ψευδώνυμο της :κλάσης:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2881,106 +2772,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Προσοχή" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Προσοχή" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Κίνδυνος" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Σφάλμα" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Συμβουλή" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Σημαντικό" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Σημείωση" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Δείτε επίσης" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Πρακτική συμβουλή" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Προειδοποίηση" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "συνεχίζεται από την προηγούμενη σελίδα" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Συνεχίζεται στην επόμενη σελίδα" @@ -2999,7 +2890,7 @@ msgstr "Αναζήτηση" msgid "Go" msgstr "Πάμε" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Προβολή κώδικα" @@ -3148,13 +3039,13 @@ msgstr "αναζήτηση" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Αποτελέσματα Αναζήτησης" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3196,36 +3087,36 @@ msgstr "Αλλαγές στο API της C" msgid "Other changes" msgstr "Άλλες αλλαγές" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Μόνιμος σύνδεσμος σε αυτήν την κεφαλίδα" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Μόνιμος σύνδεσμος σε αυτόν τον ορισμό" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Απόκρυψη Ευρεθέντων Αναζητήσεων" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Εκτελείται η αναζήτηση" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Προετοιμασία αναζήτησης..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Η αναζήτηση ολοκληρώθηκε, βρέθηκε/αν %s σελίδα/ες με βάση τους όρους αναζήτησης." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", στο " @@ -3242,76 +3133,89 @@ msgstr "Κλείσιμο πλαϊνής μπάρας" msgid "Contents" msgstr "Περιεχόμενα" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3325,140 +3229,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Απευθείας σύνδεσμος σε αυτόν τον πίνακα" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Απευθείας σύνδεσμος σε αυτόν τον κώδικα" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Απευθείας σύνδεσμος σε αυτήν την εικόνα" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "Απευθείας σύνδεσμος σε αυτόν τον πίνακα περιεχομένων" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Δημοσίευση" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Σημειώσεις υποσέλιδου" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[εικόνα: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[εικόνα]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.js b/sphinx/locale/eo/LC_MESSAGES/sphinx.js index 5493e28b8..826708645 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "eo", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(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": "A\u016dtora rajto", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "Full index on one page": "", "General Index": "Indico universala", "Global Module Index": "Universala modjulindico", "Go": "", "Hide Search Matches": "", "Index": "", "Index – %(key)s": "Indico – %(key)s", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", "Library changes": "", "Navigation": "", "Next topic": "Sekva temo", "Other changes": "", "Overview": "", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "Anta\u016da temo", "Quick search": "", "Search": "", "Search Page": "", "Search Results": "", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "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": "sekvo \u0109apitro", "previous chapter": "anta\u016da \u0109apitro", "quick access to all modules": "", "search": "ser\u0109u", "search this documentation": "", "the documentation for": ""}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "eo", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(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": "A\u016dtora rajto", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "Full index on one page": "", "General Index": "Indico universala", "Global Module Index": "Universala modjulindico", "Go": "", "Hide Search Matches": "", "Index": "", "Index – %(key)s": "Indico – %(key)s", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", "Library changes": "", "Navigation": "", "Next topic": "Sekva temo", "Other changes": "", "Overview": "", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "Anta\u016da temo", "Quick search": "", "Search": "", "Search Page": "", "Search Results": "", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "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": "sekvo \u0109apitro", "previous chapter": "anta\u016da \u0109apitro", "quick access to all modules": "", "search": "ser\u0109u", "search this documentation": "", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index bcc58ad7c08630906777740f5f552df2c315174f..5425f46dfbda1a2eb92f3b6515f223956236a996 100644 GIT binary patch delta 13927 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 QZtlhZ@~s{Dcel3n9~Woop8x;= delta 16128 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 diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index e8674c527..4253bd410 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" "MIME-Version: 1.0\n" @@ -19,21 +19,21 @@ msgstr "" "Language: eo\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -46,95 +46,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -150,60 +138,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -211,833 +193,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indico universala" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "indico" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "sekva" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "antaŭa" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentaro" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1051,188 +922,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1251,253 +1144,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1505,11 +1392,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1517,25 +1404,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1545,15 +1432,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1564,22 +1451,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1588,36 +1475,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1625,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1655,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1684,214 +1571,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Aŭtoro:" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametroj" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1920,12 +1807,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "funkcio" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "membro" @@ -1933,7 +1820,7 @@ msgstr "membro" msgid "macro" msgstr "nomaĵo" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "tipo" @@ -1941,297 +1828,262 @@ msgstr "tipo" msgid "variable" msgstr "" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "klaso" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (klaso)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "datenoj" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "escepto" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "" @@ -2240,209 +2092,200 @@ msgstr "" msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "vidu %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "vidu ankaŭ %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Simboloj" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2454,352 +2297,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2807,66 +2679,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2881,106 +2772,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Eraro" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "" @@ -2999,7 +2890,7 @@ msgstr "" msgid "Go" msgstr "" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "" @@ -3148,13 +3039,13 @@ msgstr "serĉu" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3196,36 +3087,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3242,76 +3133,89 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3325,140 +3229,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.js b/sphinx/locale/es/LC_MESSAGES/sphinx.js index 6d00c8a69..3f7d051ea 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "es", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Derechos de autor</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Derechos de autor %(copyright)s.", ", in ": ", en ", "About these documents": "Sobre este documento", "Automatically generated list of changes in version %(version)s": "Lista de cambios generada autom\u00e1ticamente en la versi\u00f3n %(version)s", "C API changes": "Cambios en la API C", "Changes in Version %(version)s — %(docstitle)s": "Cambios en la versi\u00f3n %(version)s — %(docstitle)s", "Collapse sidebar": "Contraer barra lateral", "Complete Table of Contents": "\u00cdndice de contenidos completo", "Contents": "Contenidos", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Creado con <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Expandir barra lateral", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Este es el di\u00e1logo de b\u00fasqueda. Introduce los t\u00e9rminos en el\n di\u00e1logo siguiente y pulsa \"buscar\". Note que el asistente buscar\u00e1 \n autom\u00e1ticamente todas las palabras. Las p\u00e1ginas que contengan \n menos palabras no aparecer\u00e1n en la lista de resultados.", "Full index on one page": "\u00cdndice completo en una p\u00e1gina", "General Index": "\u00cdndice General", "Global Module Index": "\u00cdndice Global de M\u00f3dulos", "Go": "Ir a", "Hide Search Matches": "Ocultar coincidencias de la b\u00fasqueda", "Index": "\u00cdndice", "Index – %(key)s": "\u00cdndice – %(key)s", "Index pages by letter": "\u00cdndice alfab\u00e9tico de p\u00e1ginas", "Indices and tables:": "\u00cdndices y tablas:", "Last updated on %(last_updated)s.": "Actualizado por \u00faltima vez en %(last_updated)s.", "Library changes": "Cambios en la biblioteca", "Navigation": "Navegaci\u00f3n", "Next topic": "Pr\u00f3ximo tema", "Other changes": "Otros cambios", "Overview": "Resumen", "Permalink to this definition": "Enlazar permanentemente con esta definici\u00f3n", "Permalink to this headline": "Enlazar permanentemente con este t\u00edtulo", "Please activate JavaScript to enable the search\n functionality.": "Por favor, active JavaScript para habilitar la funcionalidad\n de b\u00fasqueda.", "Preparing search...": "Preparando b\u00fasqueda...", "Previous topic": "Tema anterior", "Quick search": "B\u00fasqueda r\u00e1pida", "Search": "B\u00fasqueda", "Search Page": "P\u00e1gina de B\u00fasqueda", "Search Results": "Resultados de la b\u00fasqueda", "Search finished, found %s page(s) matching the search query.": "B\u00fasqueda finalizada, encontr\u00f3 %s p\u00e1gina(s) acorde con la consulta de b\u00fasqueda.", "Search within %(docstitle)s": "Buscar en %(docstitle)s", "Searching": "Buscando", "Show Source": "Mostrar el c\u00f3digo", "Table of Contents": "", "This Page": "Esta p\u00e1gina", "Welcome! This is": "\u00a1Bienvenido! Este es", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Su b\u00fasqueda no coincide con ning\u00fan documentos. Por favor, aseg\u00farese de que todas las palabras est\u00e9n correctamente escritas y que usted all\u00e1 seleccionado las suficientes categor\u00edas.", "all functions, classes, terms": "todas las funciones, clases, t\u00e9rminos", "can be huge": "puede ser muy grande", "last updated": "actualizado por \u00faltima vez el", "lists all sections and subsections": "muestra todas las secciones y subsecciones", "next chapter": "pr\u00f3ximo cap\u00edtulo", "previous chapter": "cap\u00edtulo anterior", "quick access to all modules": "acceso r\u00e1pido a todos los m\u00f3dulos", "search": "buscar", "search this documentation": "buscar en esta documentaci\u00f3n", "the documentation for": "la documentaci\u00f3n para"}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "es", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Derechos de autor</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Derechos de autor %(copyright)s.", ", in ": ", en ", "About these documents": "Sobre este documento", "Automatically generated list of changes in version %(version)s": "Lista de cambios generada autom\u00e1ticamente en la versi\u00f3n %(version)s", "C API changes": "Cambios en la API C", "Changes in Version %(version)s — %(docstitle)s": "Cambios en la versi\u00f3n %(version)s — %(docstitle)s", "Collapse sidebar": "Contraer barra lateral", "Complete Table of Contents": "\u00cdndice de contenidos completo", "Contents": "Contenidos", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Creado con <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Expandir barra lateral", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Este es el di\u00e1logo de b\u00fasqueda. Introduce los t\u00e9rminos en el\n di\u00e1logo siguiente y pulsa \"buscar\". Note que el asistente buscar\u00e1 \n autom\u00e1ticamente todas las palabras. Las p\u00e1ginas que contengan \n menos palabras no aparecer\u00e1n en la lista de resultados.", "Full index on one page": "\u00cdndice completo en una p\u00e1gina", "General Index": "\u00cdndice General", "Global Module Index": "\u00cdndice Global de M\u00f3dulos", "Go": "Ir a", "Hide Search Matches": "Ocultar coincidencias de la b\u00fasqueda", "Index": "\u00cdndice", "Index – %(key)s": "\u00cdndice – %(key)s", "Index pages by letter": "\u00cdndice alfab\u00e9tico de p\u00e1ginas", "Indices and tables:": "\u00cdndices y tablas:", "Last updated on %(last_updated)s.": "Actualizado por \u00faltima vez en %(last_updated)s.", "Library changes": "Cambios en la biblioteca", "Navigation": "Navegaci\u00f3n", "Next topic": "Pr\u00f3ximo tema", "Other changes": "Otros cambios", "Overview": "Resumen", "Permalink to this definition": "Enlazar permanentemente con esta definici\u00f3n", "Permalink to this headline": "Enlazar permanentemente con este t\u00edtulo", "Please activate JavaScript to enable the search\n functionality.": "Por favor, active JavaScript para habilitar la funcionalidad\n de b\u00fasqueda.", "Preparing search...": "Preparando b\u00fasqueda...", "Previous topic": "Tema anterior", "Quick search": "B\u00fasqueda r\u00e1pida", "Search": "B\u00fasqueda", "Search Page": "P\u00e1gina de B\u00fasqueda", "Search Results": "Resultados de la b\u00fasqueda", "Search finished, found %s page(s) matching the search query.": "B\u00fasqueda finalizada, encontr\u00f3 %s p\u00e1gina(s) acorde con la consulta de b\u00fasqueda.", "Search within %(docstitle)s": "Buscar en %(docstitle)s", "Searching": "Buscando", "Show Source": "Mostrar el c\u00f3digo", "Table of Contents": "Tabla de contenido", "This Page": "Esta p\u00e1gina", "Welcome! This is": "\u00a1Bienvenido! Este es", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Su b\u00fasqueda no coincide con ning\u00fan documentos. Por favor, aseg\u00farese de que todas las palabras est\u00e9n correctamente escritas y que usted all\u00e1 seleccionado las suficientes categor\u00edas.", "all functions, classes, terms": "todas las funciones, clases, t\u00e9rminos", "can be huge": "puede ser muy grande", "last updated": "actualizado por \u00faltima vez el", "lists all sections and subsections": "muestra todas las secciones y subsecciones", "next chapter": "pr\u00f3ximo cap\u00edtulo", "previous chapter": "cap\u00edtulo anterior", "quick access to all modules": "acceso r\u00e1pido a todos los m\u00f3dulos", "search": "buscar", "search this documentation": "buscar en esta documentaci\u00f3n", "the documentation for": "la documentaci\u00f3n para"}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index d3b66088563bdfd4a7666865d8e966f4278c1df2..d4549e48625f9b7ff67fde6d730c3f8639904731 100644 GIT binary patch delta 20691 zcmc)Q2bdI9-tX}$k}%{nWGKL41{sE&W<;`}L}8GO^h`HQLr?eEVPFXM>aOmZL#ZPw z3b?PX0atAlVMTG#HLW>dT3yqMY0-7ff&2Z{sR^LI?|biipL>0TPo3)OQz!h-sZ*!9 zWp|@z|JW$~M!QB=Sp2u6fn{~a-*i-}?!S+Zv#hH~euBAp&H(<{mUTN`!godt<TK9y zWsqfc=KRjVmh}<oCx=+p6w<qgT2?1KJj}AzbH39E%ZlS=7_qFh)p#T)IT6P}TzDRy zOM1^J%Q_h+kG8DG@nT$zi^o_N_qOiFmiQJn#zROMtuJsaI)#=+7S?i{hF9V^d=vX% zuOiE8#{I2{95m&`49vm#sEjtCGQJVp<89a$_hAQo4qM~<*aE*o6{ykimem~Fp+4{F zrwdT|6k;~c!ZzIB3USa1E78HTQ8&5~mC?P}3?K48e+uW3K7<o+64h0PXZv1@ZAfQO zE&C95!Pij*_!7Hf)(NzKXAW{WPz_E%T`(Q#R_ip>7cWG5#kvW5;TzZuf5c<4EA6@) z$Kf#i237EZ<1OnL9D^%x0;)x~BjI8FVLa`xgI75*6<bi9c36zWk+lkSqpPq4ccS96 z(?nCCfv9v49bAuUscU@y1J$yBM0N4~NSUoi{Lh<AN?TSQC)!Lhj=`R!OOQ%fXQICN zAgXU4$KLod5|7rmsF)cx+0=9qsz3o8j%(4u+fd(s64f=Yp}OGXGzYynIA)5uQ7)=4 z2cv2-6?5<u-?i9-^cEzLtv{in{7cmL3Qjc9Jq2fyE<?rAJ=g>v#VmXp)w1bV{ev%& z*0tKv4<}(UuE6V1QG6I1W9w-QN$iOHZ!PAp>39PwmJZ=D*py6~VjE<rTU}7GH5=6> zrAWcjR-6Mh<!?~2uowH_A>Vc<TUKAvBTyMHLUlm^)dIgpwc!2e;2YQs52J3}Or^8w zPE-qxpJBRU0k+rp4{^|d52}#vv^IJlFwU_N=@+m7UqSV0Q`%KG7>hbT71c78sJ`Fm zdl{;w{(!3aC%*P9%UVLZBlh6_*6BLHi&1^G0~g@~sG4?}ZMvWcnN6+fn1yGc3VbfA z1)jtxeu9L9wRDad*4wc)=|7@|<pcitConyb6EAa+hfPi~84p4gq|i^#Kz+Ud)yKa= zwajK*jMt%B;2X@x!>AcDf3Au43D}bKT-5hhpkkwHF72--JBt&l(N(BEx&gc69@H>7 z;QKGsjMj3VF$Xn4jm3Vr02$iW85qU~aVQQbHbK1{)rEgRwb<W^X@4F3zzJpCW4>_& zwkJIkTVVh@Vg<IrbFc+gqnh^j*baC4=|@mOdjOBc?@;+Ur<(5#$0npFq&ZNA(@-t2 z2o>c)R9{8>^g2{Qe}%fyR#XNV?0|bv*FTLa@N3B9!TJz2&T|)-pq+%e&rH;P(+fFJ zUxaZ0#!(qvhcUbbHDz{PXl}d+RkH}T#Y?afx1$Q)g~(NbdZY3kiMnnass&C#{<lK> zMeL-l2RJy66J1FS!znljt589AGZx@;NSs<WW2XY=qFQ7>YLvW#nl~CRHBFv}4(XW~ z!YGo3^#abqLCcurH2%-vU^*wB#~kdn++;ij$<qp<YWyJP;(LC&<!L581XX}VI2JeH zDBO*jCqBb#@H-4*^$G$NzsJfn2gL!?mrr0r($ArW*GuT&Yd8YGN43z<5;ICxVmH#8 zP&MC-D!_fHntqEa!2D9vHK(D5=_=GPEyuKi;A#%~<E_{cUql7hM|d9o3-yIf6kj*I z1@-w~P_gnPs_$R%({K6dPf#)N1**w^#Pe|`{V`70hiHFIKwVavaXJ+hJnOLsUW|(N z9jJot!!h_QcE#qaObz>?hT~vV(~d<I_zKkc|1;7U))zPx7nYg(Y%QbxRpYxkp{9BQ z6$3Bg3j7XLkfmX>E?AG6$u^_L{Y}2RP*MH}szqMGe)t|9i!D~0iE0Qczv-w7gwq_T z#=pT{xEUwlZd4zBhiaiy*O&tQ2D_8K0rkCo*c)HO(fAdrj|WFgi;To$NKZlq<#Zg0 zzs4d=@8RGi4!-nHj4wBj)r~lf^Se+@t|yC{t`OCvXZhZZtw<ll;rJD1V?L9I3OWfV z;tJIFZon@1lKDJseaeBFq$Pv8GY-I>I2k)(DJljw`00yK*WHMD_yCT@gV+Z9oo>2j z6b>dm6&v9?)QvacAgso&8vl=Qa2zMzM)g_CxQT_~sG6UED&RVF@JdwE??QFWUr`19 z7FF|h3A2#tkIHumD#p&irg$x?VE=*rxWDxh2W{~OR1CCEnwky5)}$ArnzGFIY*dhL zM@EwMC~m`ol<9(JP&IDMysYnM;Uesc>hmNP;2oG&Q@_c9Ztx?j0NvJ_XF(CFiC5up zyaaXq!`L3*Ma>6aBh$atVV!wpD@PUJUQ|K%VivxG9q^yn85>s7{sTDZUS;}b8ma&# z*bL9Y(RcyQ#D|f}S?$-G7CRT)k-i3-;O(e_-Hl!GG3<ozqDIyCsDhlZ!Bpg=4YdDA zPLy#%qu_efg&&|Y7_iaw)rpu*dM#=cT!gdmB~+j0Y%)z<fNI(kP<>vGE%DdBm*QB` z*JF45TbhGh4!%V-b)PfLTt6N2NuP<m@pkNq&tNw^geqWjDxeG%NNUL-D!4AeQ}IFH z&c8A(7{j@o-;0`<(rwN(6UGQs(-om=HXB>ub*Kz)#s2s@s%A~jGNYn9swRb~VYL9e z;BQd{-iB(qeW=lO0DI$)CY`pNUz-_fDo){p*{B;|ff_#BaTGp@eX#LwOiSgVTH+M! zf#rVseAIO}VPkw86$8(pg6|+ID1X2rjsL!9o8URkcO@!=a#Tq#!5Mg$|M_9;OS;K9 zrr^inWYR-%1g=E|*$!-k_o6Da7l+{EI0e7QiQM0s_*)ZHXJZcOCs9rKIqF6&e`hA1 zA*l3R%*RSp3*3O3h#tT^`~+2?>~l>)mY}}367~6cemaBcCY(6HK~sDKTjBfI9KS?; zp}~3n)QlRAlhMIVI0vsowb&t4P_{eYTt5(JlRgpE^jD%{>{itM9yp)&Z^OZ(oKVeQ zK@FF~sDiY-z|^!mstHd*73fq{6Q=Pvd>GZVpQ2)=&xNLC7GoCaO4K}YCMtL@M-}9j z3u%9yxStc6Dqrv~d>8wX{t6X5JufnSITAG!7NKfXfhzdfsFu7HOYtsL7iM2<&JV`s zq(@;cPQpT5ljgwT;6@yekKi%b^b#|y+Mr545LKY@*dJG+YJRDI{ytnl`W-w0i!L=S zu^yQ!th=xo4!O*<a1kn<K8b^T4(6dU{1pzyTT#R6byN+%#cFh1<Go0p)||^t3%-p@ zNq>zB%K2BAnx2mO{$?D258!hA2#0ci>*OoVu-SxanhdI@uc0Q82HaIm*&8*Sif{yu zN8P9r8{=iD8(f70@ge{7f1!qPtE-HIu_NiZUYh<d;~<+8=b@r<8)~@Rf@+bc{PW*n zJJJm{o9jE`B+~hK3Ra*B{AV14Z($L3yV`Ww0#w(YiOT0(?5y#BEeEQ}-Kdg1i<(m3 zM_t(H8WV(_@L`*27AcGM#kJ;PbI}&FCA$~3B|G_gvnBiDHoA-J_ir~_vhUu&s3HB# z@5v9dZ>0U{2CLvE`UfAv2rmDF8OKkcwq*Z-Oa)f<E#~>Y6(1-45iZ7iZZ%Ec_BIpc zV^Ljl5*~-MaV)OKQFt#-!%uIc|HpAKW`~(Ts<0L5Yq2HXibHTWs?R?{W!(FA6BD_p zaXbOlh4ZmBMz95L#8!ANYWQ7+`uz8Pdgtx5zrMJS6J78Cw!zP^6*l;z8J=xXT{9Gw z@ic6T^Zn14<2=%7oPf_`C+v8K8ASt8^Tl*jjI2Nh(`gQL;a2R8_o8CqRn(2X^gnNS zr<r=Yp@Op*Pr!AkQL_ts;hUI;hw%%{yUPS)&x~oQg{UBm;0jD9IZ%_nh(qu--<CVg zLunkU<iEw^@mkc4UcnOl20P%=yG^v8j%ukL=-__L!go;<&LQ7#kb<PGhWD7cygBNE zQ&8i0368+uqUM9WSd8ytHjde4YBUG+c@Py;=VLy;fXdIl*Iy~&Xwv;K2Twz9|L<%L zl;LJn-`s)9@M%=ZzeIJ7z1w8i7nQ+4-+9=FbQKojwKxh7U`K4d$E=KU@MO~Su|00Z zV~9U%CkG0q`%qKv!>EG1gQ`)3Kbf`MbWD)mj-4?3KGSstIFa;l)b(p|I_^Uipv7L( z=Y3H3ISxnSFib1hR&$^hILCJjo=AEpDki?eu{iL4GoII=g78XI6YufU4`CtcgV-PY zK47k&iOPQ+j>e0zxy@t$0s6leCtlcR#^t}UE9piLnz_CgE+l;{s>wH@qW1<IjJM)& zd>z$QZU1aWMR(M7OHeIUin`AR)XL}@)Xe(#Kc~$~<#SFf;Y5r5rVGkYH9QBq<1M%d zA3@!?_e17;b5Sj|2Gz88;UxSM_QAs##Xb+4AiosV_Xm7GN^_u+9L6@-?k|4R;qjzr zqGqo1P&K&{H8b9h3a0z8A0G3FX|V!aOnMkL#*0v0aycp%p2oKL9x9*oR~&Tapz))o z$$Fx?pdaeS6EGKNqJ~upRkQ7whYzEg_Mg}jTRmp_d?2b|3vm{vF^o^)i8%Uk?~N;M zr8$_)iN|mtwtB*3a6I-Py$T&X8`T0gqDp>0>V|(s)$AiwOWJ=mvD5*TJ{I-)DC~<f z@mM?^z4!ksIZ%__iO1l6R98HK&GB_?iU&~z_{>i?d(zAc?NB!uj?M67)OE$EnK6QD z(KB%_Uh98;2%8dr)-g|+8?`|VlkV68hhaXBN7bYpWB4l^ho52>9Q?GIF;7NSq!KIf zcc=m#MqStJ8B>wIsQmIVt&)!8K+(Mb6+CyM`n<)nX2Wqf4kBHKId~No;QbiDPw-Nl z{hVo$w@}}2_`Hdc0jMS~M#V%GhH&fijDOv*$qOb(0;mk{z<Jp2MRUWIs0=PZ4bwYu zAhvwT496l=-$qd9FTnwLKWgIo5JzF&0n@T8@EX$P2WbBw2hCnKPqQeVPx@I@7c6_l z45QVkrmR2**Q3VyH8>34^v}0{)jYn3qejUbQ~?sW81F>o)8aML<=JTtnsA~Ij>i7j z5lgT?uEVal9d+Ga+=CCHVk7;!x#4Z70zZna@I}nRcm4B+P(l2?Z{xrD!?G0zs_`;Z zP<?=E!v1fV{kjFHC_WF>ch_TQ{0nx$H*pMpgDU8-H_eS^p+?gJT!5$HaNLDM@nbBZ z{8q2On}x<%s2e?wJ@8Fzi9eu%uK8PL#WDo-`DLgA-GQy~0Jg#ReZNNK*X(U$Pt^6p zP!(K^eYwB&I}Q{qx1pl;Wz>b%J7#9f#Zr<}@glqxl|kXV#xm?q`byLdGdL0-MRn<6 zY>cDdGjsn5sIHicQ@Ovjgaduy1}wr?@g&Uthe@x%LekgbG(3Q6a_4>1a*I(-y509h zRM#{;Xx=INpjxaHd*PWl0k>gVUwnrHeIfe;GmHkKzEF(n>p1qt^RXN5Kn3Yz{^xI^ zGX5I#u=9uJX*U7YHNQm#Wi<}Q8?g}{_>lH@ICz~CnqYoFr3Zdwo&mG4AL%M=hFeiJ zzXesmchSKHADgD{i|U%u*bY}>Tdcw%cs?G7dr=iQ_%ZFTjDO^WO4jrfbHg#1O?m~Y zW@}MhRE=t>r%(kr=-cF<X1E@UA<oajZMYMU$5RiP7;sT7vKiOm&1nwQ=Y2jkQ|fZ; zN%}%mP~C<qz+;$?AK(DY{>*%DBI^1xP+heJd*eO05MRcVamc?+lW)Wv(r01|Oy9(T zqIM@LgU3)ecpDvT^|>j)Aj~2?8%N_})TnT=3ctd(c>2H1)9=^Vg!DDo9=D_BhkN|b zpT!9p{~vImE*S8I>AMlACM(5xxE1H(zwua{`lacr2&#*=;8fg+v+#RtiqpR`F;I*{ zNw30=cr~g(cX(;~{~-<*aN<=|lMnsc%mcGg(YzK%;8s)@yo74vhToW`&q0lf$*3Bx zz_GXiC*y7$gFoV_IQm=T#W<7uTmRrdH5~q(so`(&7}B?)O1cwOvqw?E)9HKD0=d|q z^g`5)&q4>cpkn5JoQ7{;7tH;^6nFw=lU{*o4X?Evs7BY}Al!#7@l%|FKca$c@{eZt zl;SAT7y0SGpjzrP?1o(ro9jnnchd7wpU1H=UW1)*+hO`&U)arwf%qa8VMELIT40>- zRP4+7*{Fgha0XuCfBv@r`G?q)^Q~;#T85oaU6;ZRcq=N__F+4G+)mrx#PByxsHUwO z*xswud{j_fg&Hn@$DY`vp(#iXI;2nX)2mUjaS^IZ{)FT3JsgQSjchL#mZDmA8>&VA znD!4|M%B=6Y<t5d2UU}NY=a}P6`qJ{`uV7qxDZF<AF&S}#5vf!iS2deQdDeQfa;2y za5g@KYLRq@V{9+T`lD_*7S%K-qGDkYs>J7_g0UJ^(_8)Y%cz=sjB3G-O>J+AU4lbM zpMxs!y{HO)iVETm&1}s#Y3o=HG%m-YZZOYJuR=xXCRBkgM+NIms2V+m4e<jUj-Q}v z)F;by*(lTmv<yozh&}L8|NK9&HTSnZ;UJd}e!ybP;nmc^^*A1{K@G>(Q5n38l-z32 z!W5_*ss$#Z`hE>+qPhYX;2zXG(5|KJJ;oQ{d89AHX58QE(aQFw&RkR%j6pT=MAXwN zhJ*2H|NIlEp!^#DfIVB=*6;BVyc8pCOw0X<i%EBEYkQ-t0yWAmK;^p!)0*qw<6t?q zZD)H^Wd&;3+<<DCS5QrFw>P684>h4o#YPxFUB40?ycX5;dr|p6gc=Q>qK5n64kmbK zbg<Lj4WgV-bY6*S$_%RSUq_AC&r!ki1FGb`JDQf7fr_2^sO#6DX3Deh6nqvnZ2M;0 z-V{6$PbIw(72MBfk2ihWko{2As5z={b5J)t!9QPuYVwV!8*N9;V7oiHUGukO-pP-) za;M+9+TD15XSe5Fy)yfXw%QGH67GSqn|lO;!B8;Y$w@e+Wr64_|2Q5hk5z_(?!`NI z-r$UDm^pi5Q6u+-6We9JKk>On1D#~diH8C~Cmc<N;)#l~aCF^i<$;QdaCFs@oW!zx z=cHB9SUeOgbaLXE$EH8uAalp8d+p4GQ~ES?lf^;z@5NWU*Uf*RaX1o*t#x}o)hDy; z)ci*2aI`e!R1Pf|obSx@GIdgkP{QdGjs`>P`Z$4vQyxfg$J2tbQm3TK35He%QjuhV zGba)XBti~#ar)G|WUP~08l#BOWFohZ3SAXT#T`zqEU2g|u;!8ChQV+=RGN&%tK4s& zpXk22cvL!7Q4xzLot3e;6RHeEQh_8DbLLbf%VJSysFSFQCIjo7aDoC<@ZCT%6m$a7 zptF|xI3*$4#%n#Ar=}jm3kDZBlVZ`z5c$&9l*P|(n4cZRsVXmtMG{tVrpuC<cC%ot zJU|9?Q*3E&z0~zfXV;}NUoE}DwiE89%e&h7?(r|*omJ$7)>TlSP%!i3%kypbU$5Td zzVceq&dTg5IcT>G#;oFaAex8-sBvaus7-@R&+y=e?%YVyo$~&^NwH*^lMIxkB7t~m zERrgZCcK&zt_=s1Wr;#3R*?+T2!VLWSrx7fMGKtTk7$puy8W_)T{4Htvu(FW>_WHM zhk;C9MK{}h^P?4+n@%6p(ETJCY8lU3l1K()spPV(oVa^hsw;nr-0M<Z+&!rYZi~ux znZnB3ZFl^Z;hDGB9@pro>$`01bJUq>8}r<AH;!^&+4ws*e^aw|L8mx2$)VrlRrF#i z8Z2~|Z5lr#5i1YTZHW{?wKhymy%VvOPO^;ibWW5;35OE-PDv`MlT}U`QNA`7U!wpB zM2Nj8!B81W6uOse`pTXBO}nNu18YJn!;w(t%ri#WQ>~Q&j)UspaJd&nIf<X1i<PXV zi|E^WA5{e6gm5%K5pxomJJU1mfsv4xQ~?7ek&wedO*}h!e()DM<*{HY5=vyg{Z&KT z?ear&x6fHix`kJjMfl?duDO7(215k}1x{weS?@K>tsS_v6<1{$VH)?0+k`Xl1Qlf2 zIRhHhALsQhUm1^;a|wC6>ECsCum9bKOpkMiG;*)lGRd8B;U~L3Yi5_&9V~_jbyEW} zY*XbLjqZIH&&ssC<VL%B!W)Ci!*Or9G~F;33AtOg^l(>f=}`S`OS>pjdf9Tj$(nFQ z1+&o`?zx%sE`O$RhtRsxNQ!x@Hb>?e_m0gS-8okun_rrYhcpIPhT<V6lmr9fr&n9a zn67iLFX~mjIom!ybKBLk?T!^eGt@)T%5XduRapz2%s1DJx2rGiYX6~nP&d1Kb!9iZ zP4&6m>>RiJ`fPXe^@Cd{Qsw0Vg&JM2)|j$&LCY}%2M--MWVADQNa2W~?#)}f>CCW! zLxwv;Mivem={~!)Q<q{wCs7u5rq7;v(xM5@@!^8xnpk<bDv)Wq?LX`RCq-AqL&QWR z;KWl&{tE2hvEHFA13FdHn1Ryp{!HeF?OBb}^TJLf#;oKwGl!u>a{sm{l*YqJrK3(N z>V$(~CKo2Y1o1(n1|kmkitN8Rk)KtO3I%DiL?{v}EoG<&;`P1}I6W110!}g>sN`a% zKPQoLO7~}i;Z?B$r`(^k`8b#=4afIy%TjTYp>?|T=_#g+P?SzlDT3kBGKPp(kb<nN zIjU4DO2sG>C8N@O#m|}2#59xwLC#f%6X9f_(8+S`nc11<!&Wy;Gfl4yRL0`@#3uO$ zoKVDJ+UB%rE54NouS$jKO==cco#GjiaPkri&`3yq9C9jBkwn0mqQ{w&<$Wtq8mdTA z`MSKwk1?l5MLzk_LjLX2-b6zlf%yKLb&GJKe}R=Xg(0q9BZE>}I~t5Rx#e_tuBuPJ z)IE5@F;h@3s|Yjks_LnP_l>-Y;L85Y)uDA+d7S!5W&}cVAQOIYWv)Z#?B8K>Dx>ri zJ)yo$C1d6Lw<T#8ud41_w~chq+cCb4I+tNm8(5jQMlEmXj<~Z;{iTAtuV}|ih8c6x zMDOoK7GsKMDqS3Na)MS4Pri6*S-6riuS|Ju8T9&zN)n`z{X3!|uRr}ZNVr?>daB8! z0Rxyg+)pz%{Fm#Gt2;zv)I>p8^PmpL3fznC?vYt^_XQ0zC-1)29yKlC5cBbPm_l)3 zC?2P?h-xN)U??75Pd`$aiomKcA;yg5%#1OM$K1|;DsB{u=Y=w<KLzdHvtsI0>Zf`T zk9GI+tLA=j-y4pGTh!4q$MH(W0IQvB!hvAG{pa4!9rS&Apd=9Y1}k9|h-4<;AG8bO zPR#>joRe2IDB9op^8=GuOi^Cbj%wzb#xlLRfUu6OO}H;Tu%NlZ$iL7Xxo;FpCZZ=N zUcV@-7((hEYjUWRX!7O<8ZT85AqIkhd>$s{C1FBU;mr4ggjLkZ%}L}IWF7GpTHQNK zM!L>a{K$Mp{8C0!A{42-gu$+{tO%&fBIIU0xM{i9M_yfn;gyuk%f8T>qVwkOLiJ@$ ztN5!nr;5_9qlVrrLdJCgTyM^z7v6mE{`4<}Ma@9dgh92uk;YOkrB;g<T1S3O_hT-o zDc-sYE)O5owbpDtXE=FNBGX+cnjlK-sM~t~jI`DQ|LxVXskve|5+Z=8U^vP;w7jMl zz1Yw!;r9l!3yoJ6ipR9puKPAKet?lj4y_rP^`8jtF*64Dr>cwti(aZ}-<(8U)8;!o zg_6vd!I-;r#@O_nu-A<h`?q-mXi49n5B*qyb@Y|LG)lO1RxHVKgHd@z=9c#)V8UWC zSyS=m47hxM;&%_v=$5(Xp}Xx&`Y)f`?u1jad!5SS!do5@OcjwpG|4Jl%~rX8TZG`w ztbc5=-KUfusB5yCA?Q>&69dW8GCjE6opbMTZ+>ECs3vS9b<M_m2a{<$riVt9XWq*2 z>R5kk4r>e!6ybiXdrywKX~PSL+9J`wnv%V_IOb0O>rHOMCxdS6$$72fbdjDO+sZ@S z#C`h7nVIoVb+YSTkK6@M?;czKF=rMA^@ay!FvZGucvL!})gc~kJg9OD;)!Ig6LZHr zQ+&jOvL=Us6HW1wQ-2)g@nH6s9_ESYRVxvQgyU5DXNyrc*1hp)nqKix|LP^?o~5Zk zgmnZ{qFOGuiqbi`(cB}ittp<@y3E)=_h}%qYX6?7Szow=p3R$DI|@sPAEp$wf5fSX z$Ex(ywq}H)t5Sj0isgD|XVvs~?S<}{3y<x1DlfL)Oke+Ecki=TH3$dXQ=c0+p!UIO zCTY!a{<_Nqn&mG57(|(ypKEG6EFb(g&2ZhrvPyHk#xq0hndiIxzkUUtTw5aZh&w4n zkk%EGmeLY2rpJr7FeLbymBK+Sbi$>vgf-6_3to%X%p_(R;1<0w{{PpD^!^=sla3`u zS~DqBz$u<RdA6SGX5GT#k*TkkDZ`rs%>j{UUaeR{xS1E8%4KTIVXuIpnP8ZomaM9v zX?PZB05hG}JY?OXr330-$Mvc{sP@HO(<^zHm%U%k;nAi22Go6LhMqV614M8CTKmL9 zES_21Fj>ap?q?r%JkE)RLczpo{*|#PudEe315`W)w6|a?4a8SzIkM}e%R_VgnR{CC z%o%<ac;x5g@di$3_h)#`V6gb}d%~%^jJ4EJ*AcpYM<<*af#T3YlOGqlZI=)0GNb<I z3v2GCPY)g#QGcVNTir&5vw^bnz+ul~Q-K<-dRZsC^C>Gf=<RpY3P(?(koW$e;7d_G zdTRsEw;)ZzdV7;!c>>ST;?r5NL5o2aahq0n`S}HQd%xL!0F#@agO=Ilyt|}yptlqA z!XD_aXGe^84|m%uLpxENn!patNtM*Jp8MV_t4}$i(KJu6%x7||ZIPcg9eYJQm13*7 zBXwXwo?t$zdrfomUmLpch$gH^gi^uS!1^uu(_Cviggm{st)DG{d*HQ7wt;58-nN1J z=^Gs~jo-Y^K4AjyQw-yYG%?#BT0eU)mnj~iG_JSu_tr=(VfJsU(C6I4f6rqD|H9uV z_MRLn3B~vC2ryXcFJm=nFA9eu!9?cAw;MJbS{&2so7%emJ3~c`H}RSeYU|-oA>XW- z-`WZ!<6*XAVwT=y;_jvYSTZaeB@py-cJ#}QreL1aJiWa3t=GeD<o(Ta|1WHAg@OfE zD9ZASSEpDq=C(fg+9D<nZko~_BCW@3THMLgL)d>?EOg3}<&plDKhbLiueXPz(}hQz zD32{GwA@ec?%<YwF!oqNo;MS324<S72p{pbz)FviUgEC!FgtzJhs+OJ=*6x7Gy?)Z zz?(VOc{AgGa&7JM<)}P0O=$XT9oLGJF7|seGv&h*?SAz$^mZajSU=YcD#FR!-px9F z%qWWu(z>?+^JHaQm8MGK;c~sed-3;^XRT|0ylg7F$B~qIW>Xe60<?R<BCg)d&I?&W z69kp@HV7Dc=Hr#@5BP6NnJ-R{H0W8A((am9pkTnNdoF4wnLxEvXK!+<w-V!=wwIl} zoJ4;sR`0z)3n->=bHhX|5^(1q>g`q^I@ukO>T%SDCR?Jti3fVR-V2{sShE!pa+rDD zs#I@nnx=pDN<S<jA#JYx%oSd29Qj$8b+@)?jy!wRsQhVGt;}@eEeN#z)$+4~1$7-< z5RI)4t*K&X+*?Lgq)PN2>TRslESS6wseSrP4JW6iN-Q&*l+-NGP1=2{@`OGyD;^`a zx)G+wB)w7lgpav}Ye#k?$h4zWS^xEbrC@1@VLSL=rP^I~-(GuGH}#`8bJg9e=9GKx zy0hKgpD%97PHf%M(Y^EY_U>6#oo4cENbcW}<N-pj)_+}4VZ1GiD07>7+|0_XR#`Mz z+$_SLgnE{FEF6fKjhXfT9-m!v<N9yD!H_%Q>Gqi+>zmm{eD2LJ+T_q?HEGHf*HcfM zQY`v;<M!She=@7O-M+lSeS5=kM@8B%ZKjWCU&=n4|H@Reci?vax?9_1n1`h{>FS?# zzx%2v?Vr)lAxH1OYspm>DB-EXHr`Q7oZ1fv3bXX_UZn%^k}%U34V19dwJGh+k@YX` z;t%^j+r~e`edp_y?fr>K@4Pj0lUwvnx4P~9h2KoHm(r_s6GF}IeZ5Wm|H+=eduMt| znjgfxNtke|nITz1(&rS*8$W!&W+!13^+Mj;3bE>4>Mekn-<TtRy7^Z36}CR~TMgMB z@#U%h?D)&y_SV1TuXsP|<snp;seAEv#l_}@RN-G!z9S!tyqWg5^y>Y;@hgY>{dc>E z)y}HkesX{*&N4^dUUkj;o}&kDgwf7H)P3vwE=|<8`**lqf4K0!_<f|pPBVM3ugd<r z+1Dv&q3Lg<veqt-d0T9(nYo94>G9`HXU?ptyv@!#b*kk(jmV_l7wf*K2M`Sy4OE6$ zqcf3dGMgDlmYp0}r*FohnQ6a?*;l+}uW9w?ZQie}@f5F#yqgR-XGHqH`P+?^3|Dxw zPchH!N&Nbwg{`+K60=GZiPO~db*Hp{RM&yl>R<l6k;10>Roi}NP;~#Ea=mwGii-zI z0^V*2zkr&Bx>NIUMT|{*He7eT)4*<E=S5<HAZs-4{c|-r@@J)x<t=a2b=uWTc|S@p z47G&PuST`uOA)lNrWSQkZk43852mq01J^#tm^A~XNmlC2!mK^XraI8b?s>9Rw~bNv zX!5sythqIN$?C7VUgd_~&Y505>Rt<X?QLY=Vz>8pR<t0fTVCv{XkwpiXO{(d^VdEs zizTf_%x;4__JZqk^ige5_425eqlFXo%UpeCQ+tDcX&XUh>K=U5fMJ=ah(*Kt!O)vA zYTq&xSaBMHI=fXD&a38u(xc4Vuc7VC>cmRK*t4x&q-j~>{aoS)tiRQ$?mn_sM}4oh z_-3nCKZ;a;+{_-^i|0OhnjdGp7meE8G4G|b`ot`I?jWy7d|J1Ttov=jY$hME(Neu9 z%kJLYeCdcuskT<t|ID&OKl?*ub*#C)xcaZn?TPJc`<|tRzhktkYYV%-UB-;hlUnl> zOUgvdGCwcSYy9ZPj=C59@zA_tD-x>mo*&)?n#T3-D)hMbqP^ZvowZliR^JQ43tHNX zx_dd){Cdf=Ppdc9JNi@m)99EutvDxG;_wvkcBl2Dyv3%UesS`4jcE@3)}ignBVNmP z4QpkeWsfyKsMcH2*8F%=#%r9yl4@B$oxlC}vR0Rms2<hE?pwX7jXk`2TpPP%^`mX< z@EU^ei1=Zrq^2o}a_>>4P*C`oSI7b@;r%<0f$RsCu3_(je;x5Nnbdn2*5u-DyQ0Ic zo7&oWc7Dwe@%B)U3LEZJ*TlSd?)tc$UEQ$5&;26&Kl=T+vR}<y>#g{xL+y`?w4|n1 zD-~rsv3gJ^`?hp>n2la-C^4uRN3l}9S9@bsA!8oQOj@<`x4(+4z1GW54?+DBMHP88 zdAmL}Ka=W}PaUe=kbsps`d95NmX3vvrG=#X!!@OCOfGd{@0MTNxq4q`dz;&BOHcjq zU6ih!5q`3)<cCzvt+nsEyx3^*%kRzg-tt(UGZiwPtLm0dF<y`AuJg7b_(9D4b{9(Y z*H0id(@i+X`(2k7S<BDZJUME<=#3SBvT<_U-q&|d>!HSa(G<Y@y!OR{VQAh7%?nQb iYmOYT^*{Of9UBeG`d69Rle1l&nliE<f5g8Eu>Kb=hp1iv delta 17242 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 Nzs@fEzxwO!e*wb*^xgmf diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 7f220b240..fa2f761d1 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -1,18 +1,22 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: +# Edward Villegas-Pulgarin, 2018 +# Edward Villegas-Pulgarin, 2019 +# Edward Villegas-Pulgarin, 2018 # Guillem Borrell <guillem@torroja.dmt.upm.es>, 2011 +# Ivan García <ivan.garcia@studio-point.com>, 2019 # Leonardo J. Caballero G. <leonardocaballero@gmail.com>, 2013-2018 # Takeshi KOMIYA <i.tkomiya@gmail.com>, 2016 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" -"Last-Translator: Alvarez Alejandro <eliluminado00@gmail.com>\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,24 +25,24 @@ msgstr "" "Language: es\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" +msgstr "directorio de configuración no contiene un archivo conf.py (%s)" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" -msgstr "" +msgstr "No se encuentra directorio fuente (%s)" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" -msgstr "" +msgstr "Directorio fuente y directorio destino no pueden ser idénticos" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" -msgstr "" +msgstr "Ejecutando Sphinx v%s" #: sphinx/application.py:214 #, python-format @@ -48,95 +52,83 @@ msgid "" msgstr "Este proyecto necesita al menos Sphinx v%s y por lo tanto no se puede construir con esta versión." #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' como se define actualmente en el archivo conf.py no es un Python invocable. Por favor, modifique su definición para que sea una función invocable. Esto es necesario para que el archivo conf.py se comporte como una extensión de Sphinx." -#: sphinx/application.py:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "primary_domain %r no fue encontrado, se ignora." - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " -msgstr "" +msgstr "cargando traducciones [%s]... " -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "hecho" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" +msgstr "no disponible para mensajes incorporados" + +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " -msgstr "cargando el ambiente pickled..." - -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "fallo: %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "Ningún constructor seleccionado, utilizando el valor predeterminado: html" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "éxitoso" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "finalizo con problemas" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "construir %s, %s advertencia." -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "construir %s." -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" -msgstr "mientras se configura la extensión %s: la clase de nodo %r ya está registrada, sus visitantes serán reemplazados" +msgid "node class %r is already registered, its visitors will be overridden" +msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" -msgstr "mientras se configura la extensión %s: la directiva %r ya está registrada, se pueden sustituir" +msgid "directive %r is already registered, it will be overridden" +msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" -msgstr "mientras se configura la extensión %s: papel %r ya está registrada, se pueden sustituir" +msgid "role %r is already registered, it will be overridden" +msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,7 +136,7 @@ msgid "" "explicit" msgstr "la extensión de %s no declara si es seguro para la lectura en paralelo, asumiendo que no es - consulte con el autor de la extensión para comprobar y hacer explícito" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -152,60 +144,54 @@ msgid "" "explicit" msgstr "la extensión %s no declara si es seguro para la escritura paralela, suponiendo que no lo sea - solicite al autor de la extensión que lo verifique y haga explicito" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" -msgstr "" +msgstr "realizando serialmente %s" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "no se puede reemplazar el ajuste de la configuración del diccionario %r, haciendo caso omiso (utilice %r para definir elementos individuales)" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "número no válido %r de valor de configuración %r, haciendo caso omiso" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "no se puede reemplazar los ajustes de configuración %r con tipo no compatible, haciendo caso omiso" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "valor de configuración desconocido %r en anulación, ignorando" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "No hay tal valor de configuración: %s" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "Valor de configuración %r ya presente" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" -msgstr "" +msgstr "El archivo de configuración (o uno de los módulos que importa) invocó sys.exit()" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -213,1028 +199,939 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "Sección %s" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "Figura %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "Tabla %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Lista %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." -msgstr "" +msgstr "El valor de configuración `{name}` tiene que ser uno de {candidates}, pero fue dado `{current}`." -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "primary_domain %r no fue encontrado, se ignora." + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "Evento %r ya presente" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "Nombre de evento desconocido: %s" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." -msgstr "" +msgstr "La extensión %s es requerida por la configuración de needs_extensions, pero esta no es cargada." -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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 "Este proyecto necesita la extensión %s por lo menos en la versión %s y por lo tanto no puede ser construido con la versión cargada (%s)." -#: sphinx/highlighting.py:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Constructor clase %s no tiene ningún atributo \"name\"" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Constructor %r ya existe (en el módulo %s)" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Nombre de constructor %s no registrados o disponibles a través del punto de entrada" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "Nombre de constructor %s no registrado" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "dominio %s ya esta registrado" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "dominio %s no esta registrado" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" -msgstr "" +msgstr "El %r object_type ya está registrado" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" -msgstr "" +msgstr "El %r crossref_type ya está registrado" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" -msgstr "" +msgstr "source_suffix %r ya está registrado" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser para %r ya está registrado" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "Analizador de fuentes para %s no registrado" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "source_input para %r ya está registrado" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" -msgstr "source_input para %s no registrado" - -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" -msgstr "" +msgstr "Renderizador matemático %s ya fue registrado" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "la extensión %r ya se fusionó con Sphinx desde la versión %s; esta extensión se omite." -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "Excepción original:\n" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "No puede importar la extensión %s" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "extensión %r no tiene ninguna función setup(); ¿es realmente un módulo de extensión de Sphinx?" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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 "La extensión %s utilizada por este proyecto necesita al menos la versión de Sphinx v%s; por lo tanto no puede ser construido con esta versión." -#: sphinx/registry.py:495 +#: sphinx/registry.py:496 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "extensión %r devuelve un objeto no soportado de su función setup(); debe devolver un diccionario de metadatos o ninguno" -#: sphinx/roles.py:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "tema %r no tiene configuraciones de \"tema\"" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "tema %r no tiene configuraciones de \"heredar\"" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "no encontrado ningún tema llamado %r, heredado por %r" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "configuración de %s.%s se produce en ninguna de las configuraciones de tema buscado" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" -msgstr "" +msgstr "opción de tema no soportada %r fue dada" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "Extensión de tema %r no responde correctamente." - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "archivo %r o ruta del tema no es un archivo zip válido o no contiene ningún tema" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "sphinx_rtd_theme ya no es una dependencia difícil desde la versión 1.4.0. Por favor, instale manualmente. (pip install sphinx_rtd_theme)" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "sin tema llamado %r encontrado (¿falta el archivo theme.conf?)" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " -msgstr "" +msgstr "compilando [mo]:" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " -msgstr "" +msgstr "escribiendo salida... " -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" -msgstr "" +msgstr "Todos los %d archivos po" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" -msgstr "" +msgstr "todos los archivos fuente" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" -msgstr "" +msgstr "archivo %r dado en la línea de comandos no está en el directorio fuente, ignorado" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" -msgstr "" +msgstr "archivo %r dado en la línea de comandos no existe, ignorado" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" -msgstr "" +msgstr "%d archivos fuente dados en la línea de comandos" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" -msgstr "" +msgstr "compilando [%s]" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " -msgstr "" +msgstr "buscando por archivos no actualizados..." -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" -msgstr "" +msgstr "encontrado %d" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" +msgstr "no encontrado" + +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " -msgstr "" - -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." +msgstr "no hay archivos objetivo desactualizados." + +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "copiando imágenes..." + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" -msgstr "" +msgstr "no se puede copiar archivo de imagen %r: %s" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" +msgstr "no se puede escribir archivo de imagen %r: %s" + +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" -msgstr "" - -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." -msgstr "" +msgstr "escribiendo archivo %s..." -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" -msgstr "" +msgstr "mimetype desconocido para %s, ignorando" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." +msgstr "no hay cambios en versión %s." + +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Funciones incorporadas" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Nivel de módulo" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." -msgstr "" +msgstr "copiando archivos fuente" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." -msgstr "" +msgstr "El archivo ePub está en %(outdir)s." -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" -msgstr "" +msgstr "css_file inválido: %r, ignorado" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." -msgstr "" +msgstr "Los catálogos de mensajes están en %(outdir)s." -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " -msgstr "" +msgstr "compilando [%s]:" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" -msgstr "" +msgstr "objetivos para los archivos de plantillas %d" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " -msgstr "" +msgstr "leyendo plantillas..." -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " -msgstr "" +msgstr "escribiendo catálogos de mensajes..." -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." -msgstr "" +msgstr "Las páginas HTML están en %(outdir)s." -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" -msgstr "" +msgstr "Error al leer la información de compilación del fichero: %r" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d de %B de %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice General" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "índice" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "siguiente" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "anterior" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." -msgstr "" +msgstr "generando índices..." -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." -msgstr "" +msgstr "escribiendo páginas adicionales..." -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " -msgstr "" +msgstr "copiando archivos descargables..." -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" -msgstr "" +msgstr "no se puede copiar archivo descargable %r: %s" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " -msgstr "" +msgstr "copiando archivos estáticos..." -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" -msgstr "" +msgstr "archivo de logo %r no existe" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" -msgstr "" +msgstr "el archivo %r usado para el favicon no existe" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" -msgstr "" +msgstr "no se puede copiar archivo estático %r" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " -msgstr "" +msgstr "copiando archivos extras..." -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" -msgstr "" +msgstr "no se puede copiar archivo extra %r" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" -msgstr "" +msgstr "Ha ocurrido un error al renderizar la pagina %s. Motivo: %r" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" -msgstr "" +msgstr "error escribiendo archivo %s: %s" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" -msgstr "" +msgstr "js_file inválido: %r, ignorado" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "documentación de %s - %s" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" -msgstr "" +msgstr "enlace roto: %s (%s)" #: sphinx/builders/manpage.py:43 #, python-format msgid "The manual pages are in %(outdir)s." -msgstr "" +msgstr "Las páginas del manual están en %(outdir)s." #: sphinx/builders/manpage.py:51 msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." +msgstr "Página HTML está en %(outdir)s." + +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." -msgstr "" +msgstr "resolviendo referencias..." -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (en " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." -msgstr "" +msgstr "Los archivos de texto están en %(outdir)s." -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." -msgstr "" +msgstr "Los archivos XML están en %(outdir)s." -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." -msgstr "" +msgstr "Los archivos pseudo-XML están en %(outdir)s." -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." -msgstr "" +msgstr "Los archivos LaTeX están en %(outdir)s." -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." -msgstr "" +msgstr "\nEjecuta el comando 'make' en este directorio para compilarlos usando (pdf)latex\n(usa el comando 'make latexpdf' aquí para hacer esto automáticamente)." -#: sphinx/builders/latex/__init__.py:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Índice" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Versión" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." +msgstr "copiando archivos de soporte TeX..." + +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." -msgstr "" - -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" -msgstr "" +msgstr "Ha ocurrido un error al compilar, iniciando depurador:" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" -msgstr "" +msgstr "¡interrumpido!" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" -msgstr "" +msgstr "error en marcado de reST" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" -msgstr "" +msgstr "Error de codificación:" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" -msgstr "" +msgstr " import sys; sys.setrecursionlimit(1500)" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" -msgstr "" +msgstr "Ha ocurrido una excepción:" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" -msgstr "" +msgstr "número de trabajo debe ser un número positivo" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." -msgstr "" +msgstr "Para más información, visita <http://sphinx-doc.org/>." -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1253,253 +1150,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" -msgstr "" +msgstr "ruta a los archivos fuente de la documentación" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" -msgstr "" +msgstr "ruta al directorio de salida" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" -msgstr "" +msgstr "opciones generales" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" -msgstr "" +msgstr "constructor a usar (por defecto: html)" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" -msgstr "" +msgstr "escribir todos los archivos (por defecto: solo escribir archivos nuevos y modificados)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" -msgstr "" +msgstr "no usar un entorno guardado, siempre leer todos los archivos" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" -msgstr "" +msgstr "sobreescribir un ajuste en el fichero de configuración" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" -msgstr "" +msgstr "pasar un valor a la plantilla HTML" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" -msgstr "" +msgstr "opciones de salida de consola" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" -msgstr "" +msgstr "escribir avisos (y errores) al fichero indicado" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" -msgstr "" +msgstr "no se pueden encontrar los archivos %r" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" -msgstr "" +msgstr "insertar automáticamente docstrings de los módulos" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" -msgstr "" +msgstr "verificación para el cubrimiento de la documentación" + +#: sphinx/cmd/quickstart.py:57 +msgid "include math, rendered as PNG or SVG images" +msgstr "incluir expresiones matemáticas, mostradas como imágenes PNG o SVG" + +#: sphinx/cmd/quickstart.py:58 +msgid "include math, rendered in the browser by MathJax" +msgstr "incluir matemática, mostrada en el navegador por MathJax" + +#: sphinx/cmd/quickstart.py:59 +msgid "conditional inclusion of content based on config values" +msgstr "inclusión condicional de contenido basado en valores de configuración" #: sphinx/cmd/quickstart.py:61 -msgid "include math, rendered as PNG or SVG images" -msgstr "" - -#: sphinx/cmd/quickstart.py:62 -msgid "include math, rendered in the browser by MathJax" -msgstr "" - -#: sphinx/cmd/quickstart.py:63 -msgid "conditional inclusion of content based on config values" -msgstr "" - -#: sphinx/cmd/quickstart.py:65 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" -msgstr "" +msgstr "crear archivo .nojekyll para publicar el documento en páginas GitHub" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." -msgstr "" +msgstr "Por favor, ingrese un nombre de ruta válido." -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." -msgstr "" +msgstr "Por favor, ingrese algún texto." -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." -msgstr "" +msgstr "Por favor, ingrese uno de %s." -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." -msgstr "" +msgstr "Por favor, ingrese cualquiera de 'y' o 'n'" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." -msgstr "" +msgstr "Por favor, ingrese un archivo de sufijo, por ejemplo, '.rst' o '.txt'." -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." -msgstr "" +msgstr "Bienvenido a la utilidad de inicio rápido de Sphinx %s." -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." -msgstr "" +msgstr "\nPor favor, indica el valor para los siguientes ajustes (simplemente pulsa Enter \npara aceptar el valor por defecto, si se indica entre paréntesis)." -#: sphinx/cmd/quickstart.py:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" -msgstr "" +msgstr "\nSeleccione ruta raíz: %s" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." -msgstr "" +msgstr "\nIngrese la ruta raíz para la documentación." -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" -msgstr "" +msgstr "Ruta raíz para la documentación" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." -msgstr "" +msgstr "Error: un archivo conf.py ya existe en la ruta raíz seleccionada." -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." -msgstr "" +msgstr "sphinx-quickstart no sobreescribirá proyectos existentes de Sphinx." -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" -msgstr "" +msgstr "Por favor, ingrese una nueva ruta raíz (o ingrese Enter para salir)" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1507,11 +1398,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" -msgstr "" +msgstr "Separar directorios fuente y compilado (y/n)" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1519,25 +1410,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" -msgstr "" +msgstr "Prefijo de nombre para directorios de plantillas y estático" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" -msgstr "" +msgstr "Nombre de proyecto" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" -msgstr "" +msgstr "Autor(es)" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1547,15 +1438,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" -msgstr "" +msgstr "Versión del proyecto" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1564,24 +1455,24 @@ msgid "" "\n" "For a list of supported codes, see\n" "http://sphinx-doc.org/config.html#confval-language." -msgstr "" +msgstr "\nSi los documentos están escritos en un idioma distinto al Inglés,\npuedes seleccionar un idioma aqui a través de su código. Sphinx traducirá\nlos textos que genere en dicho idioma.\n\nPara una lista de los códigos soportados visita: \nhttp://sphinx-doc.org/config.html#confval-language." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" -msgstr "" +msgstr "Lenguaje del proyecto" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" -msgstr "" +msgstr "Sufijo del archivo fuente" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1590,36 +1481,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" -msgstr "" +msgstr "Nombre del documento maestro (sin sufijo)" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." -msgstr "" +msgstr "sphinx-quickstart no sobreescribirá el archivo existente." -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1627,29 +1518,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" -msgstr "" +msgstr "Crear Makefile? (y/n)" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" -msgstr "" +msgstr "¿Crear archivo de comandos para Windows? (y/n)" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." -msgstr "" +msgstr "Creando archivo %s." -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." -msgstr "" +msgstr "El archivo %s ya existe, omitiendo." -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1657,26 +1548,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1686,214 +1577,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" -msgstr "" +msgstr "modo silencioso" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" -msgstr "" +msgstr "ruta de salida" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" -msgstr "" +msgstr "Opciones básicas del proyecto" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" -msgstr "" +msgstr "nombre del proyecto" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" -msgstr "" +msgstr "autores" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" -msgstr "" +msgstr "versión del proyecto" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" -msgstr "" +msgstr "lenguaje del documento" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" -msgstr "" +msgstr "sufijo de archivo fuente" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" -msgstr "" +msgstr "nombre de documento maestro" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" -msgstr "" +msgstr "usar epub" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" -msgstr "" +msgstr "Opciones de extensión" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" -msgstr "" +msgstr "habilitada extensión %s" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" -msgstr "" +msgstr "habilitar extensiones arbitrarias" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" -msgstr "" +msgstr "creación del Makefile y Batchfile" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" -msgstr "" +msgstr "crear makefile" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" -msgstr "" +msgstr "no crear makefile" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" -msgstr "" +msgstr "crear batchfile" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" -msgstr "" +msgstr "no crear batchfile" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" -msgstr "" +msgstr "definir una variable de proyceto" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" -msgstr "" +msgstr "Variable de plantilla inválida: %s" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "Más dedent ha detectado" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "Subtítulo inválido: %s" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "No puede utilizar ambas opciones \"%s\" y \"%s\"" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "Archivo incluido %r no encontrado o la lectura del mismo fallo" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "Codificación %r usado para la lectura archivo incluido %r parece estar mala, trate de darle una opción :encoding:" -#: sphinx/directives/code.py:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "Objeto nombrado %r no encontrado en el archivo incluido %r" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "No puede utilizar a \"lineno-match\" con un conjunto desunido de \"líneas\"" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Línea especifico %r: sin líneas tiradas desde el archivo incluido %r" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Autor de la sección: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Autor del módulo: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Código del autor: " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Autor: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parámetros" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Devuelve" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Tipo del valor devuelto" @@ -1922,12 +1813,12 @@ msgstr "%s (tipo C)" msgid "%s (C variable)" msgstr "%s (variable C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "función" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "miembro" @@ -1935,7 +1826,7 @@ msgstr "miembro" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "tipo" @@ -1943,297 +1834,262 @@ msgstr "tipo" msgid "variable" msgstr "variable" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Nuevo en la versión %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Distinto en la versión %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Obsoleto desde la versión %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." -msgstr "" +msgstr "Declaración duplicada, también definida en '%s'.\nDeclaración es '%s'." -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "Parametros de Plantilla" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Lanzamientos" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (tipo C++)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "%s (concepto C++)" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (miembro C++)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (función C++)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (clase C++)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (enum de C++)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (enumeración de C++)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "clase" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" -msgstr "" +msgstr "unión" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "concepto" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "enumeración" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." -msgstr "" +msgstr "Definición duplicada, también definida en '%s'.\nEl nombre de la definición es '%s'." -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (función incorporada)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (método de %s)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (clase)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variable global o constante)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo de %s)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Argumentos" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "dato" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "módulo" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "etiqueta duplicada de la ecuación %s, otra instancia en %s" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "palabra clave" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operador" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "objeto" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "excepción" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "sentencia" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "función incorporada" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Variables" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Muestra" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (en el módulo %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable incorporada)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (en el módulo %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (clase incorporada)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (clase en %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (método de %s.%s)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (método estático de %s.%s)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático de %s)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (método de clase de %s.%s)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de clase de %s)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atributo de %s.%s)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "método de la clase" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (obsoleto)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (directiva)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (rol)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "directiva" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "rol" @@ -2242,209 +2098,200 @@ msgstr "rol" msgid "environment variable; %s" msgstr "variables de entorno; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%sopción en línea de comandos; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "termino de glosario" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "gramática simbólica" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "etiqueta de referencia" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "variables de entorno" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "opción de programa" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "documento" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Índice" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Índice de Módulos" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Búsqueda" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" -msgstr "" +msgstr "citación duplicada %s, otra instancia en %s" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" -msgstr "" +msgstr "etiqueta duplicada %s, otra instancia en %s" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." -msgstr "" +msgstr "Citación [%s] no está referenciada." -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" -msgstr "" +msgstr "nueva configuración" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" -msgstr "" +msgstr "configuración modificada" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" -msgstr "" +msgstr "extensiones modificadas" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" -msgstr "" +msgstr "directorio fuente ha cambiado" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" -msgstr "" +msgstr "Error al escanear los documentos en %s: %r" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" -msgstr "" +msgstr "Dominio %r no está registrado" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "ver %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "ver también %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Símbolos" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." -msgstr "" +msgstr "Debería crear archivo %s." -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2456,352 +2303,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" -msgstr "" +msgstr "sobreescribir archivos existentes" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" -msgstr "" +msgstr "ejecutar la rutina sin crear archivos" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 -msgid "don't create a table of contents file" +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:341 +msgid "don't create a table of contents file" +msgstr "no crear un archivo de tabla de contenido" + +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" -msgstr "" +msgstr "sufijo de archivo (por defecto: rst)" + +#: sphinx/ext/apidoc.py:359 +msgid "generate a full project with sphinx-quickstart" +msgstr "generar un proyecto completo con sphinx-quickstart" #: sphinx/ext/apidoc.py:362 -msgid "generate a full project with sphinx-quickstart" -msgstr "" - -#: sphinx/ext/apidoc.py:365 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." -msgstr "" +msgstr "%s no es un directorio." -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "falta '+' o '-' en la opción '%s'." -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' no es una opción válida." -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' no es una opción pyversion válida" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" -msgstr "" +msgstr "tipo de TestCode inválido" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Directiva Graphviz no puede tener tanto el contenido y un argumento de nombre de archivo" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "Archivo externo Graphviz %r no encontrado o la lectura del mismo fallo" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignorando la directiva \"graphviz\" sin contenido." -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "comando dot %r no se puede ejecutar (necesarios para la salida de graphviz), Compruebe la configuración de graphviz_dot" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "dot salió con error:\n[stderr]\n%s\n[stdout]\n%s" +"%r" +msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "dot no produjo un archivo de salida:\n[stderr]\n%s\n[stdout]\n%s" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "el valor del parámetro graphviz_output_format debe ser uno de 'png', 'svg', pero es %r" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[gráfica: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[gráfica]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "el comando convert %r no puede run.check el valor image_converter" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "convert salió con error:\n[stderr]\n%s\n[stdout]\n%s" +"%r" +msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Enlace permanente a esta ecuación" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(en %s versión %s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "(en %s)" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[fuente]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Por hacer" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" -msgstr "" +msgstr "Marca TODO encontrada: %s" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "<<entrada original>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "(La <<entrada original>> se encuentra en %s, línea %d.)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "entrada original" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[documentos]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Código de módulo" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Código fuente para %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Resumen: código de modulo" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Todos los módulos para los cuales disponen código</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2809,66 +2685,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "Bases: %s" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "alias de :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2883,113 +2778,113 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "Argumentos de palabras clave" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "Ejemplo" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "Ejemplos" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "Notas" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" -msgstr "" +msgstr "Otros parámetros" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" -msgstr "" +msgstr "Referencias" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" -msgstr "" +msgstr "Avisos" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Atención" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Prudencia" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Peligro" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Error" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Consejo" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Importante" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Ver también" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Truco" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Advertencia" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "proviene de la página anterior" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Continúa en la página siguiente" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 #: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" -msgstr "" +msgstr "Tabla de contenido" #: sphinx/themes/agogo/layout.html:51 sphinx/themes/basic/layout.html:153 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 @@ -3001,7 +2896,7 @@ msgstr "Búsqueda" msgid "Go" msgstr "Ir a" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Mostrar el código" @@ -3150,13 +3045,13 @@ msgstr "buscar" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Resultados de la búsqueda" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3198,36 +3093,36 @@ msgstr "Cambios en la API C" msgid "Other changes" msgstr "Otros cambios" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Enlazar permanentemente con este título" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Enlazar permanentemente con esta definición" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Ocultar coincidencias de la búsqueda" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Buscando" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Preparando búsqueda..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Búsqueda finalizada, encontró %s página(s) acorde con la consulta de búsqueda." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", en " @@ -3244,223 +3139,223 @@ msgstr "Contraer barra lateral" msgid "Contents" msgstr "Contenidos" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." -msgstr "" +msgstr "Pie de página [%s] no está referenciado." -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." -msgstr "" +msgstr "Pie de página [#] no está referenciado." -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "más de un objetivo destino encontrado para 'cualquier' referencia cruzada %r: podría ser %s" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "%s:%s destino de referencia no encontrada: %% (destino)s" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "%r destino de referencia no encontrada: %% (destino)s" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "al agregar clases de directiva, no pueden administrarse argumentos adicionales" #: sphinx/util/i18n.py:74 #, python-format msgid "reading error: %s, %s" -msgstr "" +msgstr "leyendo error: %s, %s" #: sphinx/util/i18n.py:81 #, python-format msgid "writing error: %s, %s" -msgstr "" +msgstr "escribiendo error: %s, %s" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 #, python-format -msgid "default role %s not found" +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/util/rst.py:49 +#, python-format +msgid "default role %s not found" +msgstr "rol por defecto %s no encontrado" + +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Enlace permanente a esta tabla" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Enlace permanente a este código fuente" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Enlace permanente a esta imagen" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "Enlace permanente a la tabla de contenidos" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Versión" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "continué en la próxima página" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "página" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" -msgstr "" +msgstr "El título del documento no es un nodo de texto único" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Notas a pie de página" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Clave de configuración desconocida: latex_elements[%r] se ignoran." -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[imagen: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[imagen]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" -msgstr "" +msgstr "tipo de nodo no implementado: %r" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" -msgstr "" +msgstr "tipo de nodo desconocido: %r" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.js b/sphinx/locale/et/LC_MESSAGES/sphinx.js index a8a7147cd..0bdcb9ee2 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "et", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s &8212; %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Autori\u00f5igused</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Autori\u00f5igused %(copyright)s.", ", in ": "", "About these documents": "Info selle dokumentatsiooni kohta", "Automatically generated list of changes in version %(version)s": "Automaatselt genereeritud nimekiri versiooni %(version)s muutustest", "C API changes": "C API muutused", "Changes in Version %(version)s — %(docstitle)s": "Muutused versioonis %(version)s — %(docstitle)s", "Collapse sidebar": "Varja k\u00fclgriba", "Complete Table of Contents": "T\u00e4ielik sisukord", "Contents": "Sisukord", "Copyright": "Autori\u00f5igus", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Loodud <a href=\"http://sphinx-doc.org/\">Sphinxiga</a> (versioon: %(sphinx_version)s).", "Expand sidebar": "N\u00e4ita k\u00fclgriba", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Selle vormi abil saab otsida k\u00e4esolevast dokumentatsioonist. Sisesta allolevasse lahtrisse otsis\u00f5nad ning kl\u00f5psa \"Otsi\". Pane t\u00e4hele, et otsimisfunktsioon otsib automaatselt lehti, mis sisaldavad k\u00f5iki sisestatud s\u00f5nu. V\u00e4hemate s\u00f5nadega lehed otsingutulemustesse ei ilmu.", "Full index on one page": "T\u00e4isindeks \u00fchel lehel", "General Index": "\u00dcldindeks", "Global Module Index": "Globaalne moodulite indeks", "Go": "Otsi", "Hide Search Matches": "Varja otsingu tulemused", "Index": "Indeks", "Index – %(key)s": "Indeks – %(key)s", "Index pages by letter": "Indeksi lehek\u00fcljed algust\u00e4he kaupa", "Indices and tables:": "Indeksid ja tabelid", "Last updated on %(last_updated)s.": "Viimati uuendatud %(last_updated)s.", "Library changes": "Teegi muutused", "Navigation": "Navigatsioon", "Next topic": "J\u00e4rgmine teema", "Other changes": "\u00dclej\u00e4\u00e4nud muutused", "Overview": "\u00dclevaade", "Permalink to this definition": "P\u00fcsiviit sellele definitsioonile", "Permalink to this headline": "P\u00fcsiviit sellele pealkirjale", "Please activate JavaScript to enable the search\n functionality.": "Otsingu v\u00f5imaldamiseks tuleb aktiveerida JavaScript.", "Preparing search...": "Otsingu ettevalmistamine...", "Previous topic": "Eelmine teema", "Quick search": "Kiirotsing", "Search": "Otsing", "Search Page": "Otsinguleht", "Search Results": "Otsingu tulemused", "Search finished, found %s page(s) matching the search query.": "Otsingu tulemusena leiti %s leht(e).", "Search within %(docstitle)s": "Otsi %(docstitle)s piires", "Searching": "Otsimine", "Show Source": "N\u00e4ita l\u00e4htekoodi", "Table of Contents": "", "This Page": "K\u00e4esolev leht", "Welcome! This is": "Tervitused! See on", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Sinu otsingule ei vastanud \u00fckski dokument. Palun veendu, et k\u00f5ik sisestatud s\u00f5nad on \u00f5igesti kirjutatud ja sa oled valikud piisaval hulgal kategooriaid.", "all functions, classes, terms": "k\u00f5ik funktsioonid, klassid ja terminid", "can be huge": "v\u00f5ib olla v\u00e4ga suur", "last updated": "viimati uuendatud", "lists all sections and subsections": "toob v\u00e4lja k\u00f5ik sektsioonid ja alamsektsioonid", "next chapter": "j\u00e4rgmine jaotis", "previous chapter": "eelmine jaotis", "quick access to all modules": "kiire ligip\u00e4\u00e4s k\u00f5igile moodulitele", "search": "otsi", "search this documentation": "otsi sellest dokumentatsioonist", "the documentation for": "dokumentatsioon projektile"}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "et", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s &8212; %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Autori\u00f5igused</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Autori\u00f5igused %(copyright)s.", ", in ": "", "About these documents": "Info selle dokumentatsiooni kohta", "Automatically generated list of changes in version %(version)s": "Automaatselt genereeritud nimekiri versiooni %(version)s muutustest", "C API changes": "C API muutused", "Changes in Version %(version)s — %(docstitle)s": "Muutused versioonis %(version)s — %(docstitle)s", "Collapse sidebar": "Varja k\u00fclgriba", "Complete Table of Contents": "T\u00e4ielik sisukorratabel", "Contents": "Sisukord", "Copyright": "Autori\u00f5igus", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Loodud <a href=\"http://sphinx-doc.org/\">Sphinxiga</a> (versioon: %(sphinx_version)s).", "Expand sidebar": "N\u00e4ita k\u00fclgriba", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Selle vormi abil saab otsida k\u00e4esolevast dokumentatsioonist. Sisesta allolevasse lahtrisse otsis\u00f5nad ning kl\u00f5psa \"Otsi\". Pane t\u00e4hele, et otsimisfunktsioon otsib automaatselt lehti, mis sisaldavad k\u00f5iki sisestatud s\u00f5nu. V\u00e4hemate s\u00f5nadega lehed otsingutulemustesse ei ilmu.", "Full index on one page": "T\u00e4isindeks \u00fchel lehel", "General Index": "\u00dcldindeks", "Global Module Index": "Globaalne moodulite indeks", "Go": "Otsi", "Hide Search Matches": "Varja otsingu tulemused", "Index": "Indeks", "Index – %(key)s": "Indeks – %(key)s", "Index pages by letter": "Indeksi lehek\u00fcljed algust\u00e4he kaupa", "Indices and tables:": "Indeksid ja tabelid:", "Last updated on %(last_updated)s.": "Viimati uuendatud %(last_updated)s.", "Library changes": "Teegi muutused", "Navigation": "Navigatsioon", "Next topic": "J\u00e4rgmine teema", "Other changes": "\u00dclej\u00e4\u00e4nud muutused", "Overview": "\u00dclevaade", "Permalink to this definition": "P\u00fcsiviit sellele definitsioonile", "Permalink to this headline": "P\u00fcsiviit sellele pealkirjale", "Please activate JavaScript to enable the search\n functionality.": "Otsingu v\u00f5imaldamiseks tuleb aktiveerida JavaScript.", "Preparing search...": "Otsingu ettevalmistamine...", "Previous topic": "Eelmine teema", "Quick search": "Kiirotsing", "Search": "Otsing", "Search Page": "Otsinguleht", "Search Results": "Otsingu tulemused", "Search finished, found %s page(s) matching the search query.": "Otsingu tulemusena leiti %s leht(e).", "Search within %(docstitle)s": "Otsi %(docstitle)s piires", "Searching": "Otsimine", "Show Source": "N\u00e4ita l\u00e4htekoodi", "Table of Contents": "Sisukorratabel", "This Page": "K\u00e4esolev leht", "Welcome! This is": "Tervitused! See on", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Sinu otsingule ei vastanud \u00fckski dokument. Palun veendu, et k\u00f5ik sisestatud s\u00f5nad on \u00f5igesti kirjutatud ja sa oled valikud piisaval hulgal kategooriaid.", "all functions, classes, terms": "k\u00f5ik funktsioonid, klassid ja terminid", "can be huge": "v\u00f5ib olla v\u00e4ga suur", "last updated": "viimati uuendatud", "lists all sections and subsections": "toob v\u00e4lja k\u00f5ik sektsioonid ja alamsektsioonid", "next chapter": "j\u00e4rgmine jaotis", "previous chapter": "eelmine jaotis", "quick access to all modules": "kiire ligip\u00e4\u00e4s k\u00f5igile moodulitele", "search": "otsi", "search this documentation": "otsi sellest dokumentatsioonist", "the documentation for": "dokumentatsioon projektile"}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 5b81c1aafa13efe756a03911967d3c9797a3f127..b84d6219bc667d2677854a06142547f2f5a20228 100644 GIT binary patch delta 22843 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 N>xvC#vu_Qp{|0r5RTcmM delta 16922 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 diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index ec60b30bd..0d73a44a7 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -1,18 +1,18 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: # Aivar Annamaa <aivar.annamaa@gmail.com>, 2011 # Ivar Smolin <okul at linux ee>, 2012 -# Ivar Smolin <okul@linux.ee>, 2013-2018 +# Ivar Smolin <okul@linux.ee>, 2013-2019 # Luc Saffre <luc.saffre@gmail.com>, 2015 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" "MIME-Version: 1.0\n" @@ -22,24 +22,24 @@ msgstr "" "Language: et\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" +msgstr "seadistuste kataloog (%s) ei sisalda faili conf.py" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" -msgstr "" +msgstr "Lähtekataloogi (%s) pole võimalik leida" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" -msgstr "" +msgstr "Lähtekataloog ja sihtkataloog ei tohi olla identsed" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" -msgstr "" +msgstr "Sphinx v%s käitamine" #: sphinx/application.py:214 #, python-format @@ -49,95 +49,83 @@ msgid "" msgstr "See projekt vajab vähemalt Sphinxi v%s ja seetõttu pole projekti võimalik käesoleva versiooniga ehitada." #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "primary_domain %r ei leitud, eiratakse." - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " -msgstr "" +msgstr "tõlgete laadimine [%s]... " -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "valmis" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " -msgstr "konserveeritud keskkonna laadimine..." +#: sphinx/application.py:298 +msgid "loading pickled environment" +msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "tõrge: %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "Ehitajat pole valitud, kasutatakse vaikimisi ehitajat: html" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "oli edukas" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "lõppes probleemidega" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "ehitamine %s, %s hoiatus." -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "ehitamine %s." -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" -msgstr "laienduse %s ülesseadmine: direktiiv %r on juba registeeritud, see kirjutatakse üle" - -#: sphinx/application.py:749 sphinx/application.py:770 -#, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:677 sphinx/application.py:696 +#, python-format +msgid "role %r is already registered, it will be overridden" +msgstr "" + +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -145,7 +133,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -153,60 +141,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" -msgstr "vigane number %r seadistuse väärtusele %r, eiratakse" +msgstr "vigane arv %r seadistuse väärtusele %r, eiratakse" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "Puudub määratud seadistusväärtus: %s" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "Seadistuste väärtus %r on juba olemas" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" -msgstr "" +msgstr "Seadistusfail (või mõni selle poolt imporditud moodulitest) kutsus välja sys.exit()" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -214,833 +196,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "Sektsioon %s" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "Joonis %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Nimekiri %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "primary_domain %r ei leitud, eiratakse." + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Ehitaja klassil %s puudub atribuut \"name\"" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Ehitaja %r on juba olemas (moodulis %s)" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "Ehitajat nimega %s pole registreeritud" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "domeen %s on juba registreeritud" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "domeen %s pole veel registreeritud" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" -msgstr "source_parser %r jaoks on juba registreeritud" +msgstr "source_parser on %r jaoks juba registreeritud" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "Lähtekoodi analüsaatorit pole %s jaoks registreeritud" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" -msgstr "source_input %r jaoks on juba registreeritud" +msgstr "source_input on %r jaoks juba registreeritud" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" -msgstr "source_input pole %s jaoks registreeritud" - -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "Algne erind:\n" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "Laiendust %s pole võimalik importida" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "erindil %r puudub funktsioon setup(); kas see on päriselt Sphinxi laiendusmoodul?" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Pythoni täiustusettepanekud; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "teemal %r puudub \"theme\" säte" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "teemal %r puudub \"inherit\" säte" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "fail %r teemarajal pole korrektni zip-fail või ei sisalda see teemat" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "teemat nimega %r ei leitud (kas theme.conf on puudu?)" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " -msgstr "" +msgstr "ehitamine [mo]: " -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " -msgstr "" +msgstr "väljundi kirjutamine... " -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" -msgstr "" +msgstr "kõik lähtefailid" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" -msgstr "" +msgstr "ehitamine [%s]" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " -msgstr "" +msgstr "praeguseks aegunud failide otsimine... " -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" -msgstr "" +msgstr "leitud %d" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" +msgstr "ei leitud" + +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " -msgstr "" - -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "kujutiste kopeerimine... " + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." -msgstr "" +msgstr "Ülevaatefail asub kataloogis %(outdir)s." -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." +msgstr "versioonis %s pole muutusi." + +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Sisseehitatud" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Mooduli tase" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." -msgstr "" +msgstr "lähtefailide kopeerimine..." -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." -msgstr "" +msgstr "Sõnumikataloogid asuvad kataloogis %(outdir)s." -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " -msgstr "" +msgstr "ehitamine [%s]: " -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " -msgstr "" +msgstr "mallide lugemine... " -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " -msgstr "" +msgstr "sõnumikataloogide kirjutamine... " -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." -msgstr "" +msgstr "HTML-lehed asuvad kataloogis %(outdir)s." -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d. %b %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Üldindeks" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "indeks" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "järgmine" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "eelmine" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." -msgstr "" +msgstr "indeksite genereerimine..." -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." -msgstr "" +msgstr "lisalehtede kirjutamine..." -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " -msgstr "" +msgstr "staatiliste failide kopeerimine... " -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" -msgstr "" +msgstr "logofaili %r pole olemas" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" -msgstr "" +msgstr "staatilist faili %r pole võimalik kopeerida" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " -msgstr "" +msgstr "lisafailide kopeerimine... " -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" -msgstr "" +msgstr "viga faili %s kirjutamisel: %s" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " -msgstr "" +msgstr "objektide loendi tõmmistamine... " -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " -msgstr "" +msgstr "otsinguindeksi %s tõmmistamine ... " -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentatsioon" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" -msgstr "" +msgstr "Otsi vigu ülalolevast väljundist või failist %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1048,194 +919,216 @@ msgstr "" #: sphinx/builders/manpage.py:43 #, python-format msgid "The manual pages are in %(outdir)s." -msgstr "" +msgstr "Juhendi lehed asuvad kataloogis %(outdir)s." #: sphinx/builders/manpage.py:51 msgid "no \"man_pages\" config value found; no manual pages will be written" +msgstr "seadistusparameetrit \"man_pages\" ei leitud, juhendi lehti ei kirjutata" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." +msgstr "HTML-leht asub kataloogis %(outdir)s." + +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." -msgstr "" +msgstr "Texinfo failid asuvad kataloogis %(outdir)s." -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" -msgstr "" +msgstr "seadistusparameetrit \"texinfo_documents\" ei leitud, dokumente ei kirjutata" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." -msgstr "" +msgstr "viidete lahendamine..." -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (pealkirjas " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." -msgstr "" +msgstr "Tekstifailid asuvad kataloogis %(outdir)s." -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." -msgstr "" +msgstr "XML-failid asuvad kataloogis %(outdir)s." -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." -msgstr "" +msgstr "PseudoXML-failid asuvad kataloogis %(outdir)s." -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." -msgstr "" +msgstr "LaTeX-failid asuvad kataloogis %(outdir)s." -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." -msgstr "" +msgstr "\nNende jooksutamiseks läbi (pdf)latex programmi käivita selles kataloogis\n'make' (selle automaatseks tegemiseks kasuta `make latexpdf')." -#: sphinx/builders/latex/__init__.py:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" -msgstr "" +msgstr "seadistusparameetrit \"latex_documents\" ei leitud, dokumente ei kirjutata" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" +msgstr "seadistusparameeter \"latex_documents\" viitab tundmatule dokumendile %s" + +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Indeks" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Redaktsioon" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." +msgstr "TeX-i tugifailide kopeerimine..." + +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." -msgstr "" - -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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 "" +msgstr "Kui see oli kasutaja viga, siis anna palun sellest teada, et tulevikus oleks võimalik parem veateade väljastada." -#: sphinx/cmd/build.py:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" -msgstr "" +msgstr "Vearaportit on võimalik esitada jälguris aadressil <https://github.com/sphinx-doc/sphinx/issues>. Aitäh!" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." -msgstr "" +msgstr "Lisateabe jaoks külasta <http://sphinx-doc.org/>." -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1252,293 +1145,287 @@ msgid "" "\n" "By default, everything that is outdated is built. Output only for selected\n" "files can be built by specifying individual filenames.\n" -msgstr "" +msgstr "\nDokumentatsiooni genereerimine lähtefailidest.\n\nsphinx-build genereerib dokumentatsiooni kataloogis SOURCEDIR asuvatest\nfailidest ja paneb selle kataloogi OUTPUTDIR. Seadistusparameetrite lugemiseks\notsitakse SOURCEDIR kataloogist faili 'conf.py'. Mallifailide, kaasa arvatud\nconf.py genereerimiseks võib kasutada vahendit 'sphinx-quickstart'.\n\nsphinx-build suudab luua dokumentatsiooni erinevates vormingutes. Vormingu\nvalimiseks määratakse käsurealt ehitaja nimi, vaikimisi on selleks HTML.\nEhitaja võib läbi viia ka teisi dokumentatsiooni töötlemiseks vajalikke\ntoiminguid.\n\nVaikimisi ehitatakse kõik, mis on uuenenud. Üksikute failinimede määramisega\nsaab ainult valitud failidest genereeritud väljundit.\n" + +#: sphinx/cmd/build.py:128 +msgid "path to documentation source files" +msgstr "dokumentatsiooni lähtefailide rada" + +#: sphinx/cmd/build.py:130 +msgid "path to output directory" +msgstr "väljundkataloogi rada" #: sphinx/cmd/build.py:132 -msgid "path to documentation source files" -msgstr "" - -#: sphinx/cmd/build.py:134 -msgid "path to output directory" -msgstr "" - -#: sphinx/cmd/build.py:136 msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "" +msgstr "määratud failide uuestiehitamine. Võtme -a korral eiratakse" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" -msgstr "" +msgstr "üldsuvandid" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" -msgstr "" +msgstr "kasutatav ehitaja (vaikimisi: html)" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" -msgstr "" +msgstr "kõikide failide kirjutamine (vaikimisi kirjutatakse ainult uued ja muutunud failid)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" -msgstr "" +msgstr "salvestatud keskkonda ei kasutata, alati loetakse kõik failid" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" -msgstr "" +msgstr "puhverdatud keskkonna ja dokumendipuu rada (vaikimisi: OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" -msgstr "" +msgstr "rööbiti ehitamine N protsessiga, kui võimalik (eriväärtus \"auto\" määrab N väärtuseks protsessorite arvu)" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" -msgstr "" +msgstr "seadistusfaili (conf.py) asukoha rada (vaikimisi sama mis SOURCEDIR)" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" -msgstr "" +msgstr "seadistusfaili ei kasutata üldse, ainult -D suvandid" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" -msgstr "" +msgstr "seadistusfailis määratud väärtuse asendamine" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" -msgstr "" +msgstr "väärtuse edastamine HTML-mallidesse" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" -msgstr "" +msgstr "konsooliväljundi suvandid" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" -msgstr "" +msgstr "hoiatuste (ja vigade) kirjutamine määratud faili" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" -msgstr "" +msgstr "hoiatuste muutmine vigadeks" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" -msgstr "" +msgstr "erindi korral täieliku tagasijälituse näitamine" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" -msgstr "" +msgstr "erindi korral Pdb käivitamine" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" -msgstr "" +msgstr "faile %r pole võimalik leida" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" -msgstr "" +msgstr "suvandit -a ja failinimesid pole võimalik kombineerida" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" -msgstr "" +msgstr "hoiatuste faili %r pole võimalik avada: %s" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" -msgstr "" +msgstr "-D suvandi argument peab olema vormingus nimi=väärtus" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" -msgstr "" +msgstr "-A suvandi argument peab olema vormingus nimi=väärtus" + +#: sphinx/cmd/quickstart.py:52 +msgid "automatically insert docstrings from modules" +msgstr "moodulite dokumentatsioonistringide automaatne lisamine" + +#: sphinx/cmd/quickstart.py:53 +msgid "automatically test code snippets in doctest blocks" +msgstr "dokumentatsioonistringides olevate koodijuppide automaattestimine" + +#: sphinx/cmd/quickstart.py:54 +msgid "link between Sphinx documentation of different projects" +msgstr "eri projektide Sphinx-dokumentatsiooni omavaheline viitamine" + +#: sphinx/cmd/quickstart.py:55 +msgid "write \"todo\" entries that can be shown or hidden on build" +msgstr "\"teha\" sissekannete kirjutamine, mida võib ehitamisega peita või näidata" #: sphinx/cmd/quickstart.py:56 -msgid "automatically insert docstrings from modules" -msgstr "" +msgid "checks for documentation coverage" +msgstr "dokumentatsiooni katvuse kontrollid" #: sphinx/cmd/quickstart.py:57 -msgid "automatically test code snippets in doctest blocks" -msgstr "" +msgid "include math, rendered as PNG or SVG images" +msgstr "matemaatika kaasamine, mis renderdatakse PNG- või SVG-kujutisteks" #: sphinx/cmd/quickstart.py:58 -msgid "link between Sphinx documentation of different projects" -msgstr "" +msgid "include math, rendered in the browser by MathJax" +msgstr "matemaatika kaasamine, mis renderdatakse veebisirvikus MathJax-i abil" #: sphinx/cmd/quickstart.py:59 -msgid "write \"todo\" entries that can be shown or hidden on build" -msgstr "" - -#: sphinx/cmd/quickstart.py:60 -msgid "checks for documentation coverage" -msgstr "" +msgid "conditional inclusion of content based on config values" +msgstr "sisu tingimuslik kaasamine seadistusparameetrite alusel" #: sphinx/cmd/quickstart.py:61 -msgid "include math, rendered as PNG or SVG images" -msgstr "" - -#: sphinx/cmd/quickstart.py:62 -msgid "include math, rendered in the browser by MathJax" -msgstr "" +msgid "include links to the source code of documented Python objects" +msgstr "dokumenteeritud Python-objektide lähtekoodile viitamise kaasamine" #: sphinx/cmd/quickstart.py:63 -msgid "conditional inclusion of content based on config values" -msgstr "" - -#: sphinx/cmd/quickstart.py:65 -msgid "include links to the source code of documented Python objects" -msgstr "" - -#: sphinx/cmd/quickstart.py:67 msgid "create .nojekyll file to publish the document on GitHub pages" -msgstr "" +msgstr ".nojekyll faili loomine dokumentide avaldamiseks GitHub-i lehtedel" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." -msgstr "" +msgstr "Palun sisesta mingi tekst." -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." -msgstr "" +msgstr "Palun sisesta kas 'y' või 'n'." -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." -msgstr "" +msgstr "Tere tulemast kasutama Sphinx %s lendstardi utiliiti." -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." -msgstr "" +msgstr "\nPalun sisesta järgnevate sätete väärtused (sulgudes oleva võimaliku\nvaikimisi väärtusega nõustumisel vajuta lihtsalt Enterit)." -#: sphinx/cmd/quickstart.py:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" -msgstr "" +msgstr "\nValitud juurkataloog: %s" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." -msgstr "" +msgstr "Viga: valitud juurkataloogist leiti olemasolev conf.py." -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." -msgstr "" +msgstr "sphinx-quickstart ei kirjuta olemasolevaid Sphinx-projekte üle." -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" -msgstr "" +msgstr "Palun sisesta uus juurkataloog (või vajuta Enter lõpetamiseks)" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "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 "" +msgstr "\nSul on Sphinxi väljundile ehitamiskataloogi loomiseks kaks võimalust.\nSa võid kasutada kas juurkataloogi alamkataloogi \"_build\" või\njuurkataloogi eraldi alamkatalooge \"source\" ja \"build\"." -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" -msgstr "" +msgstr "Lähtekoodi ja ehitamise kataloogide eraldamine (y/n)" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "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 "" +msgstr "\nJuurkataloogis luuakse kaks või enam kataloogi: \"_templates\" kohandatud\nHTML-mallidele ja \"_static\" kohandatud laaditabelitele ning muudele\nstaatilistele failidele. Sa võid allkriipsu asendamiseks valida mõne teise\neesliite (näiteks \".\")." -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" -msgstr "" +msgstr "Mallide ja staatilise kataloogi nime eesliide" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." -msgstr "" +msgstr "\nProjekti nimi esineb valmisehitatud dokumentatsioonis mitmes kohas." -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" -msgstr "" +msgstr "Projekti nimi" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" -msgstr "" +msgstr "Autorite nimed" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1548,15 +1435,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" -msgstr "" +msgstr "Projekti versioon" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" -msgstr "" +msgstr "Projekti väljalase" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1565,119 +1452,119 @@ msgid "" "\n" "For a list of supported codes, see\n" "http://sphinx-doc.org/config.html#confval-language." -msgstr "" +msgstr "\nKui su dokumendid pole kirjutatud inglise keeles, siis võid siin määrata\nkeele vastava keelekoodi abil. Sel juhul tõlgib Sphinx enda genereeritud\nteksti vastavasse keelde.\n\nToetatud keelekoodide kohta vaata\nhttp://sphinx-doc.org/config.html#confval-language." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" -msgstr "" +msgstr "Projekti keel" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." -msgstr "" +msgstr "\nLähtefailide failinime järelliide. Üldiselt on see kas \".txt\" või \n\".rst\". Ainult selle järelliitega faile arvestatakse dokumentidena." -#: sphinx/cmd/quickstart.py:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" -msgstr "" +msgstr "Lähtefaili järelliide" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "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 "" +msgstr "\nÜks dokument on eriline, kuna on \"sisukorrapuu\" ülemine sõlm,\nmis tähendab juurt dokumentide hierarhilises struktuuris.\nHarilikult on selleks \"index\", kuid kui sinu \"index\" dokument\non kohandatud mall, võid sa selleks määrata mõne muu failinime." -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" -msgstr "" +msgstr "Sinu põhidokumendi nimi (ilma järelliiteta)" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." -msgstr "" +msgstr "Märkus: imgmath ja mathjax ei saa korraga lubatud olla. imgmath eemaldati valikust." -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "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 "" +msgstr "\nSulle on võimalik genereerida Makefile ja Windowsi käsufail. Nii saad sa\nsphinx-build täieliku käsu asemel käivitada lihtsalt näiteks `make html'." -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" -msgstr "" +msgstr "Kas luua Makefile? (y/n)" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" -msgstr "" +msgstr "Kas luua Windowsi käsufail? (y/n)" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." -msgstr "" +msgstr "Faili %s loomine." -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." -msgstr "" +msgstr "Fail %s on juba olemas ja jäetakse vahele." -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." -msgstr "" +msgstr "Lõpetamine: Algne kataloogistruktuur on loodud." -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" "You should now populate your master file %s and create other documentation\n" "source files. " -msgstr "" +msgstr "\nSa peaks nüüd asustama oma põhidokumendi %s ja looma ülejäänud\ndokumentatsiooni lähtefailid. " -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" -msgstr "" +msgstr "Kasuta Makefile'i dokumentide ehitamiseks, näiteks:\n make ehitaja\n" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" -msgstr "" +msgstr "kus \"ehitaja\" on mõni toetatud ehitaja, näiteks html, latex või linkcheck.\n" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1685,216 +1572,216 @@ msgid "" "sphinx-quickstart is an interactive tool that asks some questions about your\n" "project and then generates a complete documentation directory and sample\n" "Makefile to be used with sphinx-build.\n" -msgstr "" +msgstr "\nSphinx-projekti jaoks vajalike failide genereerimine.\n\nsphinx-quickstart on interaktiivne tööriist, mis küsib mõned küsimused Sinu\nprojekti kohta ja seepeale genereerib täieliku dokumentatsioonikataloogi ning\nnäidis-Makefile kasutamiseks koos sphinx-buildiga.\n" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" -msgstr "" +msgstr "vaikne režiim" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" -msgstr "" +msgstr "väljundi rada" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" -msgstr "" +msgstr "Struktuuri suvandid" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" -msgstr "" +msgstr "kasutamise korral eraldatakse lähtefailide ja ehitamise kataloogid" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" -msgstr "" +msgstr "Projekti põhisuvandid" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" -msgstr "" +msgstr "projekti nimi" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" -msgstr "" +msgstr "autorite nimed" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" -msgstr "" +msgstr "projekti versioon" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" -msgstr "" +msgstr "projekti väljalase" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" -msgstr "" +msgstr "dokumendi keel" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" -msgstr "" +msgstr "lähtefaili järelliide" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" -msgstr "" +msgstr "põhidokumendi nimi" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" -msgstr "" +msgstr "Laienduste suvandid" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" -msgstr "" +msgstr "laienduse %s lubamine" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" -msgstr "" +msgstr "suvaliste laienduste määramine" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" -msgstr "" +msgstr "Makefile ja Batchfile loomine" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" -msgstr "" +msgstr "makefile loomine" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" -msgstr "" +msgstr "makefile loomata jätmine" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" -msgstr "" +msgstr "batchfile loomine" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" -msgstr "" +msgstr "batchfile loomata jätmine" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" -msgstr "" +msgstr "Projekti loomine mallist" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" -msgstr "" +msgstr "mallifailide kataloog" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" -msgstr "" +msgstr "malli muutuja kirjeldamine" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "Vigane selgitustekst: %s" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" -msgstr "Võtmeid \"%s\" ja \"%s\" pole võimalik korraga kasutada" +msgstr "Suvandeid \"%s\" ja \"%s\" pole võimalik korraga kasutada" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " -msgstr "Sektsiooni autor:" +msgstr "Sektsiooni autor: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " -msgstr "Mooduli autor:" +msgstr "Mooduli autor: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " -msgstr "Koodi autor:" +msgstr "Koodi autor: " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Autor: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parameetrid" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Tagastab" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Tagastustüüp" @@ -1923,12 +1810,12 @@ msgstr "%s (C tüüp)" msgid "%s (C variable)" msgstr "%s (C muutuja)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "funktsioon" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "liige" @@ -1936,7 +1823,7 @@ msgstr "liige" msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "tüüp" @@ -1944,297 +1831,262 @@ msgstr "tüüp" msgid "variable" msgstr "muutuja" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Uus versioonis %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Muudetud versioonis %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Iganenud alates versioonist %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "Malli parameetrid" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ tüüp)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++ liige)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++ funktsioon)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++ klass)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (C++ loend)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "klass" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "loend" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (sisseehitatud funktsioon)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s meetod)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (klass)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globaalmuutuja või konstant)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribuut)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Argumendid" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (moodul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "meetod" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "andmed" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "atribuut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "moodul" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "võrrandil %s on topeltsilt, teine instants on %s" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "võtmesõna" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operaator" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "erind" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "lause" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "sisseehitatud funktsioon" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Muutujad" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moodulis %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (sisseehitatud muutuja)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (moodulis %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (sisseehitatud klass)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (klass moodulis %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s meetod)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s staatiline meetod)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s staatiline meetod)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (klassi %s.%s meetod)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassi %s meetod)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atribuut)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Pythoni moodulite indeks" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "moodulid" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Iganenud" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "klassi meetod" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "staatiline meetod" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (iganenud)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (direktiiv)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (roll)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "direktiiv" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "roll" @@ -2243,209 +2095,200 @@ msgstr "roll" msgid "environment variable; %s" msgstr "keskkonnamuutuja; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" -msgstr "%s käsurea valik; %s" +msgstr "%s käsurea suvand; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "sõnastiku termin" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "grammatika märk" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "viite silt" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "keskkonnamuutuja" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" -msgstr "programmi valik" +msgstr "programmi suvand" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Indeks" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Mooduli indeks" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Otsinguleht" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" -msgstr "" +msgstr "dokument pole ühegi sisukorrapuu osa" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "vaata %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "vaata ka %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Sümbolid" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" -msgstr "" +msgstr "kujutise fail pole loetav: %s" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" -msgstr "" +msgstr "kujutise fail %s pole loetav: %s" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2457,352 +2300,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" -msgstr "" +msgstr "laienduse suvandid" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." -msgstr "" +msgstr "%s pole kataloog." -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." -msgstr "" +msgstr "Lähtefailide doctest-testimine lõpetas, vaata tulemusi failist %(outdir)s/output.txt." -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz direktiivil ei tohi samaaegselt olla argumendid content ja filename" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "Välist Graphviz-faili %r ei leitud või esines tõrge selle lugemisel" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "Ilma sisuta \"graphviz\" direktiivi eiramine." -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "dot käsku %r pole võimalik käivitada (vajalik graphvizi väljundi jaoks), kontrolli graphviz_dot sätteid" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "dot lõpetas veaga:\n[stderr]\n%s\n[stdout]\n%s" +"%r" +msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "dot ei loonud väljundfaili:\n[stderr]\n%s\n[stdout]\n%s" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format peab olema kas 'png' või 'svg', kuid mitte %r" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[joonis: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[joonis]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "convert käsku %r pole võimalik käivitada. kontrolli image_converter sätteid" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "convert lõpetas veaga:\n[stderr]\n%s\n[stdout]\n%s" +"%r" +msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Püsiviit sellele võrrandile" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(projektis %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[lähtekood]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Teha" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" -msgstr "" +msgstr "Leitud TEHA kirje: %s" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "<<algne kirje>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" -msgstr "(<<algne kirje>> asub %s, real %d.)" +msgstr "(<<algne kirje>> asub failis %s, real %d.)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "algne kirje" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[dokumentatsioon]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Mooduli kood" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>%s lähtekood</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Ülevaade: mooduli kood" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Kõik lähtekoodiga moodulid</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2810,66 +2682,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "Põlvnemine: %s" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "klassi :class:`%s` sünonüüm" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" -msgstr "" +msgstr "[autosummary] automaatkokkuvõtte genereerimine failile: %s" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" -msgstr "" +msgstr "[autosummary] kirjutamine kataloogi %s" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2884,113 +2775,113 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" -msgstr "" +msgstr "lähtefailid, mille kohta rST-faile genereerida" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" -msgstr "" +msgstr "väljundfailide kataloog" + +#: sphinx/ext/autosummary/generate.py:390 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "failide vaikimisi järelliide (vaikimisi: %(default)s)" #: sphinx/ext/autosummary/generate.py:394 #, python-format -msgid "default suffix for files (default: %(default)s)" -msgstr "" +msgid "custom template directory (default: %(default)s)" +msgstr "kohandatud mallide kataloog (vaikimisi: %(default)s)" #: sphinx/ext/autosummary/generate.py:398 #, python-format -msgid "custom template directory (default: %(default)s)" -msgstr "" - -#: sphinx/ext/autosummary/generate.py:402 -#, python-format msgid "document imported members (default: %(default)s)" -msgstr "" +msgstr "imporditud liikmete dokumenteerimine (vaikimisi: %(default)s)" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "Võtmesõnadega argumendid" -#: sphinx/ext/napoleon/docstring.py:626 -msgid "Example" -msgstr "" - #: sphinx/ext/napoleon/docstring.py:627 +msgid "Example" +msgstr "Näide" + +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" -msgstr "" +msgstr "Näited" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" -msgstr "" +msgstr "Märkused" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Tähelepanu" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Ettevaatust" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Oht" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Viga" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Vihje" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Tähtis" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Märkus" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Vaata ka" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Nõuanne" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Hoiatus" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "jätk eelmisele leheküljele" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Jätkub järgmisel lehel" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 #: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" -msgstr "" +msgstr "Sisukorratabel" #: sphinx/themes/agogo/layout.html:51 sphinx/themes/basic/layout.html:153 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 @@ -3002,7 +2893,7 @@ msgstr "Otsing" msgid "Go" msgstr "Otsi" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Näita lähtekoodi" @@ -3024,11 +2915,11 @@ msgstr "viimati uuendatud" #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" -msgstr "Indeksid ja tabelid" +msgstr "Indeksid ja tabelid:" #: sphinx/themes/basic/defindex.html:23 msgid "Complete Table of Contents" -msgstr "Täielik sisukord" +msgstr "Täielik sisukorratabel" #: sphinx/themes/basic/defindex.html:24 msgid "lists all sections and subsections" @@ -3151,13 +3042,13 @@ msgstr "otsi" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Otsingu tulemused" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3199,36 +3090,36 @@ msgstr "C API muutused" msgid "Other changes" msgstr "Ülejäänud muutused" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Püsiviit sellele pealkirjale" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Püsiviit sellele definitsioonile" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Varja otsingu tulemused" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Otsimine" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Otsingu ettevalmistamine..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Otsingu tulemusena leiti %s leht(e)." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3245,76 +3136,89 @@ msgstr "Varja külgriba" msgid "Contents" msgstr "Sisukord" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3328,140 +3232,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Püsiviit sellele tabelile" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Püsiviit sellele programmikoodile" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Püsiviit sellele pildile" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "Püsiviit sellele sisukorrapuule" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Redaktsioon" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "jätkub järgmisel leheküljel" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "lehekülg" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Joonealused märkused" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Tundmatu seadistusvõti: latex_elements[%r] eiratakse." -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[pilt: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[pilt]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.js b/sphinx/locale/eu/LC_MESSAGES/sphinx.js index 2d5c43c58..b950c1aef 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "eu", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "Dokumentu hauen inguruan", "Automatically generated list of changes in version %(version)s": "Automatikoki sortutako %(version)s bertsioaren aldaketen zerrenda", "C API changes": "C API aldaketak", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Alboko barra tolestu", "Complete Table of Contents": "Eduki taula osoa", "Contents": "Edukiak", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s erabiliz sortutakoa.", "Expand sidebar": "Alboko barra luzatu", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Honekin dokumentu hauetan bilatu dezakezu. Sartu zure bilaketa hitzak\nondoko kutxan eta \"bilatu\" sakatu. Kontutan eduki bilaketa funtzioak\nhitz guztiak bilatuko dituela. Hitz gutxiago dituzten orriak ez dira \nemaitzen zerrendan agertuko.", "Full index on one page": "Indize guztia orri batean", "General Index": "Indize orokorra", "Global Module Index": "Modulu indize globala", "Go": "Joan", "Hide Search Matches": "Bilaketa bat-etortzeak ezkutatu", "Index": "Indizea", "Index – %(key)s": "Indizea – %(key)s", "Index pages by letter": "Indize orriak hizkika", "Indices and tables:": "Indizeak eta taulak:", "Last updated on %(last_updated)s.": "Azken aldaketa: %(last_updated)s.", "Library changes": "Liburutegi aldaketak", "Navigation": "Nabigazioa", "Next topic": "Hurrengo gaia", "Other changes": "Beste aldaketak", "Overview": "Gainbegirada", "Permalink to this definition": "Definizio honetarako esteka iraunkorra", "Permalink to this headline": "Goiburu honetarako esteka iraunkorra", "Please activate JavaScript to enable the search\n functionality.": "Mesedez, gaitu JavaScript-a bilaketa erabili ahal izateko.", "Preparing search...": "", "Previous topic": "Aurreko gaia", "Quick search": "Bilaketa azkarra", "Search": "Bilatu", "Search Page": "Bilaketa orria", "Search Results": "Bilaketa emaitzak", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Bilatu %(docstitle)s(e)n", "Searching": "", "Show Source": "Iturburua ikusi", "Table of Contents": "", "This Page": "Orri hau", "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": "funtzio, klase, termino guztiak", "can be huge": "handia izan daiteke", "last updated": "", "lists all sections and subsections": "atal eta azpiatal guztiak zerrendatu", "next chapter": "hurrengo kapitulua", "previous chapter": "aurreko kapitulua", "quick access to all modules": "modulu guztietara atzipen azkarra", "search": "bilatu", "search this documentation": "dokumentazio honetan bilatu", "the documentation for": ""}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "eu", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "Dokumentu hauen inguruan", "Automatically generated list of changes in version %(version)s": "Automatikoki sortutako %(version)s bertsioaren aldaketen zerrenda", "C API changes": "C API aldaketak", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Alboko barra tolestu", "Complete Table of Contents": "Eduki taula osoa", "Contents": "Edukiak", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s erabiliz sortutakoa.", "Expand sidebar": "Alboko barra luzatu", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Honekin dokumentu hauetan bilatu dezakezu. Sartu zure bilaketa hitzak\nondoko kutxan eta \"bilatu\" sakatu. Kontutan eduki bilaketa funtzioak\nhitz guztiak bilatuko dituela. Hitz gutxiago dituzten orriak ez dira \nemaitzen zerrendan agertuko.", "Full index on one page": "Indize guztia orri batean", "General Index": "Indize orokorra", "Global Module Index": "Modulu indize globala", "Go": "Joan", "Hide Search Matches": "Bilaketa bat-etortzeak ezkutatu", "Index": "Indizea", "Index – %(key)s": "Indizea – %(key)s", "Index pages by letter": "Indize orriak hizkika", "Indices and tables:": "Indizeak eta taulak:", "Last updated on %(last_updated)s.": "Azken aldaketa: %(last_updated)s.", "Library changes": "Liburutegi aldaketak", "Navigation": "Nabigazioa", "Next topic": "Hurrengo gaia", "Other changes": "Beste aldaketak", "Overview": "Gainbegirada", "Permalink to this definition": "Definizio honetarako esteka iraunkorra", "Permalink to this headline": "Goiburu honetarako esteka iraunkorra", "Please activate JavaScript to enable the search\n functionality.": "Mesedez, gaitu JavaScript-a bilaketa erabili ahal izateko.", "Preparing search...": "", "Previous topic": "Aurreko gaia", "Quick search": "Bilaketa azkarra", "Search": "Bilatu", "Search Page": "Bilaketa orria", "Search Results": "Bilaketa emaitzak", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Bilatu %(docstitle)s(e)n", "Searching": "", "Show Source": "Iturburua ikusi", "Table of Contents": "", "This Page": "Orri hau", "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": "funtzio, klase, termino guztiak", "can be huge": "handia izan daiteke", "last updated": "", "lists all sections and subsections": "atal eta azpiatal guztiak zerrendatu", "next chapter": "hurrengo kapitulua", "previous chapter": "aurreko kapitulua", "quick access to all modules": "modulu guztietara atzipen azkarra", "search": "bilatu", "search this documentation": "dokumentazio honetan bilatu", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 1c514a9b33c1a2952e577120311df059fb00bed4..59a014da65836f88e3163bcd58af15cab6d38db7 100644 GIT binary patch delta 14021 zcmeI$d3aPszW?#lWFZ8?64r$65D6e8Az_t7kVT9P`@RZvNQXp{bWA6KfY_p-0<w98 zh%yKwsHljv$f5{13JRjApr8yR0s}6%3o0o0{YjlW<IMdnbD!tl`~3d+%`^I{Z}sUq zRp0tnCFa9T;YU}62T#U^FSq#LvsEms3C^vr=<omgvaMx3M0f#P<2~*8$75NWa4FyE zoXltR?`v;ajp%<N)v~@IK9puzeTjE;u&jo7wWDRtq`zTj%PPhPFyFF*Rzw#%=_tnb zJh%Yo6YuP5S%1JAud}QJxCF=HxNerkyREGlgQqY8zeeV0{fOPsPPZ(EuqNWoxB_p$ zzhDA3&#<g&yx;0gBZ`gzn1~}$1I<DWyaDUtGgt@rU_E>fYvDPpftOGd3cud6s$(qb z^JZ?Gf*L0s8{i<U&HF7Mjha}7HqJx6Xaj1X?N|+8b3cC@hZBE|y|53<)qwL{S7B}9 z5Gu2;VH}=7P2eKNV{{Ml--t#c4XvOD>Vf{qwpx==UtEOjiuD9G$CKC?f5Vm-PhNN6 z4cHNXMom1qr)5>eZa5ixp)&dyQXbZmJ;}csAJLJCHCRq8jzH?jnu>bSLzsmxpz5<> zZ!@7}RGf`A&O~ME5!dyo%sz+O;#ZJ4Tl?M5Bl`p`s|_8s`xv`nGvX{{5!M{k7x$v} z_5ilPV@N$(zo2TS<BeveV^I_GVkexAHa>&;{vp)Xe2m(HFM~9i)2Q0lyr?y5FH=z~ z$;3n)>N*{p68{k?Wa}kVm0v`CFXbjv-F<N&aW1NsUc^Xz1EcXBRAz%8xs8iRcCA?U zp&yRG$+#L-#aA%`Yu(I|#QMnpt#SOTKdwX7($`oOqZlL#Ya>V9ibK`bVAPgOK_(Wo zifJg7b5XUh3ls2b*VsQ;)-}YPQ3H=fZGjh+fxA%|d<AVhiPi8b>c!PGI}h85%23Y% zW-CTxU7dd)jVgRlj%=rOd*uh5a||awf+=_$wWm?!RWIm{>d!=FrVO?Bx4S-o%G8sn zm0xi646>~8#PzW$@3(GK1DBxo>RB9%yHP8R8*H{91G!DD{uqsSpe8&Ym4QQ8h!>D@ zuqF&K$NDj>Mf@D<SnhWF4`MKxj$<_1VB}CUaC_85(%pCf>hsa4J-!o_nUy#WSEDlU zGbZ6x)D4+5%v5_Xj3FL|`u=28ZIllq|4P|ibZA8nq4sDUHo={!WAdTvcc>dJX1FmC zbwPE<RyZ0t+SVPIhkLODwi{uJdLn8IpG0Ns&m+jc8o$z^ft!vrcE-BI1F<H0u|5`I zZM+9-U<E3*k7F#p;Kut=Mf)MP#LKAh>`~@>oiLKPSCEDVycv~&v8XD~M(tI;8_z&Z z^iI@^)}RImVLjZ5dj1{Mgg-`pJXoKj&Ux$6rfB=1-ZK#O-ryJ-+KW7FhsCIYR-+#` zqOQ#NG3Lc%Q7g;GI=B?e@G;cH<EUIss0C`=E~w{jKxJSk@_)<6zo?y{wVOs;I^u~s zVqa{J<*1^23RCbsq)sglXQv2<p)&F()G0ZQx;G*wn3T6cn|L7lun-x-I)a0+{ViN_ zI{$aj=ugM{n260Mnt}TwV_H7ciuYn`JnP0WlT4h3n!s4>j<c{U?m*oW-{K>98MCos zGKGp)uq;SpgxBolK@1~)4|TjgKpQ{C&Ugitp$=K*l;mJz;@PN`uS8AYWz<T4K}}%f z6tgvxP{(vC>X;T_P(|=Cjcf5~tdB=g#q|X)!0%9Bn9cO{!i}iU_n~U#5Nhv_yYVSE zzJRKMA5kg)4Hx1-_TvUU?<4=ZfZ}q@In6{B&rEEJOHkGRENY^Aup7RM@mPJTSz#;G zaZE*}wmWLV%Tee5RU{eKkC=&La?N|z<dT1_cq<)B)j?DZ9L33a88wj!dFJ<mnW&p= zCF<Ni;kpe~<@-??IgYLHEVjfNx0;J84K-eW)B^H?G_>Nm*c?}4FWiCJ!^@})jhbdA zFc+H;uS0!r54OOgcpY9s?Qv?p$w(KhO56ukl>M;_-i;X;+)1M!jf-wa&jRyf^>)0O z{%xp~>nDp+mySy5U9MZPCh>XfgqN@ZCUJRaqJ6M8PDXui9me4Y=JTNS4GpCvhC|&5 z+hH@j5gXzZR1M5><He}wHeegvjotA)*2Y%1nXT!Hsl=HWjx$g%o{jCX0^@c5_tR)g z$ET=0izzm>&<VBj9;gY<KpR(}QojwgHE*FN`U`61u>tdo%(bX-$D?ZO9*n|OsEMt| zR=nT(fJPns6;%VZO3cdIV=dw_s8r^<&O;UHW5`Le-oUk(Qfju~FlxmS+{^lYG>*l1 z)Sj1M3U0=rQvDYidckj~2{fK=eime)Qalwq;ZoG|uVY<2gSroXLau+S-VF1fYz3$Z zY)4IW7e?c0tcPD=BMd7i|LtfrDK~p_Gim}^SPk#O>+pUYh_54yv+B+?8Jmx>#E)Pk zZbD6LE5_rS*bvX4PSq9EM0(6J3+XqD{CA-vmkynRM^O)ch8m#V?PjlT!Un|CQKw)r z4#E#mdzv`gq&fwa+8(GqFTfbQ+jSXsCw>&0;GcsuTGRLimFk2$%w69flZfYF3*3aw z@Gv&UuTc}M&H^-`3Q3vFMitjm9EE#b8{KI#=*MC7??PQn!P;}oh0z(6x(w9H24f9e zjT-Q2ycSQORu*}eITcM%D@jKktI-&T_o61e7L~a@sMGZ!w!q&^9JK7a%?*`_efeN8 z>cz`Z$LBHZiia=(Bj%b+wLxWKC^p3cH(rQ(?g@;*1E?A}j4HnKsG|H8Gj#s1nP-Y; zl4}lXfCAJ^m*N22;(mS=uOW`S$4tB}-bma5JL7azkv)syxE-~iU6_UkurFT0-n`%H zeXl91d6-Ci2$jO`Q7?+Q&s;odsCXDAVHqj|>rfZbZft`WP!nn}-%MmY>U%k;&lk9H z2!oMyd`Ke-Phw3xht=^S>I+pCxK}gkINpdh&c-3Q8kMoHQAHWM&^(`vgNbiKrG5pf z#-2vKZ}&p-Uz^4obZF(rQOD&fY9cZBo0T>}rLZ4rLZeVA3}Rb+9hKT|P_>e<$Yf?5 zMiZBz?uj|5;(ZV`k&TPUzdBx_Ls#Vy_rWvRiue+$c$zIXd)Wnb6K0@RRD_!NJX9v1 z#woZ3wS^6qnEq6(PTUn+V;@Y%X+at`jSbin_hVIzT566}ZPd(@Q4{Kk*Wy&v%9pwQ zFXL$9)7S$umYGb<M6L>J3s%Fl2TX=DP;syyjU*bwQ3KwIsrWSNSe-zv@E5E=+c9oO z#<Ye!XfpUIP9XjXRg@!_o0Z;%`u<96hr4kiet{i$zx9U|=Ge?er6z=0>Bp!GqzZ3U zDqEnAQwDa%o~Rd<VFW&adci}OjIX($e}_88H6JpjVtwLal`;FDOQQiD3s6<L7Ij=U zqB8Qf+y67h5?5Jip0AI6h?8(A7NI8mDt5zDn1PKSHd{6twY76l<IKlKI{&L^XeC=w zGkX_xrJh4Q82*SU!iM;ohiev@i}k}Qld(mAG=Gxaiu#l6^^clA$sStE3wZve$IPE( zkF4X=5bt@M@i1}&`Jc%^&7LrSlU<4V#5JBYFDys>Np=}>6<B+pGC$w@Z{!vuUV-D# z`?N{@%NRp^9#vcyQ5m$JF+Zf*VOPRDycyR%!~Wku<8wN6fwX<rY{5X+QK;gXgc@ib zYOgn=&hLv@2M?f*;|Z*V-(n1UHkscEYhiU_8})gT8(+VP{A-|_=}-+!K*a&9iT9#v zVFlL4omc}8qE>heZTu96W7u=%_lMD_@m69SZpO-qVm$E))D~X~($LK7Z8pd4T5Lp| ziCV#AR1FkjGR{GL@j2{*Z((x`d*0O0HQ18)2Hb(!*b$p;F&P+!D#D348G|`Al+yi} zhKF3QVkU7~$V{Ld+Y{f9dg05Mg(pxGzTpKkp)sf;UV=8RN2PurhT(fy6F)#E612|J z=tai`R7%@#HFtbB*DTbrT8OHZjTnWWV=eq1TVU9W=7&=vs%9pluH?B`9~WXLT#Gh- zfOUAkb%{njI;w3md)y4Q!uF_C4MyFBqfrwqMZF;Cy59Z#Ag0s*8Fs~%+ufQ%6?XuK z;|i>UpJNp7x318L#t1e{E2)jT4?3VSGYI?PQk;w*p;n%;(@d~G>gWA%)UkR9`{OBW zgvl?N=Waq}ZV-0H(HN{tV-XFx7B#c2cpdIX)r9r3SwRQak*HHK1C^mwsEI$0>9`M- zLC-Fe>K3RP=#6^uAiRKccai@%8pW@e72S{8t5vAGehc=&ZKwe+qqd;&Zu4t)B5F@Z zpiawtx4!~4v3=MO-$sr5S5&61ptii%o}gLzs6FOyJ-1?0KG^4a29=R2d(D4B)kCec z5H-M3?11Z0TX+mL;nUb0TfbWQAI?@L_9cE1YvUDE#$$qiGRL6>>S9Sno%8P42B)D0 zeh~GAM^P&cxu5Sv?eXWRY7cwOT*=X>W9`EvoQ9h4L#PQni>jgED>O8~+o%bg!zTCx zYR~GtZmPH`wj%C?@i-n^Vi_vMkGO_VTY3=n{8>~@)YxbKB%6uK*z-tH2dy(Sw1+AC zP0FUY-i;b~o$E`e47`t(6GiRm52zJIzhU|tqgK`iWAQpS?vK|HkH<s|Vng0<t*4;@ zcA-}Mwi|zhO8pmZ|3%czRpm|dqB^KOZiaeM4~)d2s8o+ZJzs#Tq1*9#T#U;2L9E96 ztur+AqOVX7{)}2d^#kU|YGYKKiGCc7J#atj#gPZi%HmMp?~Y|S7^~tw)P&x~C_IgN z?n|sZ|G&`~OGoTmrg-wPE%AQrh~Hs*Y<0-}^&3-&gE#~?VG&+MWu)kBb4r$C0`V49 ztsF%ge?cEMeuw;zqcP_l^B<ija0GF?!{!FN6SY@wp$7gA$7AffX2pfrn)m@X-s#3C zu?78+@0njb+MurF98?BY<0JUQd*nZxMxXc1ug_1SQfD18$80)QC!B}+;xe@HVbo3b z5-LOAVgpP(YOe0<Q7a#V-EkIbp*ye|*89NJO0yu12s#om3EN?99D~<l9@a+(Ra{Tu z0^E#xKI234!d$FHJQp?L2T^;!#*LpuE#L(=-i3pRgKyGUNTbm)^W*h#OeQ{q9WeH| zDW1NlEf|NfI1@F|Mc55jqwa-cs1<&XHSkv)jnN;O31^|kU4mJ>-+GlsCLM_%n->+J zR(uy~podU3@EA_UH&9pfwI|H)1(_H_oP)|hiR)afL;N7t#SPdBccO~%6vpZNNB-Fi zXk$Dd^uT&J7PaC+?1hVQ93DnxsNG33fw9<xcn0cw%TdL*5wF9yP+J%A7c;>csI6&& zU4t}Q(&&N{FasUzhwr#?+$ZJ=9f>#7zZARSaa88&o-!#N@46Uk(!Uow;bClm5ucic zHo@M+=@`^r%%%~Cn^7w{fKBlnHo}P0W~I%rA#rz94UBZ-T-0-SVjEnE-SJgajaX;Q z%Ijb%VGC47hMgh*dhu8~+G7B<1?x~3&?~4t`wUeJwa=QB$D<}V0&OftrQShp&6B8! zet=r}SD1zoe>LNFMb%i=UxVgY%%DRvn}e-z3#xdIV{`lhwX*8x%t|_;GIgV?7ZZu^ zKp#GiYccw~*@9;<ocI)~NdJms@nVpM_I$`^=1RREn-RZ+dcjAi30%T<*zj{Rkv^!s z%||`I7FFeYurVING58Js0sDPnCh#C?qAM{PgS%<yiw96CJBjV^B5G?AzBCiK9;*{i zKvi`v4#c%sieIBL=DT2OV>(6>FF=jI47IiEQSaG<y>$MM(a=odzcMRHM4g5ku^-Mt z9<*LZ4N&!KvsDSGy&aC3cq<OVEf|HKZ%nGAF@-oDwdeg%6Pi>h`yZg8YP}bg^4GC7 zeu`}{`df3?cf=&(JZyn0P^sUJO8JMV34V_nujY3qlLIi7cm|Hbr(CV?$sq5yM$;IE z>#-&NgjKQW4`!x`sFiiY8h9USz~y)??nABY8`P<Y{Lw6=CAKH-h1$y7P!nE=%G^c_ zwxY3@hE{YQ6-Qq*Tat!-iLXb!_%3XVORy{ML{0cRRHhnUGMVU!n#cq<o{0&>D^NAD z0~_L=OYDC=8pr5RRbD`yhPpqQ^FA1riLs~wyr_xJ#R0g%{rr2phWIjS@0<T@e$Q`% zorw!jHMS0`;U<j5?LU+MG#Ur#&`N*B-q`0CQ&jh$CiXVQ;SZ=6)x2yjo(`yZII1?L zV`F?AlW`9!GhgA2*zk&($OP2)rUq%~frW0z3#b(zL(TLP)J#7|9lu{u&sY1^T)7?a zI^zCl<6Inq>rolIi18Trn|Zzy4kjLm%6#yTH0sjWf=b;!tb^~MR(=X&u<BLQUmvy7 z)~K2oftrvPmB9t58aa&0>}BkV$(E;b>wKuKxEEPi(0YJIeLB{oCi0RSzvFrqm4VBs z;;iZMR2ENX)Rj6AJK-?Yita^Cd=;wLUd1W+CTeSvt9U9G+7DxSzcq}8&btrOaS_`1 z2KL0yP+QVA%u{(kbU;mLFls_ssAD)EwepbLe-cL%M}&JSe_g)?m5Eh&2Ohy_-fs<$ z@KpYooQT?UKPtuLr~x;i&ilLA6sts<71~%qe3R=*Tt-}0)nqg(%2W9#*=DGf&q6J< z0+pfN7}Q;Vmc~S^Q_WNPyIB$H*sMc+;W%ogo@h_y1=0p}8ZuE^;6**3gL=^_jKJ-v z@n1omhR@y48&x;8(5bp7Xz4tUqC+(>!~I|}HXz=ND$4z+<8m04kssXt<~7V#v_U<e zfqifo4#gGN49{aXtQzB~ykB~uwrqAxPqVjA(4jqj4jbXCsFi$-n%E_5f-yDCb8WF9 zarc@|e9|97r;`e6I{lu%)wz9PBd5uh=Ak_qYdlpF1J2=4niJI{*Y;*-`?8bl#DF~| z*IPK%Z5R6r{AIpuiwD0giF4M>iU}?6u`nz&uXjecbL6Jj(3P9s3s1I7{C2U=n{DS6 zmiUSTMY(x}GbR;yi;D6Jr;bky+>&JXn_B2E_GPEriN&Ee`@df$w0Y2WPpH?>gfORM zM7HzEh=-lkBX>vS<>&jSJD(g(2;DL&DLj~0IK^j|bx27~vWHg=YL^Cl0XreDFxxjH z!S)910&jpfPRjOAv9rqUY+sJIG`}Rp9+L0#27FqRo$$Lyy4$U%_?cp1NuYItCSC3? zEw<^(NhvB%v4#`z!tA_a-;@%6ak-QFZh5e@sK{SjV(0jaZC{x;ztmg8qU<5%CAt1W zyMrAlFD&uSu=4`Eyom34OMKb3w=mnD&RXm&A9<<FAgTHHHFQczO|kp<3(I_rOTL+h zJ6uP1IHpowkmb)0SR+Dl;|F@GW%~=f48Sh<C$#=u^yq}ae~&^--e2zV1e|3P<2^~v z(-XHwXV|_OMXbe_9V(bK(&Ko&JDgL;Zu3Nkc4nRT#AN%e5yjrZK)#pNhQ9o`$m49u zSrclOmm1~_%P(=>KfR}qza-Z#@n)6gdyA*|^Ggc~1C^^wpPrXpk{d|3{Y52tB*I(l zv!~{j`3h6)zkNhb^0e)t#b?@koTmOoq5b~bJ)z9omV`N5zVO8qM~@GbWcy1?Zi!AT zb|#g^^G}Aex-`xSe%Z^ZQ5Nf5{qn5SeEOReL+g1ug+86$HvFHy^T~G!|I}0K`!>$} z+q*hzzQ4~&nq4h6+aBTXW3%DK<!oVTVRpK6%j}*50{#LYdlo3Anx^Nm#L5nTj$M*V zKRZ)MM)G`tBs;6LM4jb!F6BMlUp!5_@6D&^3aNxLUm)FCI{T8-;m6phf!=ApoV<Kr zXwDs7J(*UHmv**xH?N?wgc1Y)vCp4%EBnL7{_dk9Z!xu7=w*tDfzb0o_CMcO8Txaa zQ{U9B)5fjybi2TxU7GI;ID0RJoM-0@aT?y0(>QNxZa)81mZ|xi3eWbXq@>uPK|kLR z=Ioreq4nR6>EBkX6>^?*+Bu~GJGqD6e#<@Ws{H;`|L*aeVt)aTFs>84uZi>MeX~MM z=ck27W&7+Y`QAXFVr_L#T*dx+o&;yWq6^znBRpB2dKPDd^(l#*+0p_XMd#%ugF-P& zH+ZTCDi5HBw4II1f?@uApBbf~o~Kbo+iISS(3A%zdLpOg6&3lios-V|(1HgKN7VDp zn37-0_4T(gxn?T%*7nqQhCJLdX-Y}4Pv<blSM1|L32-R><KtF|U(Y$qo^M_;rw%WA z`r#p-`bF91xcdsr@{0Y1nr^yX5nb0a))}_yT*dYEJx^AgsPAb~o0}$22f>?fs{{fS zT^e{2oq|UjRBUYENv#zqEhzA+1o=z}>$_%jOt<9J4#{cP*{NyiojW*Bt!b>Dj>&1A z?6fZF9lM0yU30|4wLPJxll**x-(TI%o{VRmNn0+O+xyXf`Q~<(_gEZC*jh6zw0wK- z@Or)Sv;5Qic9yre*h`f%>5|e={axq&^VfMDPblh7J3OJIuf6XH&Dq~M%-Me+mpgs9 zv*6$er^;LJM-KV-i@inY=vxE+|Hb~_cd-vU{)4A(->G>ezG;5%KVI*(syNN^j)Wfh zWLgy``t*PC^?vm1a&x^`J^$dpc)f?Ne!1E6|NPy4mvj7wVkhm#x_`glZ~C#@|Lpx9 z+IuO?!{uJfx$x7J|H}n`F6=*Xx%c)sCBJ?3uU_zzo#R)VI8Eoz*jnT{5ca>m=<lr9 z9_|VJA8z}KO_83#FIM$D_Yc>7#fB))ynnp!w{hP;{!e%P!=7zvF`o4B|Kb~e8#n&K W|IKZ`joZGb=U=|+YyZ<#Z~YrIVF_{o delta 16192 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 WS4~>kx}NLke}`AF%l}JX!TuK+{CRW$ diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 27c7ee2e3..5533e6c6d 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" "MIME-Version: 1.0\n" @@ -20,21 +20,21 @@ msgstr "" "Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -47,95 +47,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,7 +131,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -151,60 +139,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -212,833 +194,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Hobekuntza Proposamena; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Modulu maila" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%Y %b %d" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indize orokorra" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "indizea" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "hurrengoa" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "aurrekoa" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentazioa" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1052,188 +923,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (hemen: " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Indizea" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Argitalpena" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1252,253 +1145,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1506,11 +1393,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1518,25 +1405,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1546,15 +1433,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1565,22 +1452,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1589,36 +1476,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1626,29 +1513,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1656,26 +1543,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1685,214 +1572,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Atalaren egilea: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Moduluaren egilea: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Kodearen egilea: " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Egilea:" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametroak" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Itzultzen du" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Itzulketa mota" @@ -1921,12 +1808,12 @@ msgstr "%s (C mota)" msgid "%s (C variable)" msgstr "%s (C aldagaia)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "funtzioa" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "partaidea" @@ -1934,7 +1821,7 @@ msgstr "partaidea" msgid "macro" msgstr "makroa" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "mota" @@ -1942,297 +1829,262 @@ msgstr "mota" msgid "variable" msgstr "aldagaia" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Berria %s bertsioan" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "%s bertsioan aldatuta" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "%s bertsiotik aurrera zaharkituta" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Jaurtitzen du" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ mota)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++ partaidea)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++ funtzioa)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++ klasea)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "klasea" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodoa)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (klasea)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (aldagai globala edo konstantea)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributua)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Argumentuak" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (modulua)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "metodoa" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "datuak" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "atributua" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "modulua" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "gako-hitza" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "eragiketa" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "objetua" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "salbuespena" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "sententzia" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Aldagaiak" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Goratzen du" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s moduluan)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (%s moduluan)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (klasea %s-(e)n)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metodoa)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s metodo estatikoa)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo estatikoa)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klaseko metodoa)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klaseko metodoa)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atributua)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Python moduluen indizea" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "moduluak" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Zaharkitua" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "klaseko metodoa" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "metodo estatikoa" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (zaharkitua)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (rola)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "rola" @@ -2241,209 +2093,200 @@ msgstr "rola" msgid "environment variable; %s" msgstr "inguruneko aldagaia; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%skomando lerroko aukera; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "glosarioko terminoa" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "gramatikako token-a" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "erreferentzia etiketa" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "inguruneko aldagaia" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "programako aukera" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Indizea" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Moduluen indizea" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Bilaketa orria" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "%s ikusi" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "ikusi %s baita ere" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2455,352 +2298,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[iturburua]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Egitekoa" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "jatorrizko sarrera" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[dokumentazioa]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Moduluko kodea" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>%s(r)en iturburu kodea</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Gainbegirada: moduluko kodea" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Kodea eskuragarri duten modulu guztiak</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2808,66 +2680,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2882,106 +2773,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Adi" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Kontuz" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Arriskua" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Errorea" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Argibidea" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Garrantzitsua" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Oharra" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Ikusi baita ere" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Iradokizuna" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Kontuz" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "aurreko orritik jarraitzen du" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Hurrengo orrian jarraitzen du" @@ -3000,7 +2891,7 @@ msgstr "Bilatu" msgid "Go" msgstr "Joan" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Iturburua ikusi" @@ -3149,13 +3040,13 @@ msgstr "bilatu" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Bilaketa emaitzak" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3197,36 +3088,36 @@ msgstr "C API aldaketak" msgid "Other changes" msgstr "Beste aldaketak" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Goiburu honetarako esteka iraunkorra" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Definizio honetarako esteka iraunkorra" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Bilaketa bat-etortzeak ezkutatu" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3243,76 +3134,89 @@ msgstr "Alboko barra tolestu" msgid "Contents" msgstr "Edukiak" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3326,140 +3230,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Argitalpena" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Oin-oharrak" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[irudia]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.js b/sphinx/locale/fa/LC_MESSAGES/sphinx.js index e3547a654..753f07058 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "fa", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\u062f\u0631\u0628\u0627\u0631\u0647 \u0627\u06cc\u0646 \u0645\u0633\u062a\u0646\u062f\u0627\u062a", "Automatically generated list of changes in version %(version)s": "\u0644\u06cc\u0633\u062a \u062a\u0648\u0644\u06cc\u062f \u0634\u062f\u0647 \u062e\u0648\u062f\u06a9\u0627\u0631 \u0627\u0632 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u062f\u0631 \u0646\u0633\u062e\u0647 %(version)s", "C API changes": "C API \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0627\u0645\u0644 \u0645\u0637\u0627\u0644\u0628", "Contents": "", "Copyright": "\u06a9\u067e\u06cc \u0631\u0627\u06cc\u062a", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": ". <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u0628\u0627", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "Full index on one page": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0627\u0645\u0644 \u062f\u0631 \u06cc\u06a9 \u0635\u0641\u062d\u0647", "General Index": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0644\u06cc", "Global Module Index": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0644\u06cc \u0645\u0627\u0698\u0648\u0644 \u0647\u0627", "Go": "\u0628\u0631\u0648", "Hide Search Matches": "\u0639\u062f\u0645 \u0646\u0645\u0627\u06cc\u0634 \u0646\u062a\u0627\u06cc\u062c \u06cc\u0627\u0641\u062a \u0634\u062f\u0647", "Index": "\u0641\u0647\u0631\u0633\u062a", "Index – %(key)s": "\u0641\u0647\u0631\u0633\u062a – %(key)s", "Index pages by letter": "\u0641\u0647\u0631\u0633\u062a \u0635\u0641\u062d\u0627\u062a \u0628\u0631 \u0627\u0633\u0627\u0633 \u062d\u0631\u0648\u0641", "Indices and tables:": "\u0627\u06cc\u0646\u062f\u06a9\u0633 \u0647\u0627 \u0648 \u062c\u062f\u0627\u0648\u0644:", "Last updated on %(last_updated)s.": ". %(last_updated)s \u0622\u062e\u0631\u06cc\u0646 \u0628\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u062f\u0631", "Library changes": "\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0627\u06cc\u06cc", "Navigation": "\u0646\u0627\u0648\u0628\u0631\u06cc", "Next topic": "\u0645\u0648\u0636\u0648\u0639 \u0628\u0639\u062f\u06cc", "Other changes": "\u062f\u06af\u0631 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a", "Overview": "\u0628\u0631\u0631\u0633\u06cc \u0627\u062c\u0645\u0627\u0644\u06cc", "Permalink to this definition": "\u0644\u06cc\u0646\u06a9 \u062b\u0627\u0628\u062a \u0628\u0647 \u0627\u06cc\u0646 \u062a\u0639\u0631\u06cc\u0641", "Permalink to this headline": "\u0644\u06cc\u0646\u06a9 \u062b\u0627\u0628\u062a \u0628\u0647 \u0627\u06cc\u0646 \u0633\u0631 \u0645\u0642\u0627\u0644\u0647", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "\u0645\u0648\u0636\u0648\u0639 \u0642\u0628\u0644\u06cc", "Quick search": "\u062c\u0633\u062a\u062c\u0648 \u0633\u0631\u06cc\u0639", "Search": "\u062c\u0633\u062a\u062c\u0648", "Search Page": "\u0635\u0641\u062d\u0647 \u062c\u0633\u062a\u062c\u0648", "Search Results": "\u0646\u062a\u0627\u06cc\u062c \u062c\u0633\u062a\u062c\u0648", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "\u062c\u0633\u062a\u062c\u0648 \u062f\u0631 %(docstitle)s", "Searching": "", "Show Source": "\u0646\u0645\u0627\u06cc\u0634 \u0633\u0648\u0631\u0633", "Table of Contents": "", "This Page": "\u0635\u0641\u062d\u0647 \u0641\u0639\u0644\u06cc", "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": "\u062a\u0645\u0627\u0645\u06cc \u062a\u0648\u0627\u0628\u0639 \u060c \u06a9\u0644\u0627\u0633 \u0647\u0627 \u060c \u0627\u0635\u0637\u0644\u0627\u062d\u0627\u062a", "can be huge": "", "last updated": "", "lists all sections and subsections": "\u0641\u0647\u0631\u0633\u062a \u062a\u0645\u0627\u0645\u06cc \u0628\u062e\u0634 \u0647\u0627 \u0648 \u0632\u06cc\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0647\u0627", "next chapter": "\u0641\u0635\u0644 \u0628\u0639\u062f\u06cc", "previous chapter": "\u0641\u0635\u0644 \u0642\u0628\u0644\u06cc", "quick access to all modules": "\u062f\u0633\u062a\u0631\u0633\u06cc \u0633\u0631\u06cc\u0639 \u0628\u0647 \u062a\u0645\u0627\u0645\u06cc \u0645\u062a\u062f\u0647\u0627", "search": "\u062c\u0633\u062a\u062c\u0648", "search this documentation": "\u062c\u0633\u062a\u062c\u0648 \u062f\u0631 \u0627\u06cc\u0646 \u0627\u0633\u0646\u0627\u062f", "the documentation for": ""}, "plural_expr": "(n > 1)"}); +Documentation.addTranslations({"locale": "fa", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\u062f\u0631\u0628\u0627\u0631\u0647 \u0627\u06cc\u0646 \u0645\u0633\u062a\u0646\u062f\u0627\u062a", "Automatically generated list of changes in version %(version)s": "\u0644\u06cc\u0633\u062a \u062a\u0648\u0644\u06cc\u062f \u0634\u062f\u0647 \u062e\u0648\u062f\u06a9\u0627\u0631 \u0627\u0632 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u062f\u0631 \u0646\u0633\u062e\u0647 %(version)s", "C API changes": "C API \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0627\u0645\u0644 \u0645\u0637\u0627\u0644\u0628", "Contents": "", "Copyright": "\u06a9\u067e\u06cc \u0631\u0627\u06cc\u062a", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": ". <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u0628\u0627", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "Full index on one page": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0627\u0645\u0644 \u062f\u0631 \u06cc\u06a9 \u0635\u0641\u062d\u0647", "General Index": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0644\u06cc", "Global Module Index": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0644\u06cc \u0645\u0627\u0698\u0648\u0644 \u0647\u0627", "Go": "\u0628\u0631\u0648", "Hide Search Matches": "\u0639\u062f\u0645 \u0646\u0645\u0627\u06cc\u0634 \u0646\u062a\u0627\u06cc\u062c \u06cc\u0627\u0641\u062a \u0634\u062f\u0647", "Index": "\u0641\u0647\u0631\u0633\u062a", "Index – %(key)s": "\u0641\u0647\u0631\u0633\u062a – %(key)s", "Index pages by letter": "\u0641\u0647\u0631\u0633\u062a \u0635\u0641\u062d\u0627\u062a \u0628\u0631 \u0627\u0633\u0627\u0633 \u062d\u0631\u0648\u0641", "Indices and tables:": "\u0627\u06cc\u0646\u062f\u06a9\u0633 \u0647\u0627 \u0648 \u062c\u062f\u0627\u0648\u0644:", "Last updated on %(last_updated)s.": ". %(last_updated)s \u0622\u062e\u0631\u06cc\u0646 \u0628\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u062f\u0631", "Library changes": "\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0627\u06cc\u06cc", "Navigation": "\u0646\u0627\u0648\u0628\u0631\u06cc", "Next topic": "\u0645\u0648\u0636\u0648\u0639 \u0628\u0639\u062f\u06cc", "Other changes": "\u062f\u06af\u0631 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a", "Overview": "\u0628\u0631\u0631\u0633\u06cc \u0627\u062c\u0645\u0627\u0644\u06cc", "Permalink to this definition": "\u0644\u06cc\u0646\u06a9 \u062b\u0627\u0628\u062a \u0628\u0647 \u0627\u06cc\u0646 \u062a\u0639\u0631\u06cc\u0641", "Permalink to this headline": "\u0644\u06cc\u0646\u06a9 \u062b\u0627\u0628\u062a \u0628\u0647 \u0627\u06cc\u0646 \u0633\u0631 \u0645\u0642\u0627\u0644\u0647", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "\u0645\u0648\u0636\u0648\u0639 \u0642\u0628\u0644\u06cc", "Quick search": "\u062c\u0633\u062a\u062c\u0648 \u0633\u0631\u06cc\u0639", "Search": "\u062c\u0633\u062a\u062c\u0648", "Search Page": "\u0635\u0641\u062d\u0647 \u062c\u0633\u062a\u062c\u0648", "Search Results": "\u0646\u062a\u0627\u06cc\u062c \u062c\u0633\u062a\u062c\u0648", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "\u062c\u0633\u062a\u062c\u0648 \u062f\u0631 %(docstitle)s", "Searching": "", "Show Source": "\u0646\u0645\u0627\u06cc\u0634 \u0633\u0648\u0631\u0633", "Table of Contents": "", "This Page": "\u0635\u0641\u062d\u0647 \u0641\u0639\u0644\u06cc", "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": "\u062a\u0645\u0627\u0645\u06cc \u062a\u0648\u0627\u0628\u0639 \u060c \u06a9\u0644\u0627\u0633 \u0647\u0627 \u060c \u0627\u0635\u0637\u0644\u0627\u062d\u0627\u062a", "can be huge": "", "last updated": "", "lists all sections and subsections": "\u0641\u0647\u0631\u0633\u062a \u062a\u0645\u0627\u0645\u06cc \u0628\u062e\u0634 \u0647\u0627 \u0648 \u0632\u06cc\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0647\u0627", "next chapter": "\u0641\u0635\u0644 \u0628\u0639\u062f\u06cc", "previous chapter": "\u0641\u0635\u0644 \u0642\u0628\u0644\u06cc", "quick access to all modules": "\u062f\u0633\u062a\u0631\u0633\u06cc \u0633\u0631\u06cc\u0639 \u0628\u0647 \u062a\u0645\u0627\u0645\u06cc \u0645\u062a\u062f\u0647\u0627", "search": "\u062c\u0633\u062a\u062c\u0648", "search this documentation": "\u062c\u0633\u062a\u062c\u0648 \u062f\u0631 \u0627\u06cc\u0646 \u0627\u0633\u0646\u0627\u062f", "the documentation for": ""}, "plural_expr": "(n > 1)"}); \ No newline at end of file diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index 91cce73eee7c843872819dd1e41e1d5f1869e12c..4ffac4895ff3590e8521d7d38b99f635e71ad6ef 100644 GIT binary patch delta 13978 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 O*#D%vJNh?wxAiaDB=M~P delta 16192 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 diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index a8ce91f39..129ad45af 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" "MIME-Version: 1.0\n" @@ -18,21 +18,21 @@ msgstr "" "Language: fa\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -45,95 +45,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -141,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -149,60 +137,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -210,833 +192,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "درونی سازی" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "در سطح ماژول" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "فهرست کلی" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "فهرست" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "بعدی" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "قبلی" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1050,188 +921,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "فهرست" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "انتشار" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1250,253 +1143,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1504,11 +1391,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1516,25 +1403,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1544,15 +1431,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1563,22 +1450,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1587,36 +1474,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1624,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1654,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1683,214 +1570,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr ":نویسنده این بخش" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "نویسنده این ماژول:" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr ":نویسنده" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "پارامترها" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "نوع برگشتی" @@ -1919,12 +1806,12 @@ msgstr "%s (C نوع)" msgid "%s (C variable)" msgstr "%s (C متغیر)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "" @@ -1932,7 +1819,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "" @@ -1940,297 +1827,262 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "جدید در نسخه %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "تغییر داده شده در نسخه %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "منسوخ شده از نسخه %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (توابع درونی)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s متد)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s مشخصه)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (ماژول)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "ماژول" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "کلمه کلیدی" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "عملگر" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "شیء" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "استثناء" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "گذاره" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "توابع درونی" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "برانگیختن" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (در ماژول %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (متغیر درونی)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (در ماژول %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (کلاس درونی)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (کلاس در %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s متد)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s متد استاتیک)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s متد استاتیک)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s مشخصه)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "ماژول ها" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "منسوخ شده" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "" @@ -2239,209 +2091,200 @@ msgstr "" msgid "environment variable; %s" msgstr "%s متغیرهای عمومی؛" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%sگزینه خط فرمان; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "فهرست" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "فهرست ماژول ها" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "صفحه جستجو" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2453,352 +2296,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "در دست انجام" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2806,66 +2678,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2880,106 +2771,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "دقت" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "ملاحظه" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "خطر" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "خطا" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "تذکر" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "مهم" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "توجه" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "همچنین ملاحظه نمائید" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "نکته" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "هشدار" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "" @@ -2998,7 +2889,7 @@ msgstr "جستجو" msgid "Go" msgstr "برو" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "نمایش سورس" @@ -3147,13 +3038,13 @@ msgstr "جستجو" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "نتایج جستجو" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3195,36 +3086,36 @@ msgstr "C API تغییرات" msgid "Other changes" msgstr "دگر تغییرات" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "لینک ثابت به این سر مقاله" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "لینک ثابت به این تعریف" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "عدم نمایش نتایج یافت شده" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3241,76 +3132,89 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3324,140 +3228,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "انتشار" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.js b/sphinx/locale/fi/LC_MESSAGES/sphinx.js index b36de1e72..4dd9a1f36 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "fi", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "Tietoja t\u00e4st\u00e4 documentist\u00e4", "Automatically generated list of changes in version %(version)s": "Automaattisesti luotu muutoshistoria alkaen versiosta %(version)s", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Anna hakusanat kokonaan, osasanoilla ei haeta.", "Full index on one page": "Hakemisto yhten\u00e4 luettelona", "General Index": "Yleinen sis\u00e4llysluettelo", "Global Module Index": "Yleinen moduulien sis\u00e4llysluettelo", "Go": "Siirry", "Hide Search Matches": "Piilota l\u00f6ydetyt", "Index": "Sis\u00e4llysluettelo", "Index – %(key)s": "", "Index pages by letter": "Hakemisto aakkostus sivuttain", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", "Library changes": "", "Navigation": "Navikointi", "Next topic": ">>", "Other changes": "", "Overview": "Yhteenveto", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "Javascript pit\u00e4\u00e4 olla sallittu, jotta etsint\u00e4 toimii.", "Preparing search...": "", "Previous topic": "<<", "Quick search": "Pikahaku", "Search": "Etsi", "Search Page": "Etsi sivu", "Search Results": "Etsinn\u00e4n tulos", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Show Source": "N\u00e4yt\u00e4 l\u00e4hdekoodina", "Table of Contents": "", "This Page": "T\u00e4m\u00e4 sivu", "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": "voi olla iso", "last updated": "", "lists all sections and subsections": "", "next chapter": ">>", "previous chapter": "<<", "quick access to all modules": "", "search": "etsi", "search this documentation": "", "the documentation for": ""}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "fi", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "Tietoja t\u00e4st\u00e4 documentist\u00e4", "Automatically generated list of changes in version %(version)s": "Automaattisesti luotu muutoshistoria alkaen versiosta %(version)s", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Anna hakusanat kokonaan, osasanoilla ei haeta.", "Full index on one page": "Hakemisto yhten\u00e4 luettelona", "General Index": "Yleinen sis\u00e4llysluettelo", "Global Module Index": "Yleinen moduulien sis\u00e4llysluettelo", "Go": "Siirry", "Hide Search Matches": "Piilota l\u00f6ydetyt", "Index": "Sis\u00e4llysluettelo", "Index – %(key)s": "", "Index pages by letter": "Hakemisto aakkostus sivuttain", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", "Library changes": "", "Navigation": "Navikointi", "Next topic": ">>", "Other changes": "", "Overview": "Yhteenveto", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "Javascript pit\u00e4\u00e4 olla sallittu, jotta etsint\u00e4 toimii.", "Preparing search...": "", "Previous topic": "<<", "Quick search": "Pikahaku", "Search": "Etsi", "Search Page": "Etsi sivu", "Search Results": "Etsinn\u00e4n tulos", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Show Source": "N\u00e4yt\u00e4 l\u00e4hdekoodina", "Table of Contents": "", "This Page": "T\u00e4m\u00e4 sivu", "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": "voi olla iso", "last updated": "", "lists all sections and subsections": "", "next chapter": ">>", "previous chapter": "<<", "quick access to all modules": "", "search": "etsi", "search this documentation": "", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index d4ef5e6cacb8fdba2f4dc06d1d6eaac63557c60a..233cdbe1a8508ad338145f3cdbfc76bf19a369b8 100644 GIT binary patch delta 13976 zcmeI$d301o+Q;$RAz=xGB`hIfy9ovmk`R`#B(jE8b_9`~4&9Jwl8)&l5Eh$783AQ$ zHQ<Jd;(~zEAd4U%D!AYZ0*X2aDvAt>11KoG-(TvE<IMas?|aUiGk?5uMnCmb->zHr z)Kit1mFvPETooSpJUaY-i~p?;v#f@AXI({q|KIm5Eo&v=S!|9ATJev|vNqr{zLS>B zXY{|(+Oq1?zd6;i&JZ7LV_Ch4x3{&d7`)cbvS!d9lV(|kxB_!6D_})*pp%Y5Y|Vp< za3S%Ij+S*J_UdF=Z{boLgJU{d7VoyUU=*If2t0?((Yk<L&`!53hOj1JKYReY;TM>I zO)@O23h%di(x^<wKupAusDWmp240J`@p-I;d$10Eh&AvVtcI6R6AHh<vZ`V<>hs1< zoPruB9qZv>tjYT=FOBM0f;QfTdeK_cK-;hizUF-XF5X0Z4troG%hiB)IX;Xvi9@K& zzJ{@Q95sQ97>AKv$$xzsi8Qo=uBZnFAlqt9M1ApIWLK=Gu?c>T4e%;nhjHX}J9fi% z_zP;{$=xlh5_ZN(*aMZ(Cy?^6p6O2h)%b*tzF3XrMB@mgj;yJu7p=rB+>ENvn4V@r z$*9<aHqJn0>LJIcP?_C`+TvG`Ia~Xk&nspIEUN__H8YK!u`zKLvIuJ~>Wh0(d;1o~ z<58p@t;?vIY1hlFbTn#0ZfuX!(8lLc-#>`jnom(%@O^+r6B?Czn-?`l?PV%zC4Dgw zhdEBeM#PUGg>1cys`87d@1^uH)!iEh5oe=n=_Ra)2QU)fLuEGbiPN}<WY>yjANu16 zoP>{}s`wg4V2yqpNvw<f-x|Ze2H+Z0EuF(kSeZd8V@>3!Td}Cx8iLxA$;iY4Rv`_g z@=jDO?7{>*=NNsXWi=&ELk&C{wFPce2IiwO_zK$iIaa}Is25k!>|AUoDns1|nynax zwRQfzG{X3x6xmK|R`~~<a||awgeiCowWpQIt6tCr)!!GDnG)3A&vIOW%G5Kcm7jHV z4YsVY#C5R|@3(GO1DB%qYCVp|-Kdqu4l!Ghf!wCn0F1;tP!nE=%D_R)$FoQ|SmTD8 zWBmlyAl`^Nmb;z)w=s}R$59$Bu;MT?aBI{=(w%r9>hn>kJ)VQg%qkp%kD@a03nt+; z)D4+5+*ErHj3OS6`u-$TZIlit|4P|BI<%sds6ASP4RHtRm>h9DkGj#KZZamKE~qZp z3`ZeH+qwgDa4)vSRwGPNPe5(qGpLMxHiG=C@f#f)xY0;s8rCKrgw@fFb+G_z;sUIO zWvJ9XiP5;(iT9(5_6S~wS5V{GH=FOZ$BM)~0yH#WKU4-rqpIA4+N)eAo{pO69Mp>* zLk$qZI=BP%{ClVge~SEgu)af`^X8*W(PpCFGYIwGz%4Yi7dhAp3sD0-iavY}b!Eog zVqQENwX$5Sh0Cx6pFmAKmde$H;!)#vKt0zDm4RW%|1B^7qILq-ZW=A=h$Cu;y|Fcx zqKfWWOu-M4I<;J!odO(=%E&&{DLIL{HzLNFl(#^eco2Fq9~r_rgoCm5crH1e|2t?5 zpyMM<#3mEWz`c<%EiY=td$Bow<-}1FP22`Gfzj9nXJSX(j=Cp)#E0+-da!H~g^Iso zNr1)(x7o|Lu>$djsN?l9+W0A^;jgF+waqf8WC}JQo{d`hD%1paqE>ntHGz?n&DKmr z9n-0(W15En6~TivuE%v)7Z0O~>kKZ!^QbS(X8L;JbEwbXK-J1Y)ZQO+;uB7M7F7cm zP$|EPi*XS9(M`{L$-ge3*eT|m_C*!X3~Yo;QPsX4HPJoT89%@{tUA@Kuo>z&rlL~Y z1vTOOQRn|vBpKEP?2ET#oA*4HP5!mwEp#YVZ=-79FiyfNsELfrF~1kgK;2}kQ0M+> z$E~O;-;c`3F>Hok;dNN;R&!CcL5(*6wSb%e4XyZ2Y=Wz>2X060;T2SdZobV-;7)8v zyax5XJs6LNu@hcG?Qv?Z$w&vRM4X8#$^qB`=VJy2cF^cg<D%2iJ<t4DorV4A--=4P zezGWa>8O;>bKHW}iBDsDyoB{IiOWM1&BUHK3H7}-7>gg9&jZ#EG?bDk4t0HOg^jTn z#^7XB4a{`nC8+1tVhh}jUGOy4#Adgft?7uV#C<Uwr=wmx8(U);#_9a;r_qv*FHw6I zRcLCVJ!<7$Q4^ewHa>t#{Z`c0yn~wPWz@=}{pJ^$>rvy5Mb+2>tc(w%CiWCI<Nemh zG-}~*s2ZqIWLDN1YY^XpN@cd=U8o{`0y#<60el=&ip>_hk6LjA_p-hpiK8(NwdX~c zf-hh|ss4h7UT_sPfd<pe&w>n8il<_GT!wo7b*zo2Q1`*l$n|g4nQs1*Ee|z;ZK#Rv z!bm)cb?`4(A1joS|5h{_mYTikhnheZR>67L3Gcx{_&TyUtM&|&v4t2-{18^e4XBB2 z!8m*qWAGH}RQ-yYNY|NWA^m5P{|<Cy)1gza8uj3}r~z8dGJDkr>k&^woq{De7(Yhs zY2s{?>J(IJyQ20y52J9t<8tgmyc!$gX8{_`X<SC7I^hm;*AKuX;<*@)8?Z6Hj}7n~ zYJyc+fCf|{DU%*laV^7}aj#?jIVOWX98Ui()WsC2IoDhmX{gj?pjI{ntKp-l0oUR6 zcpSB|iu25=Xoy-#I_g-B!dUzhYQm4BGPehHx{hExUNv#Rvgex{sxS8DgCVFF-;X*z zPhdwphzS^Rr^!?cR3?UDBg}K+#i-|=#t3{1RRiy%itjY4D1XBYo&TnHnc|t~I0ZF8 z9%`n`a3F4SKEH-di7PHJ6K{#Vh}&WsPD2&hdJM;Hs0Ho9Hux6y#$T}~@3(sX$rROH zm`HpOmBOD;FN(U`Ts&=1@o-GS5>y7(pe~}_*aFX@CRA^snaEhw_okpeU*yCg3{<4! z2#w14IabGSuqs|eeIaa-b2X!mV=uIEHV(x{Q5idjD$3}^=J{kCLfi+H`Ug-owhr~a z-HXY8O&SO2(8`aYj>|RFM5697D{Y8MVSm(wZbqdrfGzQLRBC@f)k?y>CNpC&lDGtQ zPs~LX?|rC=Ja;eoSH~-K=&C&AJa`J55nn<TPva$KFFT-a!VJ`k3Q!Zj3zf-rI2kvg zwy@q()1Qh}i92F*%*1rOEkMJju@<}IeyoI*mziT#6E*W>)P%a@^*9x^^5stdP8>yi z61!r?a+8S}$W>u&!YbHig~@ORDh~9gkwoJr)PQp^71yDT)p67cFJl?nLE|=LOl#<U zCWBw%IO3mCMLF_*v(np9-(Q8Ta5qlCGuW2*TQ@#nj?HXTYC@=$eu}z4!g#Av8IL+n z8JLFMQ7<aN2wZ`B!AeZV*PPGKqmFU)mBv)8OFX<hX8*Hk)T3h&swy8x9hc`&8F|;~ z{{^Fo!&aH+>tZHx5)Q)x)P!Hf&UgYdu)%|7%SNHLb}nk1g;-zb|6v+h$rjYiK0sZm z-=H20f5;SJ48HE-nnmVfU3l1JY{?_$PqHte{v_LFwfU3myN~k%p5OU|`IGG7HJlpa zy-zY8R$5E`XE0Ecr_JAFAH-bZsAtRzXQ2Khy8^iitXH2kKi>yF$1O%&hGQ^mok{&J ztVaATYD+GnGWaWY!RF7KqV!@v;zyom|GUxnnhsqc&DNVO=<hfjRXk%+1I<MZ{5<OX zZo*pl2I@E-#Ts}PHId&i3L`g|<5wT``E^d*egpZ}K;7w34UE8=cpFy7S!m;8)Qg@+ z4g3n~_`L0Wei&~ezKA{W#*JpYdmPuG#@&H2`X0vO$p8&a;5UrJS}&NZGYR#g-l)%q zV=_)beepi*fE%z0eub)`h!@Sz^?2M)+y~pCwaH|lJ*o)1<0K69qoI^Oi*0bD;|c6b zTsvfna4e=0=c8V<8nf_a)IHI7vzgEhs3P{GjSEqkdJc7bH)D0&Zu$e(0UAo#ho-}- zv&G!;jUD@<j#UAwR+eIAd=Is^M=>71#!guIB~vp!P|r=px>$hiaRJ)+GDhj=|8W{M z>G%${1y@iht+&+-&;jcacSEh@W>is5a$JDQ!1I`nZ(&D_*k-=h1y$T5a1c(zTKGCf z@P6wE4GsJmYM^hhd@tERWhNf`<7AwK>#+t_-(j|{G3w|2b*N*Ng9C6A*2k-;J&$?W zET{>l5x2lVZ5k73Xio}JGn<Q@Fo>#&cTg+1>KMP%+>pIc181YQpa9cx1uBCF(Z;i= z1y<i>UR)njhzIW?{|#x(rXv;~#HP3z_2cv?X5ts9i8X!2tT+udKn7}0Z$<6(YN!7h z)bmGBd;cvq!fU8ZHQH@XRn~6uuMCvXF%}o09{k!de2*C@0Y}r{9<|aXs4aK_+u|OK z#Gg<TzKTt-=U($C*(~f$`~hmAF|V51XcM4Om5zRnBT(mj61Ko4sDZblR`e={;UU!L zM^Jlg?K2sR#W937>R8XjB%F(Na09B?_n}Tt;1CTB@FnU+S5PUd_?n3uqN=|+YOA_p z9FBD?!5HG@j?bc2xEITRjH7BP>~-@e*$h<1o<fQ`U>&8QJxqARq->PqG}ORljvG;1 zwI7v%Pf-*79JQjqqHfHH{bp;TF`78RiPNwtac{g1bFlpH|4V47c%HzDxDGYoCR9fD zVI_PQwN)QG@t3GQ{toq`$OGnvYlKR50;=jeqH3iF-hjif0WQ(!0UFQI(2F*sR=6AW zqK~i@et}wP)i=$bWaF_b@p9CQ-$$+NB&tR#y+uJ|ELOs0s0ppa%D5i&+)G$~{twVl zbst9+Plvb7kK5(gj(8`w#viZ++V7a-*B^%xPsaj$6P1zlgXWZs!35%2sFbfp8(%{& zesz%j*9!-{YyP8iEsh|*fCKQx_smuM0BYc!sAGB@wc<|io8N%Oq2fE8_!*2RejmHw zdDNAh`hm%8Ha<jL^a1(z(5U&L`SrONmAZqdTIltWIYtApCh;(|F$>dhKDNW{s8ezl zwYTAi%*t)l1Ts+zor_iQIBF}t4$z38aSoI40_sHxhs`gI?NEC^9yK99F2Wh8=OaEg zFKmnYd@xqUk*K|QJ8_N^7o%Q08wX=x0gc5p4r4cc;fT3_9>=!C?_nJbJ8Evm7>p)P zLrt_FcE-`Ddm)Hg;RdXR+i(=Vj+$_zV`khNF-zxvHjTb~@MqMET6|(w+yynzO_+$| zaT3l)UD2noF@}9=ZnAi+LEPH08>-5OpeEwRW|)sE#``gr_ggz?Xuv}lhv!ifi8^kI zE&+QG_rx)HCnn<;s0l=UW^TqL)c5+Mif;mT!a1ld-j15cZq(MigB^Llb%;g>toFJ2 z4~9(aPaJUKH!+<!;tTWhy*qX$UWm%vKGarK{j;$vRwuq4+v6Ophg+~AzJopSTMX!n zNhi#mJrVUlDK^3fus&|a#&{58@OxAZgnwz`7}RsEQTIbX?1HzWYGfm7YxZC&zK`MP zI!XRxX;eIEE*KlN1w*kV-iF$<2T--J3$^n7s0q4Gnd8_5mHO_etr>}$=zP@5AHp`c z2{rC1)TyfRRlppF#IMZEQcy3Ph$@~1*aTOiR<;ebk`t&*{peWzYg44H&`bX?d>pr; zwqW!(X2nZT-w)zwToa&?LE|?}!Oo{ms<Tlq_!DXZPhu;44O`$3sDWd@HO~*m+QfO- z0O#T@_z2#J7cm@rd}k)w2P26CxiplzX{bHC2lb+-P+Ri>Y654l3RXR1s=6)?A|8yz z_%JGC(chcexDG24cSKFBD{5<pqqZgwd+>hiE*g<^>_-*Zhp5x=BlgD@XU*{|L=CVR zRYdQh_SX7~IR!B|m~bLi#to=cZ^abckJ|H#7=_i&N%lXEhN`s%D&<qKInGC=dL5?W zAxy%^AI$mgh??+dRLZBLCU_reyp7lj&tfXZ{%HOrd!ysyIEeRKKhqeFea@SkX%#Bf zub@(Q00-l7tcI<AG6QzP>xpwvD+{7d#j~h|?8nx43bmDW{%R(ig38<=3^b$Rp%IUZ zQSo}Lgom&<9!I@6;et6nt+6BV7)-zws7!4^W#V(xL@qmV{fp+g_839`C{zuMzexV; z&?u%O5f`CO!wab5`QGs-)Qc{oCfewd`IBrn)I{&Wrg$G}@3&zu+>2>g@n=(GH=v8S zFNR_NpUHn48UyLjO7Fm)_!{=bO23$i4MC-_81<s1Xk*BU520$~XH*6fFPn>~2P!i@ z)Pz=|iv2UxIHv>71J$mWjx^NDN269U39DlcR>kS40q?~6xE?#<8))M-9E$d@CS$i_ z9Pxdq=QrXIJb=o4p#E>B$dXa1>48d3CTdIippHu}Y9cdGD_w}HiI-3l+K0;E_t+BK zUNxB=j~$7ZVguZd%D_pC*7^Snjk<KWu9=C%pyF0o1A8D3TEnosSTTlpG3rKJgYEGd z)QUbsP5iv`d3}~OnYa<g;#^dQAHu3S|4-1+dEbEP_%Yg8%jL4VV_Q^_`LQ9+L``TV zYC`K!$M8ec%71nGn}@l|fAblPUFlzo%EVWA2R5qUGQa;nOhYMNs}9_ZO7SbG0neZ= zkb2>+@?+H(wL&kJ;bO<85w7w-$-a!r;Gl}G@;}K=Mx}laYN5wb-w&_kvI4rHTGE(+ zH)C7ef;u**QD10W*{rk=HYUzPrScxs7OX`*zYg`H6BvQNp~kOJ#Z~@exi#wZ@feS# zRa}Ac#zS;y#=D#kKEis$7f`35TBNJ|xYR{uq%*4DgW8Hb)bn#N6U%TIeu|oKa#dIP z?+pVngLnaI%U-S8-R$l6bZDTzqK-+WYG$T3YGOB__I^0(IUlMB=T!^FB|Q>4nUr5W zI4a}T;H<^<gG*n0CzyA`PhpAv;E^t?Y`4eb^(5JeetUAZJAbOvF7)R4O1vJ6hkh)I z4L&wADp-AgeCVaFw^j(<)iWbJc&JZw=={!OuF&Crzl0^*MLxUG>-N|=`9<DBe?fLm z{`84??t+4x{HbFT{o|AD{!{aPg<em(omd#!y?2-^6gOy|EA+zPZLUy{VF?w2MI$`H zKaY4Y_~^*p5jnZJzG=Z(BNIa7Z%zsi<m6BG+9hpMQj_eP%15?~{a(MFkdyE6PEWAi zeml?Y=d}|(zR7l0sqOJjaTn(nrPxDry>7o(E3^~-@JJWC`D7pS%rEjcPteRueZ_?~ zT~ksDN>i+xh<KqVr_ejO$X8ezTsfvRP+U;pD=f07_zG=ri95I0UBt@lp`}IHzI?l_ z?JvzQa!<E&{Jgw?@41V-9^0Mov8S;XJIhOQ%JWHn{<enpDXA%TrZ2z5%eZ8pc{szh zbB1ForFmJtT)#CU6gzg1tBS{$=Vk!*#5b<_AEMRchWtGWT^e`4%jFL)pAhFt3a*>5 zB{IYIPA_0BUQZ}*;z(D}?cN^jpLM${GPEP>v@6QvvqluU^ZmJQRvUWZlNqky&M6Os z8t0@|2<|;m6l{>UC(~DyZ5O$-igVqClYP0xdHMeG)um6%@f2nI(`{ctQ4Wc47kcff zIVIlw6#Ms&$Vra&KJ;;3Yge$5@7~aU-z-<C@9j$~1kV<EqY5L(`infi;-c}9iG{(5 z#c}+T5qz{bHn^j>N3dE+bSS-KgR5*sw5xsS%V{mc|LF^{vl9NPr{Am=!G*Ir29M3U zJD4=PO0>rw;mfqy?ZQ&_uQ=b69vnZr`#`@h&&!7Siz%gPIjpa|!#Bk)%BG)f$tN8- zUVoCERa~UbQahUhpXMvPO<V8IrQ-4_gA%VlJ-BT4rMSXEiep+~PI+Za$;tKFgWR`y z)d<bKqob>@HN{Qaqm9nVE3c+R|G)P6vTkLo*yBHZRNyY8jPu=0IME+^F)+xLoa-$Q zHC=ZWucGm{nzmaw2O!<f^LdJMz5dYUITc*Nn0Zqg<V?-Z<)88?nh*J!$D5LpVuxnV z`>I0o-%s!FDbTVxVY&@CynZ{mt0wWml~!SYJnVmXd`h7&k4G3Y7`VG(aP{3YL(8u= zbcH%Es#~G#n`l>NaNxaXLtU3-x$0P)6&9y_a(0XJbR>g2mk!?Qj&QAYRrQyjM2%#Z zU9IQ}RPg0`%g#l+8U-gkQm1TIC09mh@`?$rinrwy6nH&lsa0GHw;r$JdOxC$clzYq zV(zuyhvnJ{zObrpaOi{AB~30W^y)-T@fLcyTKpW3e|_32^69zY>Wn5^U#;O<?5bPf zF^ArpUy@Vk%hzPn?X3f9xw^Z`X4iH-Q`V@Ct6`a^j;m(bv^uWDVBYF_!BwkMYxs-v z^4zLDc3(;9{n)6e&dI55liPH%Q`@AcwGBS|SOfL6OK#KNZqp&XU5C&Ij~#Y#YmciQ zOnI@^-)`>E(idNGnQQy*;K0q%|EH_F*cCdx{oOF<{{Arhe|>c~3k&_S?`_@M$zj2_ z4qOc$do!Dxdq!~ITM7Sgd&h_Nzit2j?fsv-z3U%6<BIcU7wvnpWZ#o^Nsc#n-;@7% zmDdXU4_)K;oLch#*Z6<uHGbyOxBt0oyjl3aaf6p7Mz}ivJ6HHtuJE$|^6R_iKV9F} F{{WY;^0WW| delta 16019 zcmeI$33OCdzVGo<85qKtgqZ+`Kp+GXNSFf%1dxEptTZ!~q=15=Dx@k2C{T(DwBi6I zGN_1(dKD40R2&gSXhlWPMg~P2ah?!q;i91T`>TEWg1+}|zrJ^^_ugHvdv){Kd)KKw z{P%zFI-PZE6V_}>2!EK8u*%{;JK`)W4bvK^cHuv19V}}N)n?cppT@TMF)ndgR#LWQ z-NtuU<XG0Xw5R7<RwLT$=2_O))Z2BotU=W4cd@L7II*i`T}6Aan`M<*R@nNEf{zAw zcOJmK*pUZ6!#`4Q(9^Pp;s)G<U*iOPI^RqvxtC?tqTUA+@iNCzm_>aY_QAzih&!+^ zR`1PZ8Q&U0p*jsdtcDesfnih!51=~UhpG4;CgWFF56@v8OlFjt*b+6N9IS!8QJ)uL zZTth)#Ti(O@vV6j)bSEj$LmmEcvKJI3#c#dK|OaEwM*ZkI!d_2d|n@I>a9`z3_?v{ z9BP5ZI0olne|#Ck>L{Lg$R?-`b5UDSfQ@kiYTyty!DZM8??<ip1?ThEF`N2P)c0!i zvn+Pk%D@&l37g^qY>jLB5&vf?yhuZ5tYli6@g}T_+i)7bge7Pfn60=0$usLF#}{!h z^%Iza-3M4!Cmf0z@M<i=)mR^YLQSmhz_4i;JkW%0GAdMy9G9U&zY>)j_aafV9&tYZ z5;Liva!ea!S<R^rLV{qGpuV>ewUwK(B|eWm@MxGq289Nfnicm(&2S)cVyp>h<E^L; zwxYITJ8G-mK|OyQwKZo^p{_?bG;kNx*7iXyY%FTLDURXmDKw+u5#&T!uOTPTiZ3)@ z?1kynN8{yKj!LebSOpJY5`KUR_2-W9LrjvjK>lmF`DYq#LM3<2p|PzDTWJ)Co|TS# z*P4Ns;Z{_Vox`eFpT=s~47o$BHmFEULTyngYGPqjXjh;nzQ^%fY(>59Fw<WbY^n3# zn}Sw81r@rrXydb39gm;}`~)o*VI~X;Y183mOY%??>4$MR7RfJboYQ`%;}%SyeJAGN zYuJVHtuqufP=^ubgKn5e-GkcO*^bwuBDESd;0KQ1<3#ESBh5`Z4QEq-3$?X9M;XVV zB2<p!aVdtCjmId|!T8aZ#kFmvViI18TFEF>WLBXcpF;B1YCXoB|5>Q-S7HrZ>a<5N zoB9UK#J#9~&!8p}H<tLTq25^YKnv8K7oxJ;jS5*APQXf3WZpsL#3Af}f5CcK>k9L| zbku3-jOwpHDt9JeeJn=h!u%_Uzb0@u4cgOx!8Cjcb(}tMJcGIsQ?4{-p>DVWEWk<V z#d|OhtB*5T-y6G7UxJF@^N#OhL+U?=okHp#%$~N#+I-L#>*H`#BucO*mZL(w7*lYi zQ-1)pqNlJm9>!Gs1@*lYHeAQG1**R`sD+2SQ&1=iP<uDjsb7hj@f6fRi%=b`K!th@ z>iNy62|tVc5L&OH?tw)1OG(`lHBfuhz}-+=F&Nu3zBQ79I$D6bT9=^){1a+LM^MS~ z3u>ZuNp(%25vrqX)aTt$D=tLlU`;~4Vm*ynm^{h+#`MOH)Jri_=YIo*92#E7k@&Az zibE!w2t0>6B}Y&f$~jbsTTC(c#6X-$-Gdr%FLI!)c2l_v@M^pa_o1%dv}vZ_0-PA8 zp@_nI+>ToDWVd<6x)xP`*r~sTEvf&AnsCD+^Ja4?cB6hhD&)`Oowy52&|S=BguAf< zo71SRT!rCy3U^Uhfg3OZ^E_st?%0+3c<hX~VguZXP4Nh(<7w=Jji;Lkj6+T23DlOo zfQk4j>bUMf<-(ci#J?SdYBNl>=V2A<g_w&YPy=6!NAW2fh!NslfQRr#Z0a=~KZu&x zyQqFnpmOUpR>inkrk;eVH<(5Il|;>H7>;f6Cal1|7&qJ8U<IgiU5ZM+`>`25gG$!- zP%HWpd*V;n9J}~TB*vhQ;bhcS%tGbHD`5&9C^Vd71{jEJn^lP#=m_c_IDyqM(QlHd z4o;)q6*ZANPy;@RweVfkJ#ozOB<jL(1<Yw_j5Vl-+f!&mp*yz5DcBgV!!*1bHNbP& z1P`Gmb_!cyHI7Pu%tU4XEX>ATs0p1y^^-E!T*VzxNnD6MbpB^iP;%UlHSuB8-aL)n zaXTuzPh&64E;CoF7gdj9KAylr%nF(<2;yMsn=uc6bj%Ey3u_{F(fOZ6L0NqdYNk&+ z^><N8_7$pw>~iz@G}H<fqLS?%)JmU6h4={8#UC&Q<2iGBt^w-vJZywRF_ZDFVhVk5 zIqHjhunxYDo$zbau}rHpThkIdQtyS@lG&JrOHf<+I4V~Tp|<X0w9%Spwyq^=i@IUB zA%zkO4R8VGVg%LUF07B=qfSYc`DQ|OPy_YDWSoJ@h549?Yf%e$1r^bE98X{d^_o|4 zTVmc-#Q$CjYiQ_#`B$5j22dS@a6Dd*z3@ZK!6pk#$cJDf>N8OTU5lE?dZ&Fmwx@m& zHL>`GW}FU~O5MGX_&23cPQy@KfeQ5psF@zaB&@o~gf0a&U|Uqj{jf3mP$6G}J@7WX z9A8J$z-q`iiqy@hoVW-3;}c;D8sM+k9Dl`b*!&uk<yW8{ya%<{$52~!4wc=h*P4rK zB5I2sK}9Z#iquZj1b;wnWzEIren@u=ccRdT4=%yBxBwNZjo206LS0bt*O{#EgqrAR zROIHOCU!HbpMOC`<}+0Crd)4XSK<K2b*RXk#L+tceQz)q&q_?>gKen2c@c->e$>5S zFEJfvqgFBnn_&pka3$(gY(cH~Bh*CCq9WF4sY%+7*pm8{u{z<NN1-YW_uwFW2sPlh zs8jG0cE^lm=GSgAwxE6uY62Tjk=X8hegqS#pGQR|{*NYinqvm_&e#jbV-?1?R;hq@ zVLINAn&EC7hF>_JcfHZP5A?>Wv`@o<I1{y1n=uKGV*-AMTF5EXvDPn}7MO<xI1j^v zDLhX>GmBqtLe~ykQ6GRd&T#6>umkl+Q7b--x=4P+Ol)<tnZPjA_s5~yuXgGiQ44(y ztKr)>v;Vaz9HOBHevbOWDbz7byTz=eE9zL~qm4lviMOL7_9-gV)owN4YlS1I_jc;b zQ5W3<sDWQZ-L$)JCH`9ZL8sw7)}~(jHnY-ZSd;ot)WpW2LU;{k;cirDPoi?9)d~}t ziI_ya5_R4eqmp)&<0h;_{pGOpz<z8)!zZYj)>vs)-U{nc&qPhM4=RMkSd6n!*}m6l z{{j`s6WA7i#(ZoQF_D{s{iugg6AJI3ppd+WIz}I13Z6qvsLt)Y$znHDsHdS;ejV!b z$8a1Tz)LWDm5GE87g67c)v?tb=Hkgl)q7zFo&P};)L|KR!n;w&YA<TV-{5LY;UD=3 z{}3drV2xS9pK%iPuTV)jc&%A^G3xs_VS9WWr{GcSioMtAeqjI0C^V*F1?t#rLOrk* z)!}EDh;etCj;dic^)9H-i%`dPk>duePyH3Aeh3xepHQbF{w}lNwpdN)e>4S!d?GeL zKMuefa1_3df54`9n>`QV80v?xCw5qGE|lr0t-24@-<zoZKEhNyjZHD>9%CB}YflR( zXvQALt1*rG3RFjrVMBZwm0X8WTlFb+#0DF9S8(z70%RAgn)jJVJ%CEW{iwecpGEzx z_?nI8Z^g+E5r6%$_}7QbAB!73%<-b0@CXCq&`su##YK<C{#a}sMIRlG+-xTFBI<9& z2k?)yCvGu6<G11->PK(_KCsnH$a>ry=MJbX?fH1v6#CMjBpif&uoMgNG3<+HFde%; zVfJ!@V=*epe5miQM0NZkD&#vc84qGT{1WTnFIW?6hok0LG)0BB9qNIusEcS2*2S?{ z3q6>MK~%>}QO~bMef}`&d)qJ-ccXIP2&$ixsL$h`H1|O`nSwgXL(OO)>U@sEF*p(X z;}%p$CmpLjWjbtu%8gE_Q&fnlScFZm0vq89RR51SpKrr#o&Pr|=!<8u8>T*OeqM*7 zvUL`=#wGYHZo<y!*=8cP7OPT!0H@(*EWz5(n5_t6F7^42n{Y7oqnM)epFyw6<{qd4 zy;y`dU^DyzyJ3~*%qi)EHuW*6NQF@M#v)W`uXEa0q9S*fQ~wb48}fx?^7C9kjBn*r zP?C*DT@-6kdwCzW#I4u^-$5l?jTg*wxmcfiK6b&8XyXm2?>~sziYHNf{~GG~!`K8* zV7LW^q!&$xS=fMjXVl7uq6Qr6cojCIz5(-bJ9fvjsPE-&H>ac!FQ+~mm0QoEPQ@Fj ze)psLd4D_cZ%W}T4GLBLm&{x5IGjfPUQ~9+?Jymr;6Un)P{(sJUWN~1Bm4oC3pHLg z3rfYV)YDLr7>(MZ>8Od7zZ^E9T}p$__YTM7*ou0US4@Xl*phl4YUN|G1>TA_Zb7YV zA8NoOn1gk9nwzvQHl{ua)o%srXMA0l!T<{QqGtFhYG!9qA*=DK=_nbs$Nf+_Qtq@b zLOs73wYM*!LVExQ;we<WJ$4y~;Y8}wP&aA#1q!n%wA*dIxXLk#>Uckn$K$97^!bz7 zlBt+SJ%CAgA8H|+QIR=`eoTJNd1FFFU^gmP{(@Y1Ve5=3Sn;o$pVc~;$pd{*9ZyG1 zWG=?xb<XEYP<y@wW7&;Ws2|1&_!msXUVF?I_Qwv?hhROdz`8pBH&M`WxeL|dBbbCc zQ6b%nt?(14z1kaQ1*w=udlu?A4R$QThSV22u0pMRGwK-s3B72&Ndy_+nnhs<-i_Mh z&ru;vd&}4x)!`(^5Nc1Cqav~aHPQP~k$4ts;vUrLIfyCvxl{iMwV<TE#J@F#917}i z3|7M#s8E)oI;=!RWEob)2-d(mo%%zl32#9S^fo5o$EZ+$j@9uTYC=`sHh(K_@V0aQ z$Ize$0;qxJqb77cYM?dP9yg*^x(_eG&rkzq>@zFsfy$LhsEPV9w%4eI-Q;|JJF5Q& z_Yr?(_j5ETY3l7azvBVyOnn`8#J#Ab`~`Ec?K|fGfLw{C)E`1cpwYYLl=Q%K>Jv~A zUWhi{hcj^}YP=5NKbv>Fr8t&`!+06y957e!Rj7_Ppw8_MT#sq*nH4{eZK;3c)T<se z_4cUaItDf2a_oZ}u^WDjifp*?A@j%L3@oAHWgLfX4s%3s5h@pcL>;GdxB}yjnB2G> zHP8dt75{{t@jN!b-1p6|Y9T5jC8&uk#R)q9yC`Vy?GMZzWuXS@j2*Bi*2U@A4lA)f z-iw;pHq6ECsDZ!7qu82%24dWY=Kt*u#v7^Mi0ZfgN17P>UqC?}O+kgkgG!#cPJO;p zzX6p*H{)=;18>4lv9F&0i@Cra$2{sEVLePaW^UHDm_mIJYC(U%o?!}J3eE9;R3u(O zo!>W6TX7hb8@V5wnJ+;N5XB<=3^mY@<0djwQ2m530~g^m+=$IE@e?y%D-747p@2di z9O*a>8&WUDWL$=t&^l~`4`FNEi;eLVreUp5%>Y^0gnA)rV#U}3=V5<bgY3O^<Wu6G zO`+>&W=6%RjuvAhya!w2GuQ)<U?Qe|ZYI<iwN-7fJLX_FoQ}QlZXAM#oqDS;%+L2! zETnzi7sS6Oh2t~~#%5od(0Ux#U~Sspz%F<MmDP2=G81isst>>doPgSzyPePXp%(Bh zHpMz$n}xPVMR;hKf|8*Kl^j9TgG-zT?n6c5In2a&QOD;T>U;U$n60}EJ5isA3Ah}! zH7igT*e2ALypLIU8rxvF<+mnT3Q@^18f`2^?cEB@#s^U|{xfRD-=L0N{CB3quBc-< z4Xa@VYC>VuKwD9{bP$ybUm^<%Th&jP7387zzQA!RW>8;%9=s3l#cJQ1t#|~r(vPqX zeuCriuc*Bre$w20H=<70v#3ZOLXC40TQI&=`v>zu4z}lm!KhFNQG0$Drs96o)_jUX z(RIp9U>Itmqc908QIT7W8gMnL->s-E`2efqY3#xHOxe6H_r!9lOEDSGV+z*!(Hxs} z)Bq)@6$Mb)ehUu4UDzM%oHlzs3bj=}RB~U3!|@H&7Bx9T{1v)Z6mqaLYKBEv9~WRP zT<N$0m3)t3Tl@wUse1ov?*2a5fqD>?^&3zVeFYV{W2huNkLst<S>mtITzS?c%VNBe zdekxLCleVrj;4JJw#K-hO$gg!D)n5{$_8Ogyd68?y{Lt}gG%l%P<vnHoH-S(&JlmD zcnl4i=^Si;%TZZ-KWZg=occFdm3r!V^H$pwHJ}@Hto+y=*J3*EM`in8u^HC;#Y7?x z_4)8H1>I<KQK6~CdbkpmR1aY<d<&~!^<Ry3Q5`fyO)wva;Uv@qAI4VrIBKsC;6VHk zyJ9QL70adYcnU5WO87Spr(-U9aS+~#1$YdVM6F$}*u;FO$gM;T^eEc6 k8<wE^9 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 diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 06a9621d7..d82b6bf72 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" "MIME-Version: 1.0\n" @@ -19,21 +19,21 @@ msgstr "" "Language: fi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -46,95 +46,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -150,60 +138,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -211,833 +193,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Moduulitaso" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Yleinen sisällysluettelo" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "hakemisto" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr ">" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "<" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1051,188 +922,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Sisällysluettelo" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1251,253 +1144,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1505,11 +1392,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1517,25 +1404,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1545,15 +1432,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1564,22 +1451,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1588,36 +1475,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1625,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1655,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1684,214 +1571,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Luvun kirjoittaja: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Moduulin kirjoittaja: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Tekijä: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1920,12 +1807,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "" @@ -1933,7 +1820,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "" @@ -1941,297 +1828,262 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Uusi versiossa %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Muutettu versiossa %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Poistettu versiosta %s alkaen" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (moduuli)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "moduuli" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "moduulit" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Poistettu" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (poistettu)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "" @@ -2240,209 +2092,200 @@ msgstr "" msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Sisällysluettelo" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Moduuli sisällysluettelo" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Etsi sivu" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2454,352 +2297,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Tehtävä vielä" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2807,66 +2679,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2881,106 +2772,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Huom" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Varoitus" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Vaara" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Virhe" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Vihje" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Tärkeä" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Muista" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Katso myös" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Vihje" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Varoitus" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "" @@ -2999,7 +2890,7 @@ msgstr "Etsi" msgid "Go" msgstr "Siirry" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Näytä lähdekoodina" @@ -3148,13 +3039,13 @@ msgstr "etsi" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Etsinnän tulos" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3196,36 +3087,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Piilota löydetyt" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3242,76 +3133,89 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3325,140 +3229,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.js b/sphinx/locale/fr/LC_MESSAGES/sphinx.js index 6837bec76..ab2496086 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "fr", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", dans", "About these documents": "\u00c0 propos de ces documents", "Automatically generated list of changes in version %(version)s": "Liste auto-g\u00e9n\u00e9r\u00e9e des modifications dans la version %(version)s", "C API changes": "Modifications de l'API C", "Changes in Version %(version)s — %(docstitle)s": "Changements dans la version %(version)s — %(docstitle)s", "Collapse sidebar": "R\u00e9duire la barre lat\u00e9rale", "Complete Table of Contents": "Table des mati\u00e8res compl\u00e8te", "Contents": "Contenu", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Cr\u00e9\u00e9 avec <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Agrandir la barre lat\u00e9rale", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Vous pouvez effectuer une recherche au sein des documents. Saisissez les termes\nde votre recherche dans le champs ci-dessous et cliquez sur \"rechercher\". Notez que la fonctionnalit\u00e9 de recherche\nva automatiquement chercher l'ensemble des mots. Les pages\ncontenant moins de mots n'appara\u00eetront pas dans la liste des r\u00e9sultats.", "Full index on one page": "Index complet sur une seule page", "General Index": "Index g\u00e9n\u00e9ral", "Global Module Index": "Index g\u00e9n\u00e9ral des modules", "Go": "Go", "Hide Search Matches": "Cacher les r\u00e9sultats de la recherche", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Indexer les pages par lettre", "Indices and tables:": "Indices et Tables :", "Last updated on %(last_updated)s.": "Mis \u00e0 jour le %(last_updated)s.", "Library changes": "Modifications de la biblioth\u00e8que", "Navigation": "Navigation", "Next topic": "Sujet suivant", "Other changes": "Autres modifications", "Overview": "R\u00e9sum\u00e9", "Permalink to this definition": "Lien permanent vers cette d\u00e9finition", "Permalink to this headline": "Lien permanent vers ce titre", "Please activate JavaScript to enable the search\n functionality.": "Veuillez activer le JavaScript pour que la recherche fonctionne.", "Preparing search...": "Pr\u00e9paration de la recherche...", "Previous topic": "Sujet pr\u00e9c\u00e9dent", "Quick search": "Recherche rapide", "Search": "Recherche", "Search Page": "Page de recherche", "Search Results": "R\u00e9sultats de la recherche", "Search finished, found %s page(s) matching the search query.": "La recherche est finie, %s page(s) trouv\u00e9e(s) qui corresponde(nt) \u00e0 la recherche.", "Search within %(docstitle)s": "Recherchez dans %(docstitle)s", "Searching": "Recherche en cours", "Show Source": "Montrer le code source", "Table of Contents": "", "This Page": "Cette page", "Welcome! This is": "Bienvenue ! Ceci est", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Votre recherche ne correspond \u00e0 aucun document. Veuillez v\u00e9rifier que les mots sont correctement orthographi\u00e9s et que vous avez s\u00e9lectionn\u00e9 assez de cat\u00e9gories.", "all functions, classes, terms": "toutes les fonctions, classes, termes", "can be huge": "peut \u00eatre \u00e9norme", "last updated": "derni\u00e8re modification", "lists all sections and subsections": "lister l'ensemble des sections et sous-sections", "next chapter": "Chapitre suivant", "previous chapter": "Chapitre pr\u00e9c\u00e9dent", "quick access to all modules": "acc\u00e8s rapide \u00e0 l'ensemble des modules", "search": "rechercher", "search this documentation": "rechercher dans cette documentation", "the documentation for": "la documentation pour"}, "plural_expr": "(n > 1)"}); +Documentation.addTranslations({"locale": "fr", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", dans", "About these documents": "\u00c0 propos de ces documents", "Automatically generated list of changes in version %(version)s": "Liste auto-g\u00e9n\u00e9r\u00e9e des modifications dans la version %(version)s", "C API changes": "Modifications de l'API C", "Changes in Version %(version)s — %(docstitle)s": "Changements dans la version %(version)s — %(docstitle)s", "Collapse sidebar": "R\u00e9duire la barre lat\u00e9rale", "Complete Table of Contents": "Table des mati\u00e8res compl\u00e8te", "Contents": "Contenu", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Cr\u00e9\u00e9 avec <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Agrandir la barre lat\u00e9rale", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Vous pouvez effectuer une recherche au sein des documents. Saisissez les termes\nde votre recherche dans le champs ci-dessous et cliquez sur \"rechercher\". Notez que la fonctionnalit\u00e9 de recherche\nva automatiquement chercher l'ensemble des mots. Les pages\ncontenant moins de mots n'appara\u00eetront pas dans la liste des r\u00e9sultats.", "Full index on one page": "Index complet sur une seule page", "General Index": "Index g\u00e9n\u00e9ral", "Global Module Index": "Index g\u00e9n\u00e9ral des modules", "Go": "Go", "Hide Search Matches": "Cacher les r\u00e9sultats de la recherche", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Indexer les pages par lettre", "Indices and tables:": "Indices et Tables :", "Last updated on %(last_updated)s.": "Mis \u00e0 jour le %(last_updated)s.", "Library changes": "Modifications de la biblioth\u00e8que", "Navigation": "Navigation", "Next topic": "Sujet suivant", "Other changes": "Autres modifications", "Overview": "R\u00e9sum\u00e9", "Permalink to this definition": "Lien permanent vers cette d\u00e9finition", "Permalink to this headline": "Lien permanent vers ce titre", "Please activate JavaScript to enable the search\n functionality.": "Veuillez activer le JavaScript pour que la recherche fonctionne.", "Preparing search...": "Pr\u00e9paration de la recherche...", "Previous topic": "Sujet pr\u00e9c\u00e9dent", "Quick search": "Recherche rapide", "Search": "Recherche", "Search Page": "Page de recherche", "Search Results": "R\u00e9sultats de la recherche", "Search finished, found %s page(s) matching the search query.": "La recherche est finie, %s page(s) trouv\u00e9e(s) qui corresponde(nt) \u00e0 la recherche.", "Search within %(docstitle)s": "Recherchez dans %(docstitle)s", "Searching": "Recherche en cours", "Show Source": "Montrer le code source", "Table of Contents": "Table des mati\u00e8res", "This Page": "Cette page", "Welcome! This is": "Bienvenue ! Ceci est", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Votre recherche ne correspond \u00e0 aucun document. Veuillez v\u00e9rifier que les mots sont correctement orthographi\u00e9s et que vous avez s\u00e9lectionn\u00e9 assez de cat\u00e9gories.", "all functions, classes, terms": "toutes les fonctions, classes, termes", "can be huge": "peut \u00eatre \u00e9norme", "last updated": "derni\u00e8re modification", "lists all sections and subsections": "lister l'ensemble des sections et sous-sections", "next chapter": "Chapitre suivant", "previous chapter": "Chapitre pr\u00e9c\u00e9dent", "quick access to all modules": "acc\u00e8s rapide \u00e0 l'ensemble des modules", "search": "rechercher", "search this documentation": "rechercher dans cette documentation", "the documentation for": "la documentation pour"}, "plural_expr": "(n > 1)"}); \ No newline at end of file diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index c82ea57e072b05fb853cb136938d69fa0e376d1d..303dbccbf200793c3abc5f7c8292419a856322e2 100644 GIT binary patch literal 74330 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�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 NE8>aI<dimE`40ss=w$!^ delta 17207 zcmeI%33OCdzVGo<gfYwsVIB?vWC#gih7jg}fXpECR7r|ZkW`gbl>jo7B7(G{!V$yJ zit|L<qNN}r4uCkcBCS_N1aUy<)^<V#2W;Q>SNpU;cdx$py?5Vz>%Dbdwx7LERqf%w z|9jU?^^yG*ckQegdq1V(28(~5t6*78v1xtP&i~W2qh)QR+6*&r2e!qJaFxfhk~1yq zW<I+v%d$S_d3tBdYRL0CT`cP}>g~H)))4Ax-7KpCPVa76SMog4!?MDb6|=seP|O2w zPu_qBu@i4RiEF6W?`>Hl@D6+hKf`IbBgYJ=ZXe64Nxd&t!pmI8VF&7yu`jN`VfY;O z$7;C@mj12b6sqx{7^`9#w!s*xfqPL6AHr088|&hySP#!(ZLCW#HLxXWKv`HFb5XAk z!&*26>tGSqq<?D>1vR`1)$nH22Y#nF;M1rNzJhw+yQo$A9Mw?8e&+Qww5hj7wKD`Y zfXS!{7T^Rd!GZWZ#?(*}@sN#C4R%H?#UN~i(@-5pu`ynU4e@T&jGuO2e;G5WA47ev z`T)yfb*(no0%u?oT#Bu6;{f8ni^3irbj5`XOC#QfRd6TH!Dq1$?LlTKu0`_9y54mU zUP}E-Ou?RmEh`&GpgLTF`B;u=_#<jyb@F27!KHa7bTd(*TJCxsD)j47xp5~FHR~bw z^*>`f>fg9F9b#F{sSiPdU=^Z1cMobQAI6rr8++lg7=<<z>JK$D&P9zd57{x+G_>(1 zR0G>lOYsb9sop@n|6|nB{D2B|J;I@myP=l0FKS{FQT@$wjjg26j0X=PJIZ<q*?Csd zF!RAam`;5>j>1w@a_z&)_!cJPQB<f;xh4%aN!9}S*Yfh8Ik*j#+%-ldmNI5Fr9kwo zbmX&E5nhJdQAu_Vt6&-rt70?c46!ajMPdeOi9)D>#ZaMLhZ^`RuAgHo>UBn%_PSw9 z?f+Z~n)xhL=r*B^yRaG_L3MZnEe~NP3<_zJ(Pl}ypawDkE8s*VzpTmb^DVBAU`3wq z!z_FWyV1XOmV!F!IL5rt11nMYq1JYR>(!`8m7_X5>iQK<r(SWaIZ5Z>0_v}!mbUje z<78BXN^vT##+b74LkhJqX}o1|Y+I?Aj6+c~8Hb9@1`Oa6NZwklCz$;|ANBc#SRGfp z&mGL9eh0S0gQ#}Tq6Si7BJtOQdK1kXTA<c^7%IEHsE~zm8ZJad<_%O%9LA3L0oKEs zmz&R}qjpPIRC@zaxibyZumF_{i!Ues8o+Hl(3(DgP4QXOb~@^M7Ih+~Ofq&rop6J2 z5Y9k9ZpAKGZL-PwT<k`D6)J+eUEjk7)PIV(h14l#O*60-FZ9PW9F2-ZA=bcBRH#>A z3a)qS_o8O>1h&R^F%|!c`dkVNuI<_a)!rqjiN|_UP$&nX)^3DbpM)CmEL2C!Q4Op^ zg?c0E{STuCybJjvv|d7;1C>}WC3Q<wM;WM&d!Ux$Qp})#Yb*sdv=nu;UWe-NMbwOr zppxaUsDaiY)ir>IsD?68ulGRBco;GUYX<TWYX^3~x--moOfGh!9>R9o|94Qx;=#)} z7Qe?34xecv@Dys796=o@=TISTG0U72c{q={57ps8WJ6i)XLA<d61)r#p^o0Bb4<H~ zaC(df`4n!)XHYYq=`~lZt5Nj_-TG_TlKOY30XN7uH=Ci@gZfHT$amuwd;ts5Tfkw2 z2e1sA^H58<0b@xNeoJ8;-hmadi_dh_6T4HNie2$0tdIM!2_C_8JcE6)(OeUO$*6%m zhFY?xu@de_ZP!;&xo~za@o!I|YLUtIE?AlRFzk$DP#s^5$M6ZvLx*?|!o&C*Y~nW! z--jC5o2YiaMCH~Qtb!Hhn|d;;UVlFER}wYn!DwuY*JBy>#|jI~2{s6|uS2NhyBnL~ zlc;2U8#SXpV{iNsn`5_P6Nw3^Z8#IP6!THJu{TDcBZUSfrh`0W*{p@Aj*g(tfiJNd zRtlITs*Q7~cSjB6R#b<NV@-S$bxwTf`Zemn@dV9oX@u3O$1*5fLZK(N##z`1ufe8x z8>)k+urVG+4eT3ifmPWm1F;<{`{!dOzJMCgH>h?}t}sV&CsYy-!(Q6|^C>7f?#3GU zAZl%PU{8DomEC8s4`znV(dtLl<CueA;xOzGF-s7^OQ}DMUGO{Cc2RR+O~-E9|MMv* ztGA*?y2Gu%iAu6hQ4M64n%C!`X0QyEY+F$?-Hi(I5v+r!F$I&@b9!HW)azZaA&$Uy z^lueV=!-X?KKKgO#`iEAKSOQHrVGu|w8T!-`=FL&0d~MusHJ=ql`Dr)OZO4lXe}~J z*AlfvJuudQLLr6vxD-31gKF>vOvA5GyQK1BGoae2js{>|EJEeNVr++-P!rgTis&1z zUt$~THLm2e#4cA7|2rvc<Uu#gSz=}yL^Tk_skjpR;QN?`jhC8`566bo=b<{f8a0sH z-RI9>2K9GP14~+F`ss+N)V<4ye-jF&JQ#uNP@z7G8tI3aj8&GK(50X{Y>R4m05-y6 zRLEChFT5E?;mb%GSPke$ky?w&iLE#gAB#~?2j60I`~`bp^Q%mjUygd?R@7R5h+3+1 zsO(O?+8kWdQA_j?DspjDr1qf(cp9~oHCCAOA>B2WO`$I@^uxBe6cws_usgnnI-ruS zF<GCD8t8ab<gP#sY%Qvt2T+kYiAvs-m6kOL2fJ=YMdoW9ul?WuT66HM$4b1g6SX#b za5VlAbuQSeOoN%Inasjw7{#Wz9<?hTLCyF$YM?)$BGz!VN!m`>lKP}Xop3LrP=yCu zaR}az>hN>aF8C39Vw>yCx7|!^LH#P!0Pa9V;u-h#BUp+0^GtueXN9NSRuihXb@ zR;GVzg9`XtOvk%XBRqg3@lWpS-G5{51G!j*=W{R*=b@JBVNAx4u_Atfn#eb(ZLM!M zO|T0N!bKRnl)`Qb8d=f}CUotw74^YrW070G4m(o+9csq!q7IVpupPEqYX&e9_4&!D z=S$rBJ*bJkgjMnNwXA<F3Ws@69Z#V?@C|C4HNDZyq&sR`<)Dob9E-Q0BK8R?)KzaX zpKFC<sOP%%8&C(`y{L}&pibHYHxYl${2lkf&sd9kt((nEn_&&=BTxgIj0)jZ*Z~iq zLi;r;M_R2jk(rLk)EA=m`wCRjZgAa(wW&WJbKmesyo3iQP$R9r-psre)}!7IHPF7O z5Efto&PQeYLHGHeP?7u++u~1{gRLABxmh@XdJHw7*mD#VlDARY=s2d}In;n^-@;86 zd!Rx+2Q~9+P_O?UC*xb#4>LEINEG98>i1wZY;~(ScrsD-KG;$Fe+UIN7{+Y84YjQf zqGtRTEXNf7BOl^F1j!n-(ahlAa0c~HQAv5}CNuK_)aS3q415%4;W6xvxtn!9u>N5R zjd-vQwQaVc-mo3j;7P266}Fg$s$wSfZm8GuQQLL7>m8UzeXm<TjEeA&s9lltTQlLd zSXKLfJOzb(I@ZSk4#sP79KMWGu*q#^&7(Mh`eE#i9d9=W%3Rb^-GyrJRaAS&F%{2X z6HMM}yaZ!f(?Jw8VxQ|0Y)X9{s-fRw1AHEpT<@Zm>J#jQ_3z*>W)Hs?Agf?izRN^v zD=G>9fcmZY8`N*bSKecOE3SS&@z;;VKiqGAEKYfl?M3~ss2_{-wwWJ`XZ$YlW3lxP z7SrH}hs}U?qJArW9oO*um*1PO@imWdi=zH-I1RUMHv{?+Yf!)BQM067AB~wpZyqQK z`(t06kHhc*?2lh#I(B}{WbZ`On$AKcSrO{<Yf-uKBr4?3U>$tJt$&Q#_h(T9sS=Bu zZBY*u+H}+#vRwP28W@dQ%h|4FSeN=*)cdz$O?(7(fbGFld=<5{AGq~1sMnJpHxr6A zqM(LzQ3IHO)o?aWKtB$|J*fBnf-SKA6DBu$ppt4hDndR?!|Sj)-j2$hJ*WY`g$?mz z%+&rrM?oL#u*2MZMxi=biE8*BY>m(1`}hg=!Tmc;L)Me#+prPN;dx6e#1*KM@)UN) zFI??i=H@gW)3pCLQ|Qhcwqs*FiTUVx%G3+72lW`H;SRL%RaB%tcRh;=t!KA+UI(>} z8)Gug!glD#F1Q|>)4%lsg|T=7wWi&lHZ!{vTT-8cy>JC8*><Cn??Y^YpQ4hs@*Xp= zJXAYAOvQz$_g#;g!2Q?^_h3w+d5=OBtoe+YaT;o7*{BY4T<4%ZxC(Rd9_)$7u|76< z)+}WfUPgT!Y9P0vmf{gqyF0KsKKCr~*T|0ZKuPu!4#&RFnI9Tgqq6%9s)5SSn;TC} z)b<>Y>Szn9!BeP-RNiYMR13AV4N#F7h3e0X8rZVEF%#OGc#zJ6ms~%?R@7_lGYxjZ zmeg}lGoOJiupDjNiS_U>s>9E5n1?p@o7an9FcVpe8o+H>0e8hH<WqPWHNqALOvt;U zl4dG)!b0qZx1d7!GG^hMSP3h<Xx6qWHl^Mi^RN%9-K*T!Z^7x*A3~j^vC1!*AB!WX zwLR|oGiu*9dD;94))j5)Yf+K-Jt~V2p|U>d6_f2LsK`vh0G8np`~<a>8GkSX>VteP zW{sgxnHOdu2ZH6pcIaR-K8=m>MbrWE5%$NgQ18or)tr!1u_E>PI1PiS$h?A8@DO&y z!>C<Q={0?h^>0E!Yu6DQ;y|p5(@--hz*cw-R>%8MYZ%8i_`3W0cc{=eI%q!E1C^AM zFcV900N#y$Jb_*4-x~e8$@;5NYy1aP$JQaEjarHUu2bCSAygLMjGED1SO=fP8u&6Q z<ZojNo^<O!pe9u9kHo(<g-i;X`FN~@3s9k3>eg4Fmcl`W@^-9=_qp}QQ3HM&)zML` zhF_xE{Q>J@${S`WTjK=k{of$|N;-!J`rxCej`pKw{JL8|g&EXOqYj$pZ<@<ycTAxk zMa^h6s-tbFCESBr+5@O|-*aC-iE8KjH;MmL3bp^uB#j?CP~VST@k{K4t==-pHUYD! zFU7IA4X?#>s0gfh+w6|JFrE5-RD@5VjWymezZGYqlJwRXg>e+V#)&xiusP8-qLS+b zs^R2!&A#n`w^Lt*nsJ*W=882ORlmZmZ$NF+J*WX6$G%wWJ@aKY5*3lyH59f`xDgAn z!%=e}-GsMNKaG0hnqy|0-h%6>Z$X7P^L^7%4;(;!3Mz7&usOblP4F+Mh*Ujp29kl( zwEz7Slq~yENp%pFd`D6H^&_l@wLdVo+t!#yeKhLaD8$aV0M+qr$k?nuVje#7q4{g~ zTfC2Y&yP&I?_(3~|LPx`hT5XGO%`fqeNg*750&*}-RDzqG<7dtkK3_7=AJP7d?|LJ z{t#;5$52ao8kMXKKQX&31AEiIl}kaPDnoU=0X2}@aWZa0<wnv;Gx8~@4z9&~d=k}B zlT#)#*{FyP#Wpw==U^E&!*@{qeTOlHyxyP8L6Pp-1sm{u5b8Xbh8p<-yabnHYrGd5 z;VY<<?*ys?&!5dcZ-E+E4z|ECI1_`YiNE$|(9t;RQ!}C^sD?J94vw9uEIx$2@HAG& zjL*z~x?mORL$D`~!X9`n_Q9udIDYTe2mQr-eJ{shJm2*fhS8fsh0o2UFc%ftm99In z7WGfD8~%XxG3yI6(;?WHdI1i?<*3g;kDAE0s0q~l((Hn+sL+o=MK}<npb)P@g}5BG zT^@4ZZ~zsF_pu$G#lC2NWj;3xYf}$mHpZ|jZbvQ6F6@MFq6V7uwK?FLqn0u@oI*7U zA=KJki8gLTt=%rn#Dl02pF>5U-f6S#GOz>nnW$}f9clo#V>aH8>gX`m#a~dlQ1_d} zgkn}_3Yx(*RLJJLu100=J?O(%@J`JB)-1&vSdn^_@66|G;8f~OQEOj@S@;+#<R79U zX`M0sG{P22!yXj$!X(VVAS%>bupjQnR7^T+mZkxYpxza0;&RkLZ*c36q1t;6HKBJ= z?Vdp`N&5FD;<?yM+h8aK?c*4(!;es*ivD17VigXgz6q=2d#D+m!X8-pNB7o@df#f) zTEC3xcmglQDnFTnYYZlq2xAKU{S*|co!AIZVj5cK%mC_ReX8woC=S53xEd9yN3c5{ z#*SF)XOs1PPy?NbO>ik{U>mV7#(yUM3eDF%P_i`pE6aeRUGK$F)X(8~9Px`ecy7Z= z)c2y6<|Q1BM^PtdhUH1L*9$cfKQ_Y{HpSa;06t~KJc$|q#DnHMNb`6SGwp`T+RLyd zhTZxtsL<`kA-EqEndAzd#4c!wJ*kgGZM&7Ih&+xOz=x<v{DNAVCb1+>VkZ4ip~*vS zyV<Cuieew!jFs_i)Buj58aRm>V6}>##BaqJsP`?xRv1H_kauGqZbL2ASD38VFR5hS z&>8FSpf`5L5vUn1#X-0il|+>)n}Ll&<w^wA(OR_eQMdjEYUXE9Gj3JIlQ>8EqjIJM z89>asm4X_$(|zFuxBdlcjZ><ckv2r_idLvy&>hv#Kx~NfQRl%m*bA>i8=uFq_z@~% zU8|W$Pr`=U|5s2L!wbJjJmCMo!v@s9L3LC;*(^x|RMvMyMQS1{`FyCEE=DEaeW-!O zQ4u_fIw8}mo5+qr<wy+M(!aHng4W_Vrr@Wjto_+FwT20Gd(`WLQOP+8HPB_KnQuVl z&Sq5ZJc4TXEiAwfP?657X_kB*Ccghe6g0Etn1lDBjUVCwtWe7gXfP`IrlPh{K59TQ z)PUAwd)$Qz^~b20SFUYd?~IeFPr-h;y|yQo2*sB?xRD2K>zFm)fm-XQQQ3PC72>y1 z4JOq!`#TG@t!ATUybM3UyYUlTnc_*DsPj|J1kT|co~P6^Ng1if{@2WJ;(;32i8_#u z;Vi6{X12>b)cJ5bD(m;4LjI2X`cYJtr_?tS$U?Q#4K>p_sMoimw(D-!V=)R^>tEal zY5eS|5cfo_)d19t3*F~8p+de9b?|J%!MGR4VP$?!_2U#=qUSgV`!(_;E;?JW5A}CZ zOBG9NY#Qv3YH&O%tNo}EFLT|5TGJ;`13v8f1u7RRHZkqAL?vZ6)b1IHI@+h8PQ*26 zB@eVmc^CNR`iq^j9d7QB=P$Gu2TSdOdEP*g&yLRX*^$M8sCSV)HykXnyJRi0qd~iC z)}sFLYcoQ%D%pj>fY151_kwtN&Q?#Xpx7IUw71$s>~@1QGVFq2puiW3o`2vAl$Kmv z^M$?9VEFvAxut=Es6QAu|D?oMlJC3V9nr-h-}zTd1HZmGztkC!yDok@cYD$$9qiG; zs4vG31Ou4^Ck!4w+%ELZ^_CV#?J{q1sm~6DgJu3g=cOkG#_t)>yJD|G=IJjA_ya}u zT(7^_S7;3m78iR%5j`*T<$J?CC@Jv<3TZNG&kdFa3Ull>k@#nMZ&!?eGyGtM6kl=3 z_6G`mi+o|Xjrg-8pYp_ty;0wy*@eM^(h^@F8p-mOM&|{2i<+?8mH3P1MHQ&1*B`iG zxGX?8l4XxA_IVjYss5Lqm6esQ?!5{SeMO=^Z()0e5w?a0m=|mJ_nk%k<D$jB|J=^v zq0t#hwE~&m;?O*AzAx%8@D@88#}!o`U8<FGejfMR3d2V_Gbf}wo5nvIk4@-U(P=W} zx_INMmwT$UDI{e|n5*M?tL+7~2d0fVUwdr&22TrLp;FCjN1|btrK4T!k3{X@T(=%^ z9-Z+-&5pKjQOH*iO}sZAnt8b=Hc#u29}F(A{Sjhhw`mtFjTZXD?IT&q$_aAX8?_e( z18t*rzR&jN6CV00^ZORs{-|9VDE37ni9HZ1jp_+)EblbZpC9&y7kA2Ymoc#forb9| z)>2F1EiTr(8}oKHP}uf{Ld8TTu~hjib+ONRcGj~UN_-4C>I+1)gl)nE!xu@URM-~@ z1<8nlU^vW-iWfVJXP3pln*AqF%nVL@F)=yzsxK$GwOz7+Y1x?}yY;X!qlR?KDh{#` zogyTTuT!C~Oz-WaKty<Nalp=u*saG-&g*nOAph<Mc`qBK<$T7|Uah#TS`&kXL2F{z z8;Fo^!EiACiMLLLm|fsi1~1g+Do_wL;t><ZjJ7r6zh4Y%s*ag|@`;eYV1ZKh-}_9s zG+?J+QNT83ctkT+<O`V7B;8)<kIqYUpLNB&f{+HJIV9S=I46`=3zQT7h(dZnbHBEB zK?a$4m~bRoPM+vy4pWU?ygD3&B&;_OwKLC;aVV4e7wugX6U}ef#8D&dM3zksh8INU z1w$81ZC*5V;fyZ(Tbd_YDJf;QM10Xi9{Q9EvrQJx=9I|y%?*Zqc7Cb9xKKylKyuY* z`eCz>_wla_x+PWQys@1&MbWVwUbEfvbN1X~ZxL&$q+Litgh*BnxWbE$DvmfZ<osuX zAuW(HAaP`6Inz(P5WjO?2Ty9Edv8G^T|(X>A6+^J{OglA5S<zG8^tHjU*<96c=FG! z;%65WC)JAj1EpjW+b6(Ia;60XH6qE=Bhf;JJ~O$E^F=VXnnrFF1Vf9RJ2ux#Qlo=I z0~3vwh3uM%jpDzOLxUuXuMX|;#FvL#SFCwqGZE*Jvh=@u@_t#nI_?%=DxCCc_~)_# z^-DsEVk8<2EewV^gjsmKl(X=9=fuKXXYry><JT<i>~Sic%Z>M2lI(F7Fa4!fVlV%# z8QUpd7LNb4?Bk?()fMe3I8#@qnrRoWT%z&EPp#}+(V4mCv+{3idiuq${!M#NQy$wE z@eg@*Kys4&?HfkR_RRI86Q8Sb!+jp-z}m9-6*q45G;_b=5?$+PNHh^y;16j6PVJl5 z)bR&&?2#UPx#?VrUwiY%m7FcNHZJeb%+oC1vV6WLe%Ho+9*^zx3+Fg{H#MhJf6Wk; zD%s&6$DF;UnUj6Gp7Y_R`<<IN*K0gHFgKXRVVDStZ7mG@S;8WF;+VmXv$<trbspc` zros7La?yTuUfY~rGZCglvMa79H}{TRxTSgaw^kDq(gkLrpYu52GhZU+<J#nAk0!nz zbVlSP+sxDYhY#p3kT?|n`TNI)oz7b(#(HID_sZ<j+0O2q)45wlcJJ)$<gsHi$NS3s zI^8q#*cUl=m+a2GuXkqWY&*MmPM7W(+5D3{(i@3po<Biz>=8b1Aaf{3>c0Df40BMH zojZSSe(8X@VV^H+Znz(x2o#mFLvpx@nTk{Aw|{ZI=&<R3?$S1^mgD@s?nM{3G>>!R z_Lb)H=CirDnd_B%dprMN--BG=_C3grO<!KWzVG~FAK!bwKAy|v@8UP=CdaY!>pOIl zJ725DbH09Q+G+UcT@Kec=jO*wIdl89ckYcZbCUY!#Y2y0dYqgA^Zw)4yP*{_2RcUw zWIIO&EOnmT;d34zSm12g*~G~lbc-|p$;X`h!7ZGgyOuhK2Vd>Xc&fnpU0%yJ152Zt zNg>})K`w?lHg~^&xF9+|Jk_khKfM!L6U)C&^`tr-cKhSwhBWdx)%J{Vb_{LgEZx)I zIWzPDXVEjEdI6f&F7SoJ!ElZ>gfIP4Cw16Sr_ysRo#f$Dox7e}z`e4Dr=Bh?5l&h= z-<v?kq*L{>p79s=p7W$8z8n(y{p+>U*}FgAsXFQ==dBl-I=>q=+{r$W?xc+_{QvJJ z>V!u3tv@haWNy}qQAscw$t)<|_n@<9^bF^=7hiT>8}pWP{mXrvcgN;CtzU8e<-N6& zQ}~Dawa4&f9=6AN!`>2Kl>6-Uf0*XpXOs18-vd$ZYEI`@8#t9;J>t}QZD9QQ2{(G2 zcCTkUq06^BsfV(iVUwCVg@>9uS54{~fA&yCj}w`k;hg?sL*0WbFD}W~G1+2jQ|HMy zYb0}}9nAHgzYUy2Zyt0SPrLm5MfhJ`lGjfk?;L+?m9ua98~=S*)?Inld&4|V&$k;n zyN^B@yWnDW@xAQ7=GHvO+&C|~HSfDhe;0;*7v7xBH!XiH6o>g+ZZUrw@HH8+1}lTV zIM&E{?pSN5OMW*e>-`qaviy&n>Bnn1MFm}*M~|mD+X_bf_nkX&mC@e{y1xIvedq4< z!Ihr)C|_5Pll^gb=i#}FY9?+o-Y9<n=a)vEPDS(oi*MpDoNVKK;*b38HttNGpYJ?y zs+N=er$f%91<QZEm^)_|^mB4QZ5F?*`1=aZk}sNjB2I93V`olq-v8F!+*utu?KJ(m zs<Z5h7rCOZPI4xkNpl*PUH5kv^Z$&i`Xr~p_x;`LdVgp14=tTTi&C9cKV0gxSe)lv zvv^Q^?T=MF&Xy}1ag8753}5oIbNJ^4&f81JI=BC|s*|;BMEb=yddvL_Qs44?LHqd| zC(EhyOKIYk?^IneraW5FGtjwnMI+~q75A6lSjki5+<nd5^0LaFjve*$PmxbQ80lNB zxUDZx<_`x00rM!rCCtz7J*fMz`!|AfYUR@E94}na_=Ty^7cahcq^EpwHP2=7bE}$G z;ID_}<^0gx!a1{M{D1Jzi1J5jdnPx~{o4Eqr#lfh?;^eiOMLMrH}v<E-&NPs&M8}) z%O4rF%KN2w8apS}PI0cdF{gZRs^>vx@J$E)*Z%70=h^vAea{e&^W*wU${RHDblvH1 z=()w?jJ;)j`L@QMh4ITbq_Q0DA0|%A^1I8cH23s(PM2@u4;0%|KF0P`%l6tOettXi z1?*6<x4`EH^ZXAm5pH+IUYj3M^dmx<ul(vXPvglxepljW1^#{xd+mJ>7KFV-+GiC9 z!-*RhANa>sKe}qu1wZV#?IwN?P4pUIK@yEmqVWh9I{lHLYi2~f@csX5KaqdkPusum h#h3W2E75jJN84X~@u-~-Ha+lv?60t8|5yJC`yUGy@?8J` diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index fca3d856c..8dc6116c4 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -11,9 +11,11 @@ # François Poirotte <clicky@erebot.net>, 2016-2017 # Georg Brandl <g.brandl@gmx.net>, 2014 # Jean-Daniel Browne <jeandaniel.browne@gmail.com>, 2010 -# Jean-François B. <jfbu@free.fr>, 2017-2018 +# Jean-François B. <jfbu@free.fr>, 2017-2019 # Julien Palard <github@mandark.fr>, 2017 +# Julien Malard <julien.malard@mail.mcgill.ca>, 2019 # Larlet David <david@larlet.fr>, 2008 +# LAURENT Raphaël <laurent@ined.fr>, 2018-2019 # Lilian Besson <inactive+Naereen@transifex.com>, 2013-2014 # Nikolaj van Omme <nikolaj.van.omme@gmail.com>, 2014-2015 # Pierre Grépon <pgrepon@yahoo.fr>, 2016 @@ -23,9 +25,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-09-10 09:25+0000\n" -"Last-Translator: Jean-François B. <jfbu@free.fr>\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-27 16:29+0000\n" +"Last-Translator: Julien Malard <julien.malard@mail.mcgill.ca>\n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -34,122 +36,110 @@ msgstr "" "Language: fr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" +msgstr "Le répertoire de configuration ne contient pas de fichier conf.py (%s)" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" -msgstr "" +msgstr "Impossible de trouver le répertoire source (%s)" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" -msgstr "" +msgstr "Les répertoires source et destination ne doivent pas être identiques." -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" -msgstr "" +msgstr "Sphinx v%s en cours d'exécution" #: sphinx/application.py:214 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." -msgstr "Ce projet nécessite au minimum Sphinx v%s et ne peut donc pas être construit avec cette version." +msgstr "Ce projet nécessite au minimum Sphinx v%s et ne peut donc être construit avec cette version." #: sphinx/application.py:234 -msgid "making output directory..." -msgstr "" +msgid "making output directory" +msgstr "création du répertoire de sortie" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "lors de l'initialisation de l'extension%s :" + +#: sphinx/application.py:245 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' tel que défini dans conf.py n'est pas un objet Python appelable. Veuillez modifier sa définition pour en faire une fonction appelable. Ceci est nécessaire pour que conf.py se comporte comme une extension Sphinx." -#: sphinx/application.py:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "primary_domain %r non trouvé; ignoré." - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " -msgstr "" +msgstr "Chargement des traductions [%s]..." -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "fait" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" +msgstr "non disponible pour les messages intrinsèques" + +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " -msgstr "chargement de l'environnement sérialisé..." - -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "échec : %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "Aucun constructeur sélectionné, utilisation du défaut : html" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "réussi" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "s'est terminé avec des problèmes" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." -msgstr "" +msgstr "compilation %s, %s avertissement." -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." +msgstr "compilation %s." + +#: sphinx/application.py:557 +#, python-format +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" -msgstr "lors de la mise en place de l’extension %s : la classe de node %r est déjà enregistrée, ses visiteurs seront écrasés" +msgid "directive %r is already registered, it will be overridden" +msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" -msgstr "lors de la mise en place de l'extension %s : la directive %r est déjà enregistrée, elle sera écrasée" +msgid "role %r is already registered, it will be overridden" +msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 -#, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" -msgstr "lors de la mise en place de l'extension %s : le role %r est déjà enregistré, il sera écrasé" - -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -157,7 +147,7 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à la lecture en parallèle, on supposera qu’elle ne l'est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -165,1089 +155,994 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à l’écriture en parallèle, on supposera qu’elle ne l’est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "impossible d'écraser le dictionnaire de configuration %r ; ignoré (utilisez %r pour modifier les éléments individuellement)" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nombre non valide %r pour l'option de configuration %r ; ignoré" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "impossible de remplacer le paramètre de configuration %r par un type non-supporté ; ignoré" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "paramètre de configuration %r inconnu dans override ; ignoré" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "Option de configuration inexistante : %s" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "L'option de configuration %r est déjà présente" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" -msgstr "" +msgid "There is a syntax error in your configuration file: %s\n" +msgstr "Il y a une erreur de syntaxe dans votre fichier de configuration : %s\n" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" -msgstr "" +msgstr "Le fichier de configuration (ou un des modules qu'il utilise) génère un sys.exit()" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" "\n" "%s" -msgstr "" +msgstr "Il y a une erreur de programmation dans votre fichier de configuration : 1%s" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "Section %s" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "Tableau %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Code source %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." -msgstr "" - -#: sphinx/config.py:459 -msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " -"{permitted}." -msgstr "" +msgstr "La valeur saisie `{current}` est erronée, la valeur de configuration `{name}` doit figurer dans {candidates}, " #: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', defaults to " -"`{default.__name__}'." +"The config value `{name}' has type `{current.__name__}'; expected " +"{permitted}." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:478 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "Le paramètre de configuration `{name}' est de type `{current.__name__}', les types par défaut sont {default.__name__}'. " + +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." +msgstr "La valeur du paramètre %r est défini comme une chaine de caractères non-ASCII. Cela peut conduire à des erreurs Unicode. Merci d'utiliser une chaine Unicode, exemple %r." + +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "primary_domain %r non trouvé; ignoré." + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:58 +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "Évènement %r déjà présent" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "Nom d'évènement inconnu : %s" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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 "Ce projet nécessite que l'extension %s soit au minimum en version %s et par conséquent il ne peut pas être construit avec la version chargée (%s)." -#: sphinx/highlighting.py:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." -msgstr "" +msgstr "Analyse lexicale de literal_bloc impossible en \"%s\". Mise en évidence annulée." -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" -msgstr "" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." +msgstr "document non lisible, il sera ignoré" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "La classe Builder %s n'a pas d'attribut « name »" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Le nom de Constructeur %s n'est ni enregistré ni accessible par point d'entrée" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" -msgstr "" +msgstr "domaine %s non enregistré" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" -msgstr "" +msgstr "domaine %s déjà enregistré" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" -msgstr "" +msgstr "domaine 1%s non encore enregistré" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" -msgstr "" +msgstr "Le type de l'objet %r est déjà enregistré" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" -msgstr "" +msgstr "Le type %r crossref_type est déjà enregistré" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" -msgstr "" +msgstr "L'extension source %r est déjà enregistrée" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" -msgstr "" +msgstr "source_parser pour %r est déjà enregistré" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" -msgstr "" +msgstr "source_parser pour %s non enregistré" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" -msgstr "" +msgid "Translator for %r already exists" +msgstr "Il existe déjà un traducteur pour %r" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" -msgstr "" +msgstr "enumerable_node %r est déjà enregistré" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "l'extension %r a été intégrée à Sphinx depuis la version %s ; cette extension est ignorée." -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "Exception initiale :\n" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" -msgstr "" +msgstr "L'extension ne peut pas être importée %s" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "l'extension %r n'a pas de fonction setup(); est-elle réellement un module d'extension de Sphinx ?" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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 "L'extension %s utilisée par ce projet nécessite au moins Sphinx v%s ; il ne peut donc pas être construit avec la version courante." -#: sphinx/registry.py:495 +#: sphinx/registry.py:496 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "l'extension %r a renvoyé par sa fonction setup() un type d'objet non supporté ; elle devrait renvoyer None ou un dictionnaire de méta-données" -#: sphinx/roles.py:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" -msgstr "" +msgstr "L'option %r n'est pas supportée pour ce thème" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" -msgstr "" +msgstr "le fichier %r dans le répertoire des thèmes n'est pas valide ou ne contient aucun thème" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "sphinx_rtd_theme n'est plus une dépendance stricte depuis la version 1.4.0. Veuillez l'installer manuellement (pip install sphinx_rtd_theme)." -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" -msgstr "" +msgstr "Aucun thème nommé %r n'est trouvé (il manque le fichier theme.conf?)" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " -msgstr "" +msgstr "construction en cours [mo]:" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " -msgstr "" +msgstr "écriture de la sortie..." -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" -msgstr "" +msgstr "tout les %d fichiers po" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" -msgstr "" +msgstr "tous les fichiers source" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" -msgstr "" +msgstr "le fichier %r saisi en ligne de commande n'est pas présent dans le répertoire source, il sera ignoré" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" -msgstr "" +msgstr "le fichier %r saisi en ligne de commande n'existe pas, il sera ignoré" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" -msgstr "" +msgstr "%d fichier source saisi en ligne de commande" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" -msgstr "" +msgstr "construction en cours[%s]" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " -msgstr "" +msgstr "recherche des fichiers périmés" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" -msgstr "" +msgstr "%d trouvé" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" +msgstr "aucun résultat" + +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " -msgstr "" - -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." +msgstr "aucune cible n'est périmée" + +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "lecture des sources..." + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" +msgstr "document en préparation" + +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." -msgstr "" +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "copie des images..." -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" -msgstr "" +msgstr "impossible de lire le fichier image %r: il sera copié à la place" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" -msgstr "" +msgstr "impossible de copier le fichier image %r: %s" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" -msgstr "" +msgstr "impossible d'écrire le fichier image %r: %s" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" -msgstr "" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" +msgstr "Pillow non trouvé - copie des fichiers image" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." -msgstr "" +msgstr "fichier %s en cours d'écriture" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" -msgstr "" +msgstr "mimetype inconnu pour %s, il sera ignoré" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." -msgstr "" +msgstr "Le fichier d'aperçu se trouve dans %(outdir)s." -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." +msgstr "aucun changement dans la version %s" + +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Fonctions de base" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Module" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." -msgstr "" +msgstr "copie du fichier source..." -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." -msgstr "" +msgstr "Le fichier ePub se trouve dans %(outdir)s ." -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" -msgstr "" +msgstr "la variable de configuration \"epub_language\" (ou \"language\") ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" -msgstr "" +msgstr "le paramètre de configuration \"epub_uid\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" -msgstr "" +msgstr "le paramètre de configuration \"epub_title\" (ou \"html_title\") ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" -msgstr "" +msgstr "le paramètre de configuration \"epub_author\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" -msgstr "" +msgstr "le paramètre de configuration \"epub_contributor\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" -msgstr "" +msgstr "le paramètre de configuration \"epub_description\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" -msgstr "" +msgstr "le paramètre de configuration \"epub_publisher\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" -msgstr "" +msgstr "le paramètre de configuration \"epub_copyright\" (ou \"copyright\") ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" -msgstr "" +msgstr "le paramètre de configuration \"epub_identifier\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" -msgstr "" +msgstr "le paramètre de configuration \"version\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" -msgstr "" +msgstr "fichier CSS invalide : %r, le fichier sera ignoré" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." -msgstr "" +msgstr "La liste des messages se trouve dans %(outdir)s." -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " -msgstr "" +msgstr "construction [%s]:" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " -msgstr "" +msgstr "lecture de la template..." -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " -msgstr "" +msgstr "écriture de la liste des messages..." -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." -msgstr "" +msgstr "Les pages HTML sont dans %(outdir)s ." -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" -msgstr "" +msgstr "la variable de configuration html_use_opensearch doit maintenant être de type string" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Index général" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "index" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "suivant" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "précédent" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." -msgstr "" +msgstr "génération des indices.." -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." -msgstr "" +msgstr "écriture des pages supplémentaires..." -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " -msgstr "" +msgstr "copie des fichiers téléchargeables..." -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " -msgstr "" +msgstr "copie des fichiers statiques..." -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" -msgstr "" +msgstr "l'entrée html_static_path %r n'existe pas" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" -msgstr "" +msgstr "le fichier de logo %r n'existe pas" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" -msgstr "" +msgstr "le fichier de favicon %r n'existe pas " -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" -msgstr "" +msgstr "impossible de copier le fichier static %r" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " -msgstr "" +msgstr "copie des fichiers supplémentaires..." -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" -msgstr "" +msgstr "l'entrée html_extra_path %r n'existe pas" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" -msgstr "" +msgstr "copie des fichiers supplémentaires impossible %r" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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 "" +msgstr "une erreur Unicode est survenue lors de la lecture de la page %s . Vérifier svp que toutes les variables de configuration qui contiennent des caractères non-ASCII sont des chaines Unicode." -#: sphinx/builders/html.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" -msgstr "" +msgstr "Un erreur est survenue lors de la génération de la page: %s.\nLa raison est: %r" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" -msgstr "" +msgstr "erreur lors l'écriture du fichier %s : %s" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" -msgstr "" +msgstr "le fichier js_file : %r est invalide, il sera ignoré" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." -msgstr "" +msgstr "Plusieurs math_renderers sont enregistrés. Mais aucun n'est sélectionné." -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "Documentation %s %s" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" -msgstr "" +msgstr "Ancre '%s' non trouvée" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" -msgstr "" +msgstr "lien mort: %s (%s)" #: sphinx/builders/manpage.py:43 #, python-format msgid "The manual pages are in %(outdir)s." -msgstr "" +msgstr "Le manuel se trouve dans %(outdir)s." #: sphinx/builders/manpage.py:51 msgid "no \"man_pages\" config value found; no manual pages will be written" +msgstr "aucun valeur de configuration \"man_pages\" trouvée; aucun page du manuel ne sera enregistrée" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." +msgstr "Les pages HTML sont dans %(outdir)s ." + +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." -msgstr "" +msgstr "Les fichiers Texinfo se trouvent dans %(outdir)s." -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" -msgstr "" +msgstr "aucun paramètre de configuration \"texinfo_documents\" trouvé: aucun document ne sera écrit" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" -msgstr "" +msgstr "La valeur du paramètre \"texinfo_documents\" référence un document inconnu %s" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." -msgstr "" +msgstr "résolution des références..." -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "(dans" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." -msgstr "" +msgstr "Les fichiers texte se trouvent dans %(outdir)s." -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." -msgstr "" +msgstr "Les fichiers XML se trouvent dans %(outdir)s." -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." -msgstr "" +msgstr "Le fichier pseudo-XML se trouve dans %(outdir)s." -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." -msgstr "" +msgstr "Les fichiers LaTex se trouvent dans %(outdir)s." -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" -msgstr "" +msgstr "aucune valeur de configuration \"latex_documents\" trouvée; aucun document de sera généré" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" +msgstr "La valeur du paramètre \"latex_documents\" référence un document inconnu %s" + +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Index" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Version" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." +msgstr "copie des fichiers de support Tex..." + +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." -msgstr "" - -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." -msgstr "" +msgstr "paramètre de configuration inconnu : latex_elements[%r]. il sera ignoré" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" -msgstr "" +msgstr "Une exception s'est produite lors de la génération, démarrage du debugger :" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" -msgstr "" +msgstr "interrompu!" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" -msgstr "" +msgstr "erreur de balise reST :" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" -msgstr "" +msgstr "Erreur d'encodage :" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" -msgstr "" +msgstr "Erreur récurrente:" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" -msgstr "" +msgstr "une exception s'est produit :" -#: sphinx/cmd/build.py:81 +#: 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 "" +msgstr "Merci de rapporter ceci s'il s'agit d'une erreur utilisateur, afin d'améliorer le message d'erreur à l'avenir." -#: sphinx/cmd/build.py:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" -msgstr "" +msgstr "Un rapport d'erreur peut être déposé dans le système de tickets à <https://github.com/sphinx-doc/sphinx/issues>. Merci !" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" -msgstr "" +msgstr "le numéro du job doit être positif" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." -msgstr "" +msgstr "Pour plus d'information : <http://sphinx-doc.org/>." -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1264,293 +1159,287 @@ msgid "" "\n" "By default, everything that is outdated is built. Output only for selected\n" "files can be built by specifying individual filenames.\n" -msgstr "" +msgstr "\nCréation de la documentation à partir des fichiers sources.\n\nsphinx-build crée la documentation à partir des fichiers dans SOURCEDIR et la met\ndans OUTPUTDIR. Il prend en compte « conf.py » de SOURCEDIR pour les valeurs de\nconfiguration. L'outil « sphinx-quickstart » peut être utilisé pour créer des fichiers de\ngabarits (template), y-compris « conf.py » .\n\nsphinx-build peut créer la documentation sous différents formats. Un format est\nsélectionné par la spécification du nom du constructeur (builder) sur la ligne de commande ;\npar défault, HTML (constructeur « html »). Les constructeurs peuvent s'acquitter d'autres tâches\nrelatives à la production de la documentation.\n\nPar défaut, tout ce qui n’est pas à jour est construit. On peut restreindre le processus\nà certains fichiers spécifiques en précisant leurs noms.\n" + +#: sphinx/cmd/build.py:128 +msgid "path to documentation source files" +msgstr "chemin des fichiers sources de la documentation" + +#: sphinx/cmd/build.py:130 +msgid "path to output directory" +msgstr "chemin du répertoire de sortie" #: sphinx/cmd/build.py:132 -msgid "path to documentation source files" -msgstr "" - -#: sphinx/cmd/build.py:134 -msgid "path to output directory" -msgstr "" - -#: sphinx/cmd/build.py:136 msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "" +msgstr "une liste de fichiers spécifiques à reconstruire. Sera ignoré si l'option -a est spécifiée." -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" -msgstr "" +msgstr "options générales" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" -msgstr "" +msgstr "constructeur à utiliser (par defaut: HTML)" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" -msgstr "" +msgstr "enregistrement des tous les fichiers (par défaut : enregistrement des nouveaux fichiers et des fichiers qui ont été modifiés)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" -msgstr "" +msgstr "ne pas utiliser un environnement sauvegardé, toujours les tous les fichiers" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" -msgstr "" +msgstr "chemin dans lequel se trouve le fichier de configuration (conf.py). (valeur par défaut : identique à SOURCEDIR)." -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" -msgstr "" +msgstr "n'utilisez aucun fichier de configuration, seulement l'option -D" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" -msgstr "" +msgstr "outre passer un paramètre du fichier de configuration" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" -msgstr "" +msgstr "passer une valeur aux templates HTML" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" -msgstr "" +msgstr "options de la console de sortie" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" -msgstr "" +msgstr "aucune sortie vers stdout, seulement les avertissements vers stderr" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" -msgstr "" +msgstr "aucune sortie du tout, même pas les avertissements" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" -msgstr "" +msgstr "écrire les avertissements (et les erreurs) vers le fichier spécifié" + +#: sphinx/cmd/build.py:187 +msgid "turn warnings into errors" +msgstr "modifier les avertissements en erreurs" + +#: sphinx/cmd/build.py:189 +msgid "With -W, Keep going when getting warnings" +msgstr "Avec l'option -W, continuer l'exécution quand vous avez des avertissements." #: sphinx/cmd/build.py:191 -msgid "turn warnings into errors" -msgstr "" - -#: sphinx/cmd/build.py:193 -msgid "With -W, Keep going when getting warnings" -msgstr "" - -#: sphinx/cmd/build.py:195 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" -msgstr "" +msgstr "exécuter Pdb si une exception se produit." -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" -msgstr "" +msgstr "fichier %r introuvable" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" -msgstr "" +msgstr "impossible de combiner l'option -a avec le nom du fichier" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" -msgstr "" +msgstr "impossible d'ouvrir le fichier des avertissements %r: %s" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" -msgstr "" +msgstr "l'option -D doit être sous la forme nom=valeur" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" -msgstr "" +msgstr "l'option -A doit être sous la forme nom=valeur" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" -msgstr "" +msgstr "lien entre la documentation Sphinx de différents projets" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" -msgstr "" +msgstr "inclusion conditionnelle du contenu basé sur la valeur de configuration" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" -msgstr "" +msgstr "inclure des liens vers le code source documenté des objets Python" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." -msgstr "" +msgstr "Merci de saisir un chemin valide." -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." -msgstr "" +msgstr "Merci de saisir du texte." -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." -msgstr "" +msgstr "Merci de saisir un des %s." -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." -msgstr "" +msgstr "Merci de saisir 'y' ou 'n'." -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." -msgstr "" +msgstr "Merci de saisir l'extension du fichier, par exemple '.rst' ou '.txt'." -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." -msgstr "" +msgstr "Bienvenue dans le kit de démarrage rapide de Sphinx %s." -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." -msgstr "" +msgstr "\nMerci de saisir les valeurs pour les paramètres suivants (tapez Entrée pour accepter le paramètre par défaut, s'il est précisé entre parenthèses)." -#: sphinx/cmd/quickstart.py:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" -msgstr "" +msgstr "\nSélectionner le répertoire racine : %s" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." -msgstr "" +msgstr "\nSaisir le répertoire racine pour la documentation." -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" -msgstr "" +msgstr "racine de la documentation." -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." -msgstr "" +msgstr "Erreur : un fichier conf.py a été trouvé dans le répertoire racine." -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." -msgstr "" +msgstr "sphinx-quickstart n'écrasera pas un projet Sphinx existant." -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" -msgstr "" +msgstr "Merci de saisir un nouveau répertoire racine (ou tapez juste Entrée)" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "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 "" +msgstr "\nVous avez deux options pour positionner les répertoire de construction du projet Sphinx. Soit vous utilisez le répertoire \"_build\" à l'intérieur du répertoire racine, soit vous séparez les répertoires \"source\" et \"build\" à l'intérieur du répertoire racine." -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" -msgstr "" +msgstr "Séparer les répertoires build et source (y/n)" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "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 "" +msgstr "\nDans le répertoire racine, deux autres répertoires vont être créés; \"_templates\" pour les templates HTML spécifiques et \"_static\" pour les feuilles de style et les autres fichier statiques. Vous pouvez saisir un autre préfixe (comme \".\") pour remplacer l'underscore." -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." -msgstr "" +msgstr "\nLe nom du projet apparaitra à plusieurs endroits lors de la construction de la documentation." -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" -msgstr "" +msgstr "Nom du projet" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" -msgstr "" +msgstr "Nom(s) de l'auteur" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1558,17 +1447,17 @@ msgid "" "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 "" +msgstr "\nSphinx connaît les notions de « version » et d’« identifiant de parution »\n(release) d’un logiciel. Chaque version peut correspondre à plusieurs parutions.\nPar exemple, pour Python la version sera comme 2.5 ou 3.0, tandis que\nl'identifiant de parution sera tel 2.5.1 ou 3.0a1. Si cette structure double\nne vous est pas utile, utilisez la même valeur pour les deux variables." -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" -msgstr "" +msgstr "Version du projet" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" -msgstr "" +msgstr "version du projet" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1577,119 +1466,119 @@ msgid "" "\n" "For a list of supported codes, see\n" "http://sphinx-doc.org/config.html#confval-language." -msgstr "" +msgstr "\nSi le documents doit être écrit dans une autre langue que l'anglais, vous pouvez choisir une langue ici en saisissant son code. Sphinx traduira le texte qu'il génère dans cette langue. Pour une liste des codes supportés : http://sphinx-doc.org/config.html#confval-language." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" -msgstr "" +msgstr "Langue du projet" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." -msgstr "" +msgstr "\nLes extensions des fichiers sources sont habituellement soit \".txt\" ou \".rst\". Seuls ces extensions seront considérées comme étant des documents." -#: sphinx/cmd/quickstart.py:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" -msgstr "" +msgstr "Extension des fichiers sources" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "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 "" +msgstr "\nUn document est particulier en ceci qu'il est considéré le nœud (« node ») racine\nde « l’arborescence de contenu », c’est-à-dire, il est la racine de la structure hiérarchisée\ndes documents. Habituellement, il s’agit du fichier « index », mais si le vôtre est un\ngabarit personnalisé, vous pouvez aussi assigner à cette variable un autre nom." -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" -msgstr "" +msgstr "Non du fichier principal (sans extension)" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." -msgstr "" +msgstr "Erreur : le fichier principal %s est déjà présent dans le répertoire racine du projet." -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." -msgstr "" +msgstr "sphinx-quickstart n'écrasera pas les fichiers existants." -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" -msgstr "" +msgstr "Merci de saisir un nouveau nom de fichier, ou de renommer le fichier existant et valider avec Entrée" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" -msgstr "" +msgstr "Indiquer quelles extensions Sphinx doivent être activées" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." -msgstr "" +msgstr "Note : imgmath et mathjax ne peuvent pas être activés en même temps. imgmath a été désactivé." -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "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 "" +msgstr "\nUn fichier Makefile et un fichier de commandes Windows peuvent être générés pour vous, afin que vous puissiez exécuter par exemple `make html' au lieu d'appeler directement sphinx-build." -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" -msgstr "" +msgstr "Création du Makefile ? (y/n)" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" -msgstr "" +msgstr "Création du fichier de commandes Windows ? (y/n)" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." -msgstr "" +msgstr "fichier en cours de création %s." -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." -msgstr "" +msgstr "Le fichier %s existe déjà, il ne sera pas remplacé" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." -msgstr "" +msgstr "Terminé : la structure initiale a été créée." -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" "You should now populate your master file %s and create other documentation\n" "source files. " -msgstr "" +msgstr "\nVous devez maintenant remplir votre fichier principal %s et créer d'autres fichiers sources\nde documentation." -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" -msgstr "" +msgstr "Utilisez le fichier Makefile pour construire la documentation, comme ceci :\n make builder\n" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" -msgstr "" +msgstr "Utiliser sphinxdoc-build pour construire la documentation comme ceci : \nsphinx-build -b builder %s %s\n" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1697,216 +1586,216 @@ msgid "" "sphinx-quickstart is an interactive tool that asks some questions about your\n" "project and then generates a complete documentation directory and sample\n" "Makefile to be used with sphinx-build.\n" -msgstr "" +msgstr "\nGénération des fichiers requis pour un projet Sphinx\n\nsphinx-quickstart est un outil interactif qui vous pose des questions à propos de votre \nprojet et génère une structure complète de répertoires et un exemple\nde fichier Makefile qui peut être utilisé avec sphinx-build.\n" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" -msgstr "" +msgstr "mode silencieux" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" -msgstr "" +msgstr "répertoire de sortie" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" -msgstr "" +msgstr "si spécifié, les répertoires source et build seront séparés" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" -msgstr "" +msgstr "Options basiques du projet." -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" -msgstr "" +msgstr "nom du projet" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" -msgstr "" +msgstr "nom de l'auteur" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" -msgstr "" +msgstr "version du projet" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" -msgstr "" +msgstr "version du projet" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" -msgstr "" +msgstr "langue du document" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" -msgstr "" +msgstr "préfixe des fichiers source" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" -msgstr "" +msgstr "nom du document principal" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" -msgstr "" +msgstr "utilisé epub" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" -msgstr "" +msgstr "autoriser l'extension %s" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" -msgstr "" +msgstr "Création des fichiers Batchfile et Makefile" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" -msgstr "" +msgstr "créer un fichier makefile" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" -msgstr "" +msgstr "ne pas créer un fichier makefile" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" -msgstr "" +msgstr "créer un fichier batch" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" -msgstr "" +msgstr "ne pas créer un fichier batch" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" -msgstr "" +msgstr "utiliser make-mode pour Makefile/make.bat" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" -msgstr "" +msgstr "ne pas utiliser make-mode pour Makefile/make.bat" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" -msgstr "" +msgstr "répertoire des templates" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" -msgstr "" +msgstr "définissez une variable de template" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." -msgstr "" +msgstr "vous avez spécifiez \"quit\" , mais \"project\" ou \"author\" ne sont pas spécifiés." -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." -msgstr "" +msgstr "Erreur : le chemin spécifié n'est pas un répertoire, ou les fichiers Sphinx existent déjà." -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." -msgstr "" +msgstr "sphinx-quickstart peut générer ces fichiers seulement dans un répertoire vide. Merci de spécifier un nouveau répertoire racine." -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" -msgstr "" +msgstr "Variable de template invalide : %s" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "Légende invalide: %s" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" -msgstr "" +msgstr "le numéro de ligne spécifiée est en dehors des limites (1-%d):%r" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" -msgstr "" +msgstr "Impossible d'utiliser les options \"%s\" et \"%s\" en même temps." -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" -msgstr "" +msgstr "Le fichier d'include %r est introuvable ou sa lecture a échouée." -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "L’encodage %r utilisé pour lire le fichier inclus %r semble erroné, veuillez ajouter une option :encoding:" -#: sphinx/directives/code.py:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" -msgstr "" +msgstr "L'objet nommé %r est introuvable dans le fichier d'include %r" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Auteur de la section : " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Auteur du module : " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Auteur du code : " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Auteur : " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Paramètres" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Renvoie" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Type renvoyé" @@ -1935,12 +1824,12 @@ msgstr "%s (type C)" msgid "%s (C variable)" msgstr "%s (variable C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "fonction" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "membre" @@ -1948,7 +1837,7 @@ msgstr "membre" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "type" @@ -1956,297 +1845,262 @@ msgstr "type" msgid "variable" msgstr "variable" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Nouveau dans la version %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Modifié dans la version %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Obsolète depuis la version %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." -msgstr "" +msgstr "Déclaration dupliquée, également définie dans '%s'.\nLa déclaration est '%s'." -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "Paramètres du modèle" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Déclenche" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (type C++)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "%s (concept C++)" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (membre C++)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (fonction C++)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (classe C++)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (énumération C++)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (énumérateur C++)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "énumération" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "énumérateur" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." -msgstr "" +msgstr "déclaration dupliquée, également définie dans '%s'. Le nom de la déclaration est '%s'." -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (fonction de base)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (méthode %s)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (classe)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variable globale ou constante)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut %s)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Arguments" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "méthode" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "données" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "module" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "Libellé dupliqué pour l'équation %s, autre instance dans %s" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "mot-clé" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "opérateur" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "objet" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "exception" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "état" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "fonction de base" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Variables" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Lève" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (dans le module %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable de base)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (dans le module %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (classe de base)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (classe dans %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (méthode %s.%s)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (méthode statique %s.%s)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (méthode statique %s)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (méthode de la classe %s.%s)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (méthode de la classe %s)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (attribut %s.%s)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Index des modules Python" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Obsolète" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "méthode de classe" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "méthode statique" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" -msgstr "" +msgstr "plusieurs cibles trouvées pour le renvoi %r : %s" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (obsolète)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (directive)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (role)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "directive" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "role" @@ -2255,209 +2109,200 @@ msgstr "role" msgid "environment variable; %s" msgstr "variable d'environnement; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" -msgstr "" +msgstr "description de l'option malformée, elle doit ressembler à \nMalformed option description %r, should look like \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" or \"+opt args\"" -#: sphinx/domains/std.py:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%s option de ligne de commande; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "terme du glossaire" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "élément de grammaire" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "étiquette de référence" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "variable d'environnement" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "option du programme" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "document" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Index" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Index du module" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Page de recherche" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" -msgstr "" +msgstr "citation dupliquée %s, une autre instance dans %s" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" -msgstr "" +msgstr "libellé dupliqué %s, l'autre instance se trouve dans %s" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." -msgstr "" +msgstr "La citation [%s] n'est pas référencée" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." -msgstr "" +msgstr "le paramètre numfig est désactivé : le paramètre :numref: est ignoré" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" -msgstr "" +msgstr "aucun numéro assigné pour %s : %s" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" -msgstr "" +msgstr "le lien n'a pas de légende : %s" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" -msgstr "" +msgstr "format de numfig_format invalide : %s (%r)" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" -msgstr "" +msgstr "format de numfig_format invalide : %s" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" -msgstr "" +msgstr "nouvelle configuration" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" -msgstr "" +msgstr "la configuration a changée" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" -msgstr "" +msgstr "les extensions ont changées" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" -msgstr "" +msgstr "le répertoire racine a changé" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" -msgstr "" +msgstr "le domaine %r n'est pas enregistré." -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." -msgstr "" +msgstr "une table des matières auto-référencée a été trouvé. Elle sera ignorée." -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" -msgstr "" +msgstr "Le document n'est inclut dans aucune table des matières de l'arborescence." -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "voir %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "voir aussi %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" -msgstr "" +msgstr "type d'index saisie inconnu %r" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Symboles" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" -msgstr "" +msgstr "table des matières avec une référence circulaire détectée, elle sera ignorée %s <- %s" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" +msgstr "la table des matière contient une référence à un document %r qui n'a pas de titre : aucun lien ne sera généré" + +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/environment/adapters/toctree.py:175 +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" -msgstr "" +msgstr "la table des matière contient des références à des documents inexistants %r" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" -msgstr "" +msgstr "fichier image %s illisible " -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" -msgstr "" +msgstr "fichier image %s illisible : %s" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2469,352 +2314,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" -msgstr "" +msgstr "répertoire où placer toutes les sorties" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" -msgstr "" +msgstr "Nombre maximum de sous-modules visibles dans la table des matières (par défaut : 4)" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" -msgstr "" +msgstr "remplacer les fichiers existants" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." -msgstr "" +msgstr "suivre les liens symboliques. Très utile en combinaison avec collective.recipe.omelette." -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" -msgstr "" +msgstr "exécuter le script sans créer les fichiers" + +#: sphinx/ext/apidoc.py:334 +msgid "put documentation for each module on its own page" +msgstr "afficher la documentation de chaque module sur sa propre page" + +#: sphinx/ext/apidoc.py:337 +msgid "include \"_private\" modules" +msgstr "inclure le module \"_private\"" #: sphinx/ext/apidoc.py:339 -msgid "put documentation for each module on its own page" +msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:342 -msgid "include \"_private\" modules" -msgstr "" +#: sphinx/ext/apidoc.py:341 +msgid "don't create a table of contents file" +msgstr "ne pas créer de fichier de table des matières" #: sphinx/ext/apidoc.py:344 -msgid "don't create a table of contents file" -msgstr "" - -#: sphinx/ext/apidoc.py:347 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" -msgstr "" +msgstr "mettre la documentation du module avant celle du sous-module" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" -msgstr "" +msgstr "extension du fichier (par défaut : rst)" + +#: sphinx/ext/apidoc.py:359 +msgid "generate a full project with sphinx-quickstart" +msgstr "générer un projet complet avec sphinx-quickstart" #: sphinx/ext/apidoc.py:362 -msgid "generate a full project with sphinx-quickstart" -msgstr "" - -#: sphinx/ext/apidoc.py:365 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" -msgstr "" +msgstr "nom du projet (par défaut : nom du module principal)" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" -msgstr "" +msgstr "Auteur(s) du projet, utilisé quand l'option -full est précisée" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" -msgstr "" +msgstr "version du projet, utilisé quand l'option -full est précisée" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." -msgstr "" +msgstr "%s n'est pas un répertoire" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" -msgstr "" +msgstr "invalid regex %r in %s" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" -msgstr "" +msgstr "regex invalide %r dans coverage_c_regexes" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" -msgstr "" +msgstr "le module %s ne pas être importé : %s" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." -msgstr "" +msgstr "option '+' ou '-' manquante dans %s." -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." -msgstr "" +msgstr "'%s' n'est pas une option valide." -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" -msgstr "" +msgstr "%s n'est pas une option pyversion valide" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" -msgstr "" +msgstr "type TestCode invalide" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "La directive Graphviz ne peut pas avoir simultanément du contenu et un argument de nom de fichier" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "Directive « graphviz » sans contenu ignorée." -#: sphinx/ext/graphviz.py:255 -#, python-format -msgid "" -"dot command %r cannot be run (needed for graphviz output), check the " -"graphviz_dot setting" -msgstr "" - -#: sphinx/ext/graphviz.py:273 -#, python-format -msgid "" -"dot exited with error:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:252 #, python-format msgid "" "dot did not produce an output file:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:256 +#, python-format +msgid "" +"dot command %r cannot be run (needed for graphviz output), check the " +"graphviz_dot setting" +msgstr "la commande dot %r ne peut pas être exécutée (nécessaire pour le rendu graphviz). Vérifiez le paramètre graphviz_dot" + +#: sphinx/ext/graphviz.py:263 +#, python-format +msgid "" +"dot exited with error:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format doit être « png » ou « svg », mais est %r" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" -msgstr "" +msgstr "dot code %r: %s" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[graphe: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[graphe]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" -msgstr "" +msgstr "la commande convert %r ne peut pas être exécutée. Vérifiez le paramètre image_converter" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" -msgstr "" +msgstr "La commande LaTex %r ne peut pas être exécutée (nécessaire pour l'affichage math), vérifier le paramètre imgmath_latex" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Lien permanent vers cette équation" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(disponible dans %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" +msgstr "(dans %s)" + +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "l'indentifiant intersphinx %r n'est pas une chaine, il sera ignoré" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[source]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "À faire" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" -msgstr "" +msgstr "Entrée TODO trouvée : %s" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "<<entrée originale>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "(l'<<entrée originale>> se trouve dans %s, à la ligne %d)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "entrée originale" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Code du module" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Code source de %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Vue d'ensemble : code du module" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Modules pour lesquels le code est disponible</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" -msgstr "" +msgstr "erreur pendant la mise en forme de l 'argument %s:%s" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" -msgstr "" +msgstr "attribut manquant %s dans l'objet %s" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2822,66 +2696,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "Bases : %s" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "alias de :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "option invalide dans autodoc_default_flags: %r, elle sera ignorée" + +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2896,113 +2789,113 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" -msgstr "" +msgstr "répertoire où placer toutes les sorties" + +#: sphinx/ext/autosummary/generate.py:390 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "extension par défaut pour les fichiers (par défaut : %(default)s)" #: sphinx/ext/autosummary/generate.py:394 #, python-format -msgid "default suffix for files (default: %(default)s)" -msgstr "" +msgid "custom template directory (default: %(default)s)" +msgstr "répertoire des templates spécifiques (par défaut : %(default)s)" #: sphinx/ext/autosummary/generate.py:398 #, python-format -msgid "custom template directory (default: %(default)s)" -msgstr "" - -#: sphinx/ext/autosummary/generate.py:402 -#, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "Arguments de mots-clés" -#: sphinx/ext/napoleon/docstring.py:626 -msgid "Example" -msgstr "" - #: sphinx/ext/napoleon/docstring.py:627 +msgid "Example" +msgstr "Exemple" + +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" -msgstr "" +msgstr "Exemples" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" -msgstr "" +msgstr "Notes" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" -msgstr "" +msgstr "Autres paramètres" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" -msgstr "" +msgstr "Références" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" -msgstr "" +msgstr "Avertissements" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Attention" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Prudence" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Danger" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Erreur" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Indication" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Important" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Note" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Voir aussi" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Astuce" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Avertissement" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "suite de la page précédente" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Suite sur la page suivante" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 #: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" -msgstr "" +msgstr "Table des matières" #: sphinx/themes/agogo/layout.html:51 sphinx/themes/basic/layout.html:153 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 @@ -3014,7 +2907,7 @@ msgstr "Recherche" msgid "Go" msgstr "Go" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Montrer le code source" @@ -3163,13 +3056,13 @@ msgstr "rechercher" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Résultats de la recherche" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3211,36 +3104,36 @@ msgstr "Modifications de l'API C" msgid "Other changes" msgstr "Autres modifications" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Lien permanent vers ce titre" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Lien permanent vers cette définition" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Cacher les résultats de la recherche" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Recherche en cours" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Préparation de la recherche..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "La recherche est finie, %s page(s) trouvée(s) qui corresponde(nt) à la recherche." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", dans" @@ -3257,223 +3150,223 @@ msgstr "Réduire la barre latérale" msgid "Contents" msgstr "Contenu" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." -msgstr "" +msgstr "La note de bas de page [%s] n'est pas référencée." -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." -msgstr "" +msgstr "La note de bas de page [#] n'est pas référencée." -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" -msgstr "" +msgstr "%s:%s référence cible non trouvée : %%(target)s" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" -msgstr "" +msgstr "%r référence cible non trouvée %%(target)s" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" -msgstr "" +msgstr "impossible d'atteindre l'image distante %s[%d]" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" -msgstr "" +msgstr "impossible d'atteindre l'image distante %s[%s]" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." +msgstr "Format d'image inconnu : %s..." + +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "le caractère source est indécodable, il sera remplacé par \"?\" : %r" + +#: sphinx/util/__init__.py:695 +msgid "skipped" msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" #: sphinx/util/i18n.py:74 #, python-format msgid "reading error: %s, %s" -msgstr "" +msgstr "erreur de lecture : %s,%s" #: sphinx/util/i18n.py:81 #, python-format msgid "writing error: %s, %s" -msgstr "" +msgstr "erreur d'écriture : %s,%s" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" -msgstr "" +msgstr "Format de date invalide. Entourez la chaine de caractères avec des simples quotes pour l'afficher telle quelle : %s" -#: sphinx/util/nodes.py:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" -msgstr "" +msgstr "la table des matières contient des références à des fichiers inexistants %r" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" -msgstr "" +msgstr "rôle par défaut %s introuvable" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" -msgstr "" +msgstr "numfig_format n'est pas défini %s" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Lien permanent vers ce tableau" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Lien permanent vers ce code" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Lien permanent vers cette image" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "Lien permanent vers cette table des matières" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." -msgstr "" +msgstr "impossible d'obtenir la taille de l'image. L'option :scale: est ignorée." -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Version" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "suite sur la page suivante" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "page" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Notes de bas de page" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Clé de configuration inconnue : latex_elements[%r] est ignoré." -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[image: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." -msgstr "" +msgstr "la légende n'est pas à l'intérieur de la figure." -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.js b/sphinx/locale/he/LC_MESSAGES/sphinx.js index a2aeda7ef..2a44b7af9 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "he", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\u05e2\u05dc \u05de\u05e1\u05de\u05db\u05d9\u05dd \u05d0\u05dc\u05d5", "Automatically generated list of changes in version %(version)s": "\u05d9\u05e6\u05e8 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05e8\u05e9\u05d9\u05de\u05d4 \u05e9\u05dc \u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d1\u05d2\u05e8\u05e1\u05d4 %(version)s", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "\u05db\u05d5\u05d5\u05e5 \u05e1\u05e8\u05d2\u05dc \u05e6\u05d3", "Complete Table of Contents": "\u05ea\u05d5\u05db\u05df \u05e2\u05e0\u05d9\u05d9\u05e0\u05d9\u05dd \u05de\u05dc\u05d0", "Contents": "\u05ea\u05d5\u05db\u05df", "Copyright": "\u05d6\u05db\u05d5\u05d9\u05d5\u05ea \u05e9\u05de\u05d5\u05e8\u05d5\u05ea", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "\u05d4\u05e8\u05d7\u05d1 \u05e1\u05e8\u05d2\u05dc \u05e6\u05d3", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "Full index on one page": "\u05d0\u05d9\u05e0\u05d3\u05e7\u05e1 \u05de\u05dc\u05d0 \u05d1\u05e2\u05de\u05d5\u05d3 \u05d0\u05d7\u05d3", "General Index": "", "Global Module Index": "\u05d0\u05d9\u05e0\u05d3\u05e7\u05e1 \u05de\u05d5\u05d3\u05d5\u05dc\u05d9\u05dd \u05d2\u05dc\u05d5\u05d1\u05dc\u05d9", "Go": "\u05dc\u05da", "Hide Search Matches": "\u05d4\u05e1\u05ea\u05e8 \u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d7\u05d9\u05e4\u05d5\u05e9", "Index": "\u05d0\u05d9\u05e0\u05d3\u05e7\u05e1", "Index – %(key)s": "", "Index pages by letter": "\u05e2\u05de\u05d5\u05d3\u05d9 \u05d0\u05d9\u05e0\u05d3\u05e7\u05e1 \u05dc\u05e4\u05d9 \u05d0\u05d5\u05ea\u05d9\u05d5\u05ea", "Indices and tables:": "", "Last updated on %(last_updated)s.": "\u05e2\u05d5\u05d3\u05db\u05df \u05dc\u05d0\u05d7\u05e8\u05d5\u05e0\u05d4 \u05d1 %(last_updated)s.", "Library changes": "", "Navigation": "\u05e0\u05d9\u05d5\u05d5\u05d8", "Next topic": "\u05e0\u05d5\u05e9\u05d0 \u05d4\u05d1\u05d0", "Other changes": "\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd", "Overview": "\u05e1\u05e7\u05d9\u05e8\u05d4 \u05db\u05dc\u05dc\u05d9\u05ea", "Permalink to this definition": "\u05e7\u05d9\u05e9\u05d5\u05e8 \u05e7\u05d1\u05d5\u05e2 \u05dc\u05d4\u05d2\u05d3\u05e8\u05d4 \u05d6\u05d5", "Permalink to this headline": "\u05e7\u05d9\u05e9\u05d5\u05e8 \u05e7\u05d1\u05d5\u05e2 \u05dc\u05db\u05d5\u05ea\u05e8\u05ea \u05d6\u05d5", "Please activate JavaScript to enable the search\n functionality.": "\u05d0\u05e0\u05d0 \u05d4\u05e4\u05e2\u05dc \u05d2'\u05d0\u05d5\u05d0\u05e1\u05e7\u05e8\u05d9\u05e4\u05d8 \u05e2\"\u05de \u05dc\u05d0\u05e4\u05e9\u05e8 \u05d0\u05ea\n \u05d4\u05d7\u05d9\u05e4\u05d5\u05e9.", "Preparing search...": "", "Previous topic": "\u05e0\u05d5\u05e9\u05d0 \u05e7\u05d5\u05d3\u05dd", "Quick search": "\u05d7\u05d9\u05e4\u05d5\u05e9 \u05de\u05d4\u05d9\u05e8", "Search": "\u05d7\u05d9\u05e4\u05d5\u05e9", "Search Page": "\u05d3\u05e3 \u05d7\u05d9\u05e4\u05d5\u05e9", "Search Results": "\u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d4\u05d7\u05d9\u05e4\u05d5\u05e9", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "\u05d7\u05e4\u05e9 \u05d1\u05ea\u05d5\u05da %(docstitle)s", "Searching": "", "Show Source": "\u05d4\u05e6\u05d2 \u05de\u05e7\u05d5\u05e8", "Table of Contents": "", "This Page": "\u05e2\u05de\u05d5\u05d3 \u05d6\u05d4", "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": "\u05db\u05dc \u05d4\u05e4\u05d5\u05e0\u05e7\u05e6\u05d9\u05d5\u05ea, \u05d4\u05de\u05d7\u05dc\u05e7\u05d5\u05ea, \u05d4\u05de\u05d5\u05e9\u05d2\u05d9\u05dd", "can be huge": "\u05e2\u05e9\u05d5\u05d9 \u05dc\u05d4\u05d9\u05d5\u05ea \u05e2\u05e6\u05d5\u05dd", "last updated": "", "lists all sections and subsections": "", "next chapter": "\u05e4\u05e8\u05e7 \u05d4\u05d1\u05d0", "previous chapter": "\u05e4\u05e8\u05e7 \u05e7\u05d5\u05d3\u05dd", "quick access to all modules": "\u05d2\u05d9\u05e9\u05d4 \u05de\u05d4\u05d9\u05e8\u05d4 \u05dc\u05db\u05dc \u05d4\u05de\u05d5\u05d3\u05d5\u05dc\u05d9\u05dd", "search": "\u05d7\u05d9\u05e4\u05d5\u05e9", "search this documentation": "\u05d7\u05e4\u05e9 \u05d1\u05ea\u05d9\u05e2\u05d5\u05d3 \u05d6\u05d4", "the documentation for": ""}, "plural_expr": "(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3"}); +Documentation.addTranslations({"locale": "he", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\u05e2\u05dc \u05de\u05e1\u05de\u05db\u05d9\u05dd \u05d0\u05dc\u05d5", "Automatically generated list of changes in version %(version)s": "\u05d9\u05e6\u05e8 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05e8\u05e9\u05d9\u05de\u05d4 \u05e9\u05dc \u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d1\u05d2\u05e8\u05e1\u05d4 %(version)s", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "\u05db\u05d5\u05d5\u05e5 \u05e1\u05e8\u05d2\u05dc \u05e6\u05d3", "Complete Table of Contents": "\u05ea\u05d5\u05db\u05df \u05e2\u05e0\u05d9\u05d9\u05e0\u05d9\u05dd \u05de\u05dc\u05d0", "Contents": "\u05ea\u05d5\u05db\u05df", "Copyright": "\u05d6\u05db\u05d5\u05d9\u05d5\u05ea \u05e9\u05de\u05d5\u05e8\u05d5\u05ea", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "\u05d4\u05e8\u05d7\u05d1 \u05e1\u05e8\u05d2\u05dc \u05e6\u05d3", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "Full index on one page": "\u05d0\u05d9\u05e0\u05d3\u05e7\u05e1 \u05de\u05dc\u05d0 \u05d1\u05e2\u05de\u05d5\u05d3 \u05d0\u05d7\u05d3", "General Index": "", "Global Module Index": "\u05d0\u05d9\u05e0\u05d3\u05e7\u05e1 \u05de\u05d5\u05d3\u05d5\u05dc\u05d9\u05dd \u05d2\u05dc\u05d5\u05d1\u05dc\u05d9", "Go": "\u05dc\u05da", "Hide Search Matches": "\u05d4\u05e1\u05ea\u05e8 \u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d7\u05d9\u05e4\u05d5\u05e9", "Index": "\u05d0\u05d9\u05e0\u05d3\u05e7\u05e1", "Index – %(key)s": "", "Index pages by letter": "\u05e2\u05de\u05d5\u05d3\u05d9 \u05d0\u05d9\u05e0\u05d3\u05e7\u05e1 \u05dc\u05e4\u05d9 \u05d0\u05d5\u05ea\u05d9\u05d5\u05ea", "Indices and tables:": "", "Last updated on %(last_updated)s.": "\u05e2\u05d5\u05d3\u05db\u05df \u05dc\u05d0\u05d7\u05e8\u05d5\u05e0\u05d4 \u05d1 %(last_updated)s.", "Library changes": "", "Navigation": "\u05e0\u05d9\u05d5\u05d5\u05d8", "Next topic": "\u05e0\u05d5\u05e9\u05d0 \u05d4\u05d1\u05d0", "Other changes": "\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd", "Overview": "\u05e1\u05e7\u05d9\u05e8\u05d4 \u05db\u05dc\u05dc\u05d9\u05ea", "Permalink to this definition": "\u05e7\u05d9\u05e9\u05d5\u05e8 \u05e7\u05d1\u05d5\u05e2 \u05dc\u05d4\u05d2\u05d3\u05e8\u05d4 \u05d6\u05d5", "Permalink to this headline": "\u05e7\u05d9\u05e9\u05d5\u05e8 \u05e7\u05d1\u05d5\u05e2 \u05dc\u05db\u05d5\u05ea\u05e8\u05ea \u05d6\u05d5", "Please activate JavaScript to enable the search\n functionality.": "\u05d0\u05e0\u05d0 \u05d4\u05e4\u05e2\u05dc \u05d2'\u05d0\u05d5\u05d0\u05e1\u05e7\u05e8\u05d9\u05e4\u05d8 \u05e2\"\u05de \u05dc\u05d0\u05e4\u05e9\u05e8 \u05d0\u05ea\n \u05d4\u05d7\u05d9\u05e4\u05d5\u05e9.", "Preparing search...": "", "Previous topic": "\u05e0\u05d5\u05e9\u05d0 \u05e7\u05d5\u05d3\u05dd", "Quick search": "\u05d7\u05d9\u05e4\u05d5\u05e9 \u05de\u05d4\u05d9\u05e8", "Search": "\u05d7\u05d9\u05e4\u05d5\u05e9", "Search Page": "\u05d3\u05e3 \u05d7\u05d9\u05e4\u05d5\u05e9", "Search Results": "\u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d4\u05d7\u05d9\u05e4\u05d5\u05e9", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "\u05d7\u05e4\u05e9 \u05d1\u05ea\u05d5\u05da %(docstitle)s", "Searching": "", "Show Source": "\u05d4\u05e6\u05d2 \u05de\u05e7\u05d5\u05e8", "Table of Contents": "", "This Page": "\u05e2\u05de\u05d5\u05d3 \u05d6\u05d4", "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": "\u05db\u05dc \u05d4\u05e4\u05d5\u05e0\u05e7\u05e6\u05d9\u05d5\u05ea, \u05d4\u05de\u05d7\u05dc\u05e7\u05d5\u05ea, \u05d4\u05de\u05d5\u05e9\u05d2\u05d9\u05dd", "can be huge": "\u05e2\u05e9\u05d5\u05d9 \u05dc\u05d4\u05d9\u05d5\u05ea \u05e2\u05e6\u05d5\u05dd", "last updated": "", "lists all sections and subsections": "", "next chapter": "\u05e4\u05e8\u05e7 \u05d4\u05d1\u05d0", "previous chapter": "\u05e4\u05e8\u05e7 \u05e7\u05d5\u05d3\u05dd", "quick access to all modules": "\u05d2\u05d9\u05e9\u05d4 \u05de\u05d4\u05d9\u05e8\u05d4 \u05dc\u05db\u05dc \u05d4\u05de\u05d5\u05d3\u05d5\u05dc\u05d9\u05dd", "search": "\u05d7\u05d9\u05e4\u05d5\u05e9", "search this documentation": "\u05d7\u05e4\u05e9 \u05d1\u05ea\u05d9\u05e2\u05d5\u05d3 \u05d6\u05d4", "the documentation for": ""}, "plural_expr": "(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3"}); \ No newline at end of file diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 8a75964c7aba0200cba57989b1aa9a255b9809c5..7146efdc23a14a03671099170109775fe2cfddb1 100644 GIT binary patch delta 14016 zcmeI$33OCdp2zW5AqgQ6h=BkJ+anl=*+>EbOxPCzS!EGfL;_WiNRkSvgb)!*5M;3x zv>K5`L=aSPK?+1@70^a#5En$EsMxqP+K4E!2rkU`m;2gwdd{5bIcMg~oH^qWKKI`D z>MsBLzqdm6J|FtRqoMv2F`>&W{(C0GvYO(&Sk?ai-`B~O^)S^l*aq)O;g8F*p2ekn zCOeI1w7=fgvKrIAEyJ=-Q$L((S$(MQ%(ARTc(t8n-9dY!Y|ARe2eHty{8m^88fhrS zw!F9)7g68U(XwvD-kmJ#ATGf%IOclGVr*+WM&U^e!?Va7tqa%%?HtRZ3u`>~!-udN zeu4?uBG<BNF}~H4LIe#1F%d_iI+}^<cq7)wr|}xxgAMQq*27a+2QQ%}6x!LcYGVxQ zd2^?pj_M}|8{%M$W_-&-p)O8G8|R}2+KB4tMXZH?be_M7!>OOe9@vZJs>At?t1+5- z5Ea=!VjO;in!rVj$H=b4zcGbG3R*!|)C&WUZMAMgeegbHSF9(n1)jhr_zPZ(@x*l} zcEfgf88z{=?v_;(ug3}40~OJANP1XLb|?NS9H*f#)?qm@I0DHdYYJ+hhjAiqL*-|q zo@PR6sJa_%yaN@fRgN1_k$n!e#jhZ9w)Q*E!+ZHHD~X2aUdHROIrWLiBCI*65AH?n z?Llmb?<4tWT|wncyWVD{qfrye!}eH#Ha?B|{9)AAe2ChDul*ESP^j6*4Acg-ml>#) z^u<KH$*}^PQGWzUWa|&8EWe2QT>1?ryZhiE>iMW#dI7`n07l|lsL1+{JB5o#bgdZn zp+Anm3AhH8#aA&5>-FPEVl48%HHN<i;CfUpoyD3MK_?LyjU06=4wYL&P+KwynV8=y zrJzvGL*>HDn1E*;V{WvpR@Adm9gjwBK^`gsccUWs3fg!AYvEPYz_m0x7u$)7Q1^jm zD@I{`oqrF75FS(_+iBfd{eW|hq12CJI(~rK(+J|K0lJ{t`=TN<9kus&IzEVs)RU-{ zpK){zwyd$#W3d_IThmm)C8)i621ny=)Jo%qm@UXfZc}RjM&fMLgcqSAa2Sj643ZAk zxS{4)ufuxOpF<tX-A?-<^rzAAK7}L<zsYpm7B!I^r#=w%d=zSr??Odp1&+Zrs0duf zRJ@A1AybE$Z0~_l)Q6!yKLM2+mBWa?LN=EMt>|IY9<9fwxC?bmsvOUuZnUW3#zfQw z)dgGQDCB5cv#|j8Viu;1FiAZgwS`ZjBKGkJ;;+KbG^pcdBaPWupZXxIi+LD}B^ZtO zU>#hJ3hm<<gWH_?epJ#{;kEc9sz3W?^SSmIPQ8bpf;#Mnioj@8mb+1VRp``bpeA}3 zYM`~K4uaSKccI>Y3pL>nk*^2quc&k0W|T?VUZ`;fp~m&!LP2{`fGJpt>SzsmaTDsw zjK9SUJQ}sKLc9i-;&fbxns^+Us|mG4_1gjUUN=+(ZbJUIJp4uO_^sU(l4*#i)(-n% zTdYJS-BXy3N02<VT%4T}9EOU>Yp7H58S35$8)rhEgf{g-=)q#73+pHj#<sU|$?5#h zrZ9kpcQFxLj5i(kLHe{js1@(UHu!~8kGjp&Gf@*5ja_gicEp{id*VA>g+HPjmro#3 z@h6<_r!XSV?ByY>LH!8ocpXC<Kg4YO2^FENiRP3{#wOHfp;o>EHG!8<E4_l6z{p8v zYi>gw(<!K9T7-Tj!Ac6(;bx4*_fW}o8W-a^)CXoUeGRw?_55{It{g_~{Rd9{q*FhG z%7F{0kpF`B;vn{;o8I>je_cRvlg&Bpi%On5uo*5vW&1OziSEJc@g0oE+EdI5TceI+ z1}d~&P!nE;I{&XC!LTl1U%VyXjI%bM_-n=6X;7#Rp>p6ooPa-~CNi$T{9JGc>Ly!( zI`>aF?m%VvepEz0z}EN$UW;{ZHy2eVs=ooK1r+!xXvOoe1+KszxD&O9KcXUZ^Hei| zdDxWtderCkU`u=tJK-hN9%mGqh;+c3)O(?lasYO~yD=C2yD0RhaM5Y#USz&j@5Fwz z??8oI-z*AU4l1N`9k*j$>R)1eyo3!gmCHjD?S(yY0_t<?F%FNJ=YH#33JOUShq^JQ zU~}w^jc^hw2WC3;`%&+0#3bB}UGPhc#@5r!)^x-S>U}X3XP^e2g>7*;#_Rm=r;tp; zr>H%PDmA <}nWs0q$M8y`Z2eg|r6-at+C3TovsKJ$ajb*O&FqH^pWjKI~XiEY5v zjBg#Ia1H*9%7J=iW@T-$9`##Lq0D!jk4n;Y$Vsve;A5CxZnofU)QZEnm-YEb9F6g) zJuky_+=70E`V$Ho;1|>cnpBwYf?QOHr(k<rih6$^*2m9L_rVXy^=~zpVgAWhgqpyM zsENLek@y)lz;CcI)~F=@DHNJkn!V|Vn!rS?g>$hJ{tgG>K4fuL{X0y=7GVtaRTz%X zq9(Q-<MB_}2tP-is-I93={nOar2kCf-+_jF8gvRCMZNeHs)Lj}&0gJr4XIb4PQm>+ z7>}X$G;x**bvi1vT~T{pgi(06;{(`*`lHwsKlW2-L*WW4)CsfAT|WR*sn5Zd_$)TZ zx3LMHMNP0a3s8qjBt_DVO0K1NGwyY4e3yx!7l+aQGU{UTN6#@AMm8#Rxu}&5!8*7G z)!}Bm4nIPzEPSpx6-`kq$w3{fQ5c5{P!oO(6}dgA(^Z8n@fTC~TlU@NhU$xbcrXMt z@G{i#S%)3*FeYHwJQJxTR3vV~W?1CZ??t`$1cu>3R1Un2O1>{qN%=G8>ioBwZ<6OW z$H}M;icm9MiUV=0^ZY8dq8@&anRqhxrk;h_Sb<8iXD}3BL@nrL%*2D(2Y<qzjBoW^ zV3KM+CQ?6)3gP#tfua_gizgFRABL$o9TkD~sEcSfCgB;>gc>d~6B++@`A#ZEnl z{%{(qC`8~1tc$0xHeN)1AY`#~HKUGWZ?th14#hR7h@C|xWz4<i{WKgx{RUL%A428W zX4H7Q?<M}x6b{g!m4ARbE>}?#iTa&cX;V}P`=cgwGb)6BOvZhv(0+@`m4y3DWX515 z_35a4Vh$>Ke~+5Tru&G$8eXA6SLIRX#m})d^-HMaX@0-i%MPfUFc-C=64b=!qawK( zC*fAq7B*aB+B2{=^^VvEdtnYv^;57ZY{c%kA8TU7Qgf`LQ8Q0NO{hCwhf`21f52&f z2}e=?47+0P111u8AXkO86>DMUgC@ecsJg#Dg;WZ|Q61ie8MqmBtUf}m@Cq(RJ79bf z>C+nedlSJ=aUAs@P)Rv*nOW&H)aO@V3hu`7cp9@9-@5T3b8KdzLK8%-^h4AI62hno zWlPj?%EfH#jv8n>hT(�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 SLk(PC{rfk3^grD2*1rJ7;TL=W delta 16221 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 diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index 69121ed31..41505ae42 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" "MIME-Version: 1.0\n" @@ -19,21 +19,21 @@ msgstr "" "Language: he\n" "Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n == 2 && n % 1 == 0) ? 1: (n % 10 == 0 && n % 1 == 0 && n > 10) ? 2 : 3;\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -46,95 +46,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -150,60 +138,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -211,833 +193,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "רמת המודול" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "אינדקס" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "הבא" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "הקודם" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "תיעוד %s %s" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1051,188 +922,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "(בתוך" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "אינדקס" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "מהדורה" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1251,253 +1144,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1505,11 +1392,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1517,25 +1404,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1545,15 +1432,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1564,22 +1451,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1588,36 +1475,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1625,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1655,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1684,214 +1571,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "מחבר הקטע:" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "מחבר המודול:" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "מחבר הקוד:" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "מחבר:" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "פרמטרים" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1920,12 +1807,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "פונקציה" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "" @@ -1933,7 +1820,7 @@ msgstr "" msgid "macro" msgstr "מאקרו" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "" @@ -1941,297 +1828,262 @@ msgstr "" msgid "variable" msgstr "משתנה" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "חדש בגרסה %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "השתנה בגרסה %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr " לא מומלץ לשימוש מגרסה %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (פונקציית C++)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (מחלקת C++)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "מחלקה" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "מודול" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "מילת מפתח" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "משתנים" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "" @@ -2240,209 +2092,200 @@ msgstr "" msgid "environment variable; %s" msgstr "משתנה סביבה; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%sאופציית שורת הפקודה ; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "משתנה סביבה" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "אינדקס" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "מודול אינדקס" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "דף חיפוש" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "ראה %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "ראה גם %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2454,352 +2297,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[מקור]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "לעשות" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "הטקסט המקורי" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[תיעוד]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>הראה קוד מקור ל %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>כל המודולים שיש להם קוד זמין</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2807,66 +2679,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2881,106 +2772,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "תשומת לב" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "זהירות" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "סכנה" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "שגיאה" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "רמז" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "חשוב" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "הערה" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "ראה גם" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "טיפ" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "אזהרה" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "המשך מעמוד קודם" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "המשך בעמוד הבא" @@ -2999,7 +2890,7 @@ msgstr "חיפוש" msgid "Go" msgstr "לך" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "הצג מקור" @@ -3148,13 +3039,13 @@ msgstr "חיפוש" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "תוצאות החיפוש" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3196,36 +3087,36 @@ msgstr "" msgid "Other changes" msgstr "שינויים אחרים" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "קישור קבוע לכותרת זו" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "קישור קבוע להגדרה זו" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "הסתר תוצאות חיפוש" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3242,76 +3133,89 @@ msgstr "כווץ סרגל צד" msgid "Contents" msgstr "תוכן" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3325,140 +3229,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "מהדורה" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "הערות שוליים" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[תמונה]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.js b/sphinx/locale/hi/LC_MESSAGES/sphinx.js index f63aec687..c6e469668 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "hi", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(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 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \u0938\u0947 \u092c\u0928\u093e\u092f\u093e \u0917\u092f\u093e\u0964 ", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "Full index on one page": "", "General Index": "", "Global Module Index": "", "Go": "", "Hide Search Matches": "", "Index": "\u0905\u0928\u0941\u0915\u094d\u0930\u092e\u0923\u093f\u0915\u093e", "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.": "\u0916\u094b\u091c \u0928\u0947 \u0915\u0947 \u0932\u093f\u090f JavaScript \u0915\u093e \u0939\u094b\u0928\u093e \u0906\u0935\u0936\u094d\u092f\u0915 \u0939\u0948. \u0915\u0943\u092a\u092f\u093e JavaScript \u0915\u094b \u0936\u0936\u0915\u094d\u0924 \u0915\u0940\u091c\u093f\u092f\u0947 ", "Preparing search...": "", "Previous topic": "", "Quick search": "", "Search": "", "Search Page": "\u0916\u094b\u091c \u092a\u0943\u0937\u094d\u0920", "Search Results": "\u0916\u094b\u091c \u092a\u0930\u0940\u0923\u093e\u092e ", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Show Source": "", "Table of Contents": "", "This Page": "\u092f\u0939 \u092a\u0943\u0937\u094d\u0920 ", "Welcome! This is": "\u0928\u092e\u0936\u094d\u0915\u093e\u0930\u0964 \u092f\u0939 \u0939\u0948 ", "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)"}); +Documentation.addTranslations({"locale": "hi", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">\u0938\u0930\u094d\u0935\u093e\u0927\u093f\u0915\u093e\u0930</a> %(copyright)s.", "© Copyright %(copyright)s.": "© \u0938\u0930\u094d\u0935\u093e\u0927\u093f\u0915\u093e\u0930 %(copyright)s.", ", in ": ", \u092e\u0947\u0902 ", "About these documents": "\u0907\u0928 \u0932\u0947\u0916\u092a\u0924\u094d\u0930\u094b\u0902 \u0915\u0947 \u092c\u093e\u0930\u0947 \u092e\u0947\u0902", "Automatically generated list of changes in version %(version)s": "\u0938\u0902\u0938\u094d\u0915\u0930\u0923 %(version)s \u092e\u0947\u0902 \u0938\u094d\u0935\u0924\u0903 \u0930\u091a\u093f\u0924 \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928\u094b\u0902 \u0915\u0940 \u0938\u0942\u091a\u0940", "C API changes": "\u0938\u0940 \u0910.\u092a\u0940.\u0906\u0908. \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928", "Changes in Version %(version)s — %(docstitle)s": "\u092a\u0930\u093f\u0935\u0930\u094d\u0924\u093f\u0924 \u0938\u0902\u0938\u094d\u0915\u0930\u0923 %(version)s — %(docstitle)s", "Collapse sidebar": "\u0915\u093f\u0928\u093e\u0930\u0947 \u0915\u093e \u0938\u094d\u0925\u093e\u0928 \u0918\u091f\u093e\u090f\u0902", "Complete Table of Contents": "\u0935\u093f\u0938\u094d\u0924\u0943\u0924 \u0935\u093f\u0937\u092f-\u0938\u0942\u091a\u0940", "Contents": "\u0935\u093f\u0937\u092f \u0938\u093e\u092e\u093f\u0917\u094d\u0930\u0940", "Copyright": "\u0938\u0930\u094d\u0935\u093e\u0927\u093f\u0915\u093e\u0930", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \u0938\u0947 \u0928\u093f\u0930\u094d\u092e\u093f\u0924.", "Expand sidebar": "\u0915\u093f\u0928\u093e\u0930\u0947 \u0915\u093e \u0938\u094d\u0925\u093e\u0928 \u092c\u095d\u093e\u090f\u0902", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u092f\u0939\u093e\u0901 \u0938\u0947 \u0906\u092a \u0907\u0928 \u092a\u094d\u0930\u0932\u0947\u0916\u094b\u0902 \u092e\u0947\u0902 \u0916\u094b\u091c \u0915\u0930 \u0938\u0915\u0924\u0947 \u0939\u0948\u0902. \u0905\u092a\u0928\u0947 \u0916\u094b\u091c \u0936\u092c\u094d\u0926\u094b\u0902 \u0915\u094b\n\u0928\u0940\u091a\u0947 \u0926\u093f\u090f \u0917\u090f \u0938\u094d\u0925\u093e\u0928 \u092e\u0947\u0902 \u0926\u0947\u0902 \u0914\u0930 \u092b\u093f\u0930 \"\u0916\u094b\u091c\" \u0915\u094d\u0932\u093f\u0915 \u0915\u0930\u0947\u0902. \u0927\u094d\u092f\u093e\u0928 \u0930\u0939\u0947 \u0915\u093f\n\u0916\u094b\u091c \u092a\u094d\u0930\u0915\u094d\u0930\u092e \u092e\u0947\u0902 \u0938\u092d\u0940 \u0936\u092c\u094d\u0926\u094b\u0902 \u0915\u0940 \u0916\u094b\u091c \u0915\u0940 \u091c\u093e\u090f\u0917\u0940. \u0915\u092e\u0924\u0930 \u0936\u092c\u094d\u0926\u094b\u0902 \u0935\u093e\u0932\u0947\n\u092a\u0943\u0937\u094d\u0920 \u092a\u0930\u093f\u0923\u093e\u092e-\u0924\u093e\u0932\u093f\u0915\u093e \u092e\u0947\u0902 \u0928\u0939\u0940\u0902 \u0926\u093f\u0916\u0947\u0902\u0917\u0947.", "Full index on one page": "\u090f\u0915 \u092a\u0943\u0937\u094d\u0920 \u092a\u0930 \u092a\u0942\u0930\u0940 \u0905\u0928\u0941\u0915\u094d\u0930\u092e\u0923\u093f\u0915\u093e", "General Index": "\u0938\u093e\u092e\u093e\u0928\u094d\u092f \u0905\u0928\u0941\u0915\u094d\u0930\u092e\u093e\u0923\u093f\u0915\u093e", "Global Module Index": "\u0938\u093e\u0930\u094d\u0935\u092d\u094c\u092e\u093f\u0915 \u092a\u094d\u0930\u092d\u093e\u0917 \u0938\u0942\u091a\u0940", "Go": "\u091a\u0932\u093f\u090f", "Hide Search Matches": "\u0916\u094b\u091c\u0947 \u0917\u090f \u091c\u094b\u095c\u0947 \u091b\u093f\u092a\u093e\u090f\u0902", "Index": "\u0905\u0928\u0941\u0915\u094d\u0930\u092e\u0923\u093f\u0915\u093e", "Index – %(key)s": "\u0905\u0928\u0941\u0915\u094d\u0930\u092e\u0923\u093f\u0915\u093e – %(key)s", "Index pages by letter": "\u0905\u0915\u094d\u0937\u0930 \u0926\u094d\u0935\u093e\u0930\u093e \u0905\u0928\u0941\u0915\u094d\u0930\u092e\u093f\u0924 \u092a\u0943\u0937\u094d\u0920", "Indices and tables:": "\u0938\u0942\u091a\u093f\u092f\u093e\u0901 \u0914\u0930 \u0938\u093e\u0930\u0923\u093f\u092f\u093e\u0901:", "Last updated on %(last_updated)s.": "\u0905\u0902\u0924\u093f\u092e \u092c\u093e\u0930 \u0938\u092e\u094d\u092a\u093e\u0926\u093f\u0924 %(last_updated)s.", "Library changes": "\u092a\u0941\u0938\u094d\u0924\u0915\u093e\u0932\u092f \u092e\u0947\u0902 \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928", "Navigation": "\u0938\u0902\u091a\u093e\u0932\u0928", "Next topic": "\u0905\u0917\u0932\u093e \u092a\u094d\u0930\u0915\u0930\u0923", "Other changes": "\u0905\u0928\u094d\u092f \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928", "Overview": "\u0938\u093f\u0902\u0939\u093e\u0935\u0932\u094b\u0915\u0928", "Permalink to this definition": "\u0907\u0938 \u092a\u0930\u093f\u092d\u093e\u0937\u093e \u0915\u0940 \u0938\u094d\u0925\u093e\u092f\u0940 \u0915\u095c\u0940", "Permalink to this headline": "\u0907\u0938 \u0936\u0940\u0930\u094d\u0937-\u092a\u0902\u0915\u094d\u0924\u093f \u0915\u0940 \u0938\u094d\u0925\u093e\u092f\u0940 \u0915\u095c\u0940", "Please activate JavaScript to enable the search\n functionality.": "\u0916\u094b\u091c \u0915\u093e\u0930\u094d\u092f \u0915\u0947 \u0932\u093f\u090f \u091c\u093e\u0935\u093e \u0938\u094d\u0915\u094d\u0930\u093f\u092a\u094d\u091f \u0915\u093e \u0939\u094b\u0928\u093e \u0906\u0935\u0936\u094d\u092f\u0915 \u0939\u0948. \u0915\u0943\u092a\u092f\u093e \u091c\u093e\u0935\u093e \u0938\u094d\u0915\u094d\u0930\u093f\u092a\u094d\u091f \u0915\u094b \u0936\u0941\u0930\u0942 \u0915\u0930\u0947\u0902.", "Preparing search...": "\u0916\u094b\u091c \u0915\u0940 \u0924\u0948\u092f\u093e\u0930\u0940", "Previous topic": "\u092a\u093f\u091b\u0932\u093e \u092a\u094d\u0930\u0915\u0930\u0923", "Quick search": "\u0924\u094d\u0935\u0930\u093f\u0924 \u0916\u094b\u091c", "Search": "\u0916\u094b\u091c", "Search Page": "\u0916\u094b\u091c \u092a\u0943\u0937\u094d\u0920", "Search Results": "\u0916\u094b\u091c \u092a\u0930\u0940\u0923\u093e\u092e ", "Search finished, found %s page(s) matching the search query.": "\u0916\u094b\u091c \u092a\u0942\u0930\u094d\u0923, \u0916\u094b\u091c \u0935\u093f\u0937\u092f \u0915\u0947 \u0905\u0928\u0941\u0915\u0942\u0932 %s \u092a\u0943\u0937\u094d\u0920 \u092e\u093f\u0932\u093e (\u092e\u093f\u0932\u0947).", "Search within %(docstitle)s": "%(docstitle)s \u092e\u0947\u0902 \u0916\u094b\u091c\u0947\u0902", "Searching": "\u0916\u094b\u091c \u091c\u093e\u0930\u0940", "Show Source": "\u0938\u094d\u0930\u094b\u0924 \u0926\u093f\u0916\u093e\u090f\u0901", "Table of Contents": "\u0935\u093f\u0937\u092f-\u0938\u0942\u091a\u0940", "This Page": "\u092f\u0939 \u092a\u0943\u0937\u094d\u0920 ", "Welcome! This is": "\u0928\u092e\u0938\u094d\u0924\u0947! \u092f\u0939 \u0939\u0948", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u0906\u092a\u0915\u0947 \u0916\u094b\u091c \u092a\u0930\u093f\u0923\u093e\u092e\u094b\u0902 \u092e\u0947\u0902 \u0915\u094b\u0908 \u092a\u094d\u0930\u0932\u0947\u0916 \u0928\u0939\u0940\u0902 \u092e\u093f\u0932\u093e. \u0915\u0943\u092a\u092f\u093e \u0938\u0941\u0928\u093f\u0936\u094d\u091a\u093f\u0924 \u0915\u0930\u0947\u0902 \u0915\u093f \u0938\u092d\u0940 \u0936\u092c\u094d\u0926\u094b\u0902 \u0915\u0940 \u0935\u0930\u094d\u0924\u0928\u0940 \u0936\u0941\u0926\u094d\u0927 \u0939\u0948 \u0914\u0930 \u0906\u092a\u0928\u0947 \u092f\u0925\u0947\u0937\u094d\u091f \u0936\u094d\u0930\u0947\u0923\u093f\u092f\u093e\u0902 \u091a\u0941\u0928\u0940 \u0939\u0948\u0902.", "all functions, classes, terms": "\u0938\u092d\u0940 \u0915\u093e\u0930\u094d\u092f\u092f\u0941\u0915\u094d\u0924\u093f\u092f\u093e\u0902, \u0935\u0930\u094d\u0917, \u0936\u092c\u094d\u0926", "can be huge": "\u092c\u0943\u0939\u0926\u093e\u0915\u093e\u0930 \u0939\u094b \u0938\u0915\u0924\u093e \u0939\u0948", "last updated": "\u0905\u0902\u0924\u093f\u092e \u092a\u0930\u093f\u0935\u0930\u094d\u0927\u0928", "lists all sections and subsections": "\u0938\u092d\u0940 \u0905\u0928\u0941\u092d\u093e\u0917\u094b\u0902 \u090f\u0935\u0902 \u0909\u092a-\u0905\u0928\u0941\u092d\u093e\u0917\u094b\u0902 \u0915\u0940 \u0938\u0942\u091a\u0940", "next chapter": "\u0905\u0917\u0932\u093e \u0905\u0927\u094d\u092f\u093e\u092f", "previous chapter": "\u092a\u093f\u091b\u0932\u093e \u0905\u0927\u094d\u092f\u093e\u092f", "quick access to all modules": "\u0938\u092d\u0940 \u092a\u094d\u0930\u092d\u093e\u0917 \u0924\u0915 \u0924\u0941\u0930\u0902\u0924 \u092a\u0939\u0941\u0901\u091a", "search": "\u0916\u094b\u091c", "search this documentation": "\u0907\u0938 \u0906\u0932\u0947\u0916 \u092e\u0947\u0902 \u0916\u094b\u091c\u0947\u0902", "the documentation for": "\u0906\u0932\u0947\u0916 \u0935\u093f\u0937\u092f"}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index 42f10e7f86dd7e3a379ead6895157660e43b368c..f44e96e975295a4e2e442da0602a40483be6f270 100644 GIT binary patch literal 113306 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­+KecqW(LK;+(`c2%>yQ|5Y z@UxD~*E-f7*P~obF<##XZCD7u&4#(CGbB8lF|g5!W6&FLoV!q}C8b)(mO2ii=elZ1 zs?VS_&;<pNBXTF}9CRHk>Fr`Fl^-mAyhP#rsirjW>DOw;1Hcs$6q~u1<-+>ME|LRr zhjR_y_w(o4GdD60*UKv;5qIxLVH>KXk_F~m*fwAQb6h(xWQKh5H^+X(Z&hlX(vg9D zfN08NS7!0ns`dG;`E6~3zx3RezQV~E#Xy*I(D+K>yr_(}cCL(-J{DP`b^IC$rWz~w zo9Kv$REecO*rk1SV?3Hb5iJKf6G{=&G~9$mKGbA>#bipW!DGR`hdR~MXl^B(>rZ&~ zFqVli{xl#sl@ZmgA~20(sb*LY7D5ON_~RW(=y|W7E&g=nJF^)NM87tlUEAHb#S_u0 zbEg*y#?zUKREa*=68%V+?^#eI5-aBMSq0DU(1z%<)oVouZ3Vev<3|-%g5(3m9hn$Q zC>W!00PcI!XPL7QxQv|EQS1s>2tB9t_G)j`d@{S3qW<sQjq9)Re%P&@i_EdJ@LcBS zshEEf<^!<~PJr|~B;gn%S{@bFKZ9CUP9>Rc^?z|9$&uU9_fTs=GAlip$}L%s4Y{nz zn92B4Nn~GJYm)_A$%{_QZ*Upz_Nt)Og#`w16pBp@-VcIptbWS8@B#xu+Fnm5+1l;i zS}bxSy>>pW4M)lQZkQ%ui<w%judL&Dte7{b_1MzA4{CXXGm`)Ug@*(k*@pu)Ay_r< z;c{QkH3Y~YipNA!3^WM$YM`7aAq^YnX4RZ13AGaAA5><j%z&|Zcn+@K<J#wx1#>`S zlIjuhtZjzUvB)CITK7`#3z>+F4Vb;B#7&ZvpP|orlu{5HP>7AdSjWf#ocItJ_ujM3 zSWZ)UG)v4Pmo8%#@Q^PV>^!FTnGFeaFX;h;pL8$1vUT<Dt0GrE^EX--w9Sm1S4U@K zoHam4JaO=oZhiggty}Bsa6?^GKrhIsW#SkJ;G54w5)6Zqs>)nLA*QFtfB{!>lUG3` zTn7la72x+6ROAt?jMWBI0`#(eWqQ`6faQtRa&U96i*$@H41%xxJG4{=%s^aV28Ygj zNSk&IZ0;N1*Z`nTK3<xM=A?*$Zp$iRuzu8FUDDsNzW@#nk<yl5-lW)ba>}%BLr0eg zZ3(1?N?6)C0Q`UqTgjizMNKqTQ*^d^>|x`a@lim5=)wlWtbpBc0pYr*E(T+&Ihd_p z<)F_|XN%hv`;wDCxJsKmi_MRKi<K2)q!*!V2&4$YJ_D<yY8W#|T4f6nhIq<=%!Y9+ z9#BG}J?A?}A*-S%^1wI8YEAulcjY?YJ>0(X@^jlShbp0wiz{Lhk)L#Z=wT(!*{_%% zP4T*uf%5|=84w*481%q*75XjJ_Xx(1=92>U*1kOWKXPf`^(q>@u_eVq6Htto^*I=9 za*@R*7&N9oU5~<mP=`DhbLYnHt@*lMsG%l8QOqB5H7?NZ5Q)|UwOLw5HN4XUwkKDl zR22Nx)tkGwZgFJT$pXFvsf0)c;9}jV2{2K^R7Oif(}}5F?qbDLC(aBkzmYbx50g-W z(7-=HsifHmks=IZMr9+$+IeL1_hC{=%QD6%pA@qV4C5au7<})f5|9Xpj$07%4R`YW z2znfrMj+<}iI%mynVa;3Rv(3!vW5U+8jNw0aVo(UI8cya3RVGm*j_)f<uXi+C2_h0 z`R9ta!>aAG_*A8v3}hUsUmh7a{Kr)h75B1_A=X%4mCG04j<oIpENG4KloBt2;)Lvg zv~S!c1M35A66At6Am!+Cx2*;vwcry@Qx+S@!?Cj(5v%7e20~P)VlbqIvgTtgG(iBo z13xXAxx#UN-CmYq%<qYu2XNyL^6yQ>F$3%3tOsljg#a!~m?1HmTCqQ@O9S~|yu;?& zTWP+TW*r*HL1U`}9T2%^SSzf=J%1SrOmM(rTj<d0(hVu7NyAI%0Ak2;@I{4z4Wu6^ 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 aG2vu2^hJ}COiti1Lj|MRn1fRZ@c#k4^JP5% delta 16685 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 MgZzsBs~_b54h0=tD*ylh diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index 3ee276581..d8a7564d0 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -1,16 +1,17 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: +# Ajay Singh <ajaysajay@gmail.com>, 2019 # Purnank H. Ghumalia <me@purnank.in>, 2015-2016 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-25 09:36+0000\n" +"Last-Translator: Ajay Singh <ajaysajay@gmail.com>\n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,1220 +20,1113 @@ msgstr "" "Language: hi\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" +msgstr "विन्यास निर्देशिका में कोन्फ़.पाय #conf.py# फाइल (%s) नहीं है " -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" -msgstr "" +msgstr "स्रोत निर्देशिका (%s) नहीं मिली" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" -msgstr "" +msgstr "स्रोत निर्देशिका और गंतव्य निर्देशिका समरूप नहीं हो सकतीं" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" -msgstr "" +msgstr "स्फिंक्स %s संस्करण चल रहा है" #: sphinx/application.py:214 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." -msgstr "" +msgstr "इस परियोजना में स्फिंक्स का कम से कम %s संस्करण चाहिए और इसलिए इस संस्करण से बनाना संभव नहीं है." #: sphinx/application.py:234 -msgid "making output directory..." -msgstr "" +msgid "making output directory" +msgstr "परिणाम निर्देशिका बनाई जा रही है" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "%s आयाम को स्थापित करते हुए:" + +#: sphinx/application.py:245 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 "" +msgstr "'स्थापना' को जैसा कि अभी कोन्फ़.पाई में परिभाषित किया गया है, पाइथन से निर्देशित नहीं है. कृपया इसकी परिभाषा में परिवर्तन करके इसे निर्देश योग्य कर्म बनाएं. कोन्फ़.पाई को स्फिंक्स के आयाम की तरह व्यवहार के लिए इसकी आवश्कयता है." -#: sphinx/application.py:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " -msgstr "" +msgstr "[%s] अनुवाद पढ़ा जा रहा है..." -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" -msgstr "" +msgstr "संपन्न" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" -msgstr "" +msgstr "अंतर्निर्मित संदेशों में उपलब्ध नहीं है" -#: sphinx/application.py:300 -msgid "loading pickled environment... " -msgstr "" +#: sphinx/application.py:298 +msgid "loading pickled environment" +msgstr "रक्षित स्थिति को लागू किया जा रहा है" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" -msgstr "" +msgstr "असफल: %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" -msgstr "" +msgstr "किसी निर्माता को नहीं चुना गया, मानक उपयोग: एच्.टी.ऍम.एल." -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" -msgstr "" +msgstr "सफल हुआ" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" -msgstr "" +msgstr "समस्याओं के साथ समाप्त हुआ" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." -msgstr "" +msgstr "%s सम्पूर्ण, %s चेतावनी." -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." -msgstr "" +msgstr "%s निर्मित." -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" -msgstr "" +msgid "node class %r is already registered, its visitors will be overridden" +msgstr "निर्देशक कक्षा #node class# %r पहले से पंजीकृत है, इसके अभ्यागत निरस्त हो जाएंगे " -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" -msgstr "" +msgid "directive %r is already registered, it will be overridden" +msgstr "निर्देश %r पहले से पंजीकृत है, यह निरस्त हो जाएगा" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" -msgstr "" +msgid "role %r is already registered, it will be overridden" +msgstr "भूमिका %r पहले से पंजीकृत है, यह निरस्त हो जाएगी" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " "assuming it isn't - please ask the extension author to check and make it " "explicit" -msgstr "" +msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर पाठन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " "assuming it isn't - please ask the extension author to check and make it " "explicit" -msgstr "" +msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर लेखन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" -msgstr "" +msgstr "%s पर काम कर रहे हैं" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" -msgstr "" +msgstr "शब्दकोष विन्यास मान %r की उल्लंघन नहीं किया जा सकता, अनदेखा किया गया (प्रत्येक अवयव का मान रखने के लिए %r का उपयोग करें)" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" -msgstr "" +msgstr "विन्यास मान %r के लिए अमान्य संख्या %r, अनदेखा किया गया" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" -msgstr "" +msgstr "असमर्थित प्रकार के साथ विन्यास मान %r का उल्लंघन नहीं किया जा सकता, अनदेखा किया गया" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" -msgstr "" +msgstr "आरोहण में अज्ञात विन्यास मान %r, अनदेखा किया गया" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" -msgstr "" +msgstr "ऐसा कोई विन्यास मान नहीं है: %s" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" -msgstr "" +msgstr "विन्यास मान %r पहले से विद्यमान है" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" -msgstr "" +msgid "There is a syntax error in your configuration file: %s\n" +msgstr "आपकी विन्यास फाइल में रचनाक्रम की त्रुटि है: %s\n" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" -msgstr "" +msgstr "विन्यास फाइल (अथवा इसके द्वारा आयातित प्रभागों) द्वारा sys.exit() का आह्वान किया गया" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" "\n" "%s" -msgstr "" +msgstr "विन्यास फाइल में प्रोग्राम के योग्य त्रुटि है:\n\n%s" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." -msgstr "" +msgstr "विन्यास मान `source_suffix' में अक्षर-समूह, अक्षर-समूहों की सूची, अथवा कोष की अनुमति है. लेकिन `%r' दिया गया है." -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" -msgstr "" +msgstr "भाग %s" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "चित्र %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" -msgstr "" +msgstr "सारणी %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" -msgstr "" +msgstr "सूची %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." -msgstr "" - -#: sphinx/config.py:459 -msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " -"{permitted}." -msgstr "" +msgstr "`{name}` विन्यास मान, {candidates} में से एक होना चाहिए, परन्तु `{current}` दिया गया है." #: sphinx/config.py:465 msgid "" +"The config value `{name}' has type `{current.__name__}'; expected " +"{permitted}." +msgstr "विन्यास मान `{name}' का प्रकार `{current.__name__}' है; अपेक्षित {permitted}." + +#: sphinx/config.py:478 +msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." -msgstr "" +msgstr "विन्यास मान `{name}' का प्रकार `{current.__name__}' है; मानक `{default.__name__}' का प्रयोग किया गया." -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." -msgstr "" +msgstr "विन्यास मान %r एक बिना-असकी #non-ASCII# अक्षरों के अक्षर-समूह है; यह यूनिकोड त्रुटियां करवा सकता है. कृपया यूनिकोड अक्षर-समूह का प्रयोग करें, जैसे कि %r." -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "primary_domain %r नहीं मिला, अनदेखा किया गया." + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "संस्करण 2.0 से, स्फिंक्स इंडेक्स #\"index\"# का मास्टर-डॉक् #master_doc# की तरह स्वतः उपयोग करता है. कृपया अपनी conf.py में \"master_doc = 'contents'\" जोड़ें." + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" -msgstr "" +msgstr "%r घटना पहले से विद्यमान है" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" -msgstr "" +msgstr "अज्ञात घटना नाम: %s" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." -msgstr "" +msgstr "आयाम %s की needs_extensions मान में आवश्कता है, पर यह नहीं चढ़ाया गया है." -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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 "" +msgstr "इस परियोजना में आयाम %s का कम से कम %s संस्करण चाहिए इसलिए उपलब्ध संस्करण (%s) से बनाना संभव नहीं है." -#: sphinx/highlighting.py:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" -msgstr "" +msgstr "पिगमेंटस लेक्सर नाम %r अज्ञात है" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." -msgstr "" +msgstr "literal_block का \"%s\" नियमन नहीं हो सका. विशेषअंकन छोड़ दिया गया." -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" -msgstr "" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." +msgstr "लेखपत्र पठनीय नहीं है. उपेक्षित." -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" -msgstr "" +msgstr "निर्माण वर्ग %s का कोई \"नाम\" भाव नहीं है" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" -msgstr "" +msgstr "निर्माता %r पहले से (%s प्रभाग में) उपलब्ध है" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" -msgstr "" +msgstr "निर्माता नाम %s पंजीकृत नहीं है अथवा प्रवेश स्थान पर उपलब्ध नहीं है." -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" -msgstr "" +msgstr "निर्माता नाम %s पंजीकृत नहीं है" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" -msgstr "" +msgstr "अधिकारक्षेत्र %s पहले से पंजीकृत है" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" -msgstr "" +msgstr "अधिकारक्षेत्र %s अभी पंजीकृत नहीं है" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" -msgstr "" +msgid "The %r directive is already registered to domain %s" +msgstr "%r निर्देश पहले से अधिकार-क्षेत्र %s में पंजीकृत है, " -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" -msgstr "" +msgid "The %r role is already registered to domain %s" +msgstr "%r भूमिका पहले से अधिकार-क्षेत्र %s में पंजीकृत है, " -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" -msgstr "" +msgid "The %r index is already registered to domain %s" +msgstr "The %r index is already registered to domain %s" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" -msgstr "" +msgstr "%r object_type पहले से पंजीकृत है" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" -msgstr "" +msgstr "%r crossref_type पहले से पंजीकृत है" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" -msgstr "" +msgstr "source_suffix %r पहले से पंजीकृत है" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" -msgstr "" +msgstr "%r का source_parser पहले से पंजीकृत है" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" -msgstr "" +msgstr "%s का स्रोत व्याख्याता पंजीकृत नहीं है" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" -msgstr "" +msgstr "%r का source_input पहले से पंजीकृत है" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" -msgstr "" +msgid "Translator for %r already exists" +msgstr "%r के लिए अनुवादक पहले से विद्यमान है" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" -msgstr "" +msgstr "add_node() के kwargs एक (visit, depart) फंक्शन टपल #function tuple# होने चाहिए: %r=%r" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" -msgstr "" +msgstr "enumerable_node %r पहले से पंजीकृत है" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" -msgstr "" +msgstr "गणित प्रस्तोता %s पहले से पंजीकृत है" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." -msgstr "" - -#: sphinx/registry.py:474 -msgid "Original exception:\n" -msgstr "" +msgstr "%r आयाम को %sसंस्करण से स्फिंक्स में सम्मिलित किया जा चुका है; आयाम की उपेक्षा की गयी." #: sphinx/registry.py:475 +msgid "Original exception:\n" +msgstr "मौलिक अपवाद:\n" + +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" -msgstr "" +msgstr "%s आयाम का आयात नहीं किया जा सका" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" -msgstr "" +msgstr "आयाम %r में कोई सेटअप #setup()# कारक नहीं है; क्या यह वास्तव में स्फिंक्स का परिवर्धक प्रभाग है?" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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 "" +msgstr "इस परियोजना में प्रयुक्त %s परिवर्धक को स्फिंक्स का कम से कम %s संस्करण चाहिए; इसलिए इस संस्करण से बनाना संभव नहीं है." -#: sphinx/registry.py:495 +#: sphinx/registry.py:496 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" -msgstr "" +msgstr "परिवर्धक %r के सेटअप() कर्म से एक असहाय वस्तु वापस मिली है; इसको 'कुछ नहीं' अथवा मेटाडाटा कोश भेजना चाहिए था" -#: sphinx/roles.py:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" -msgstr "Python सुधार का सुझाव; PEP %s" +msgstr "पाइथन अभिवृद्धि प्रस्ताव; पी.ई.पी. %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" -msgstr "" +msgstr "रुपविन्यास %r में कोई \"रूप\" मान नहीं है" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" -msgstr "" +msgstr "रुपविन्यास %r में कोई अनुगत मान नहीं है" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" -msgstr "" +msgstr "%r नाम से कोई रूप नहीं मिला, %r द्वारा अनुगत" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" -msgstr "" +msgstr "विन्यास मान %s.%s खोजे गए किसी भी रूप विन्यास में नहीं दिखा" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" -msgstr "" +msgstr "विन्यास का असमर्थित रूप विकल्प %r दिया गया" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" -msgstr "" +msgstr "रुपविन्यास के पथ में फाइल %r कोई प्रमाणिक ज़िप फाइल नहीं है या इसमें कोई रुपविन्यास नहीं सहेजा गया है" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" -msgstr "" +msgstr "संस्करण 1.4.0 से sphinx_rtd_theme पर कोई दृढ निर्भरता नहीं है. कृपया इसे स्वयं स्थापित करें. (pip install sphinx_rtd_theme)" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" -msgstr "" +msgstr "%r नामक कोई रूप विन्यास नहीं मिला (theme.conf अनुपस्थित?)" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" -msgstr "" +msgstr "%s निर्माता के लिए योग्य चित्र नहीं मिला: %s.(%s)" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" -msgstr "" +msgstr "%s निर्माता के लिए योग्य चित्र नहीं मिला: %s" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " -msgstr "" +msgstr "निर्माणाधीन [mo]: " -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " -msgstr "" +msgstr "परिणाम लिखा जा रहा है..." -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" -msgstr "" +msgstr "सभी %d पी.ओ. फाइलें" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" -msgstr "" +msgstr "निर्दिष्ट %d पी.ओ. फाइलों के लक्ष्य" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" -msgstr "" +msgstr "%d पी.ओ. फाइलों के लक्ष्य कालातीत है" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" -msgstr "" +msgstr "सभी स्रोत फाइलें" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" -msgstr "" +msgstr "आदेश स्थान में दी गयी फाइल %r स्रोत निर्देशिका में नहीं है, उपेक्षा की जा रही है" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" -msgstr "" +msgstr "आदेश स्थान में दी गयी फाइल %r का नहीं है, उपेक्षा कर दी गई" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" -msgstr "" +msgstr "%d स्रोत फाइलें आदेश स्थान में दी " -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" -msgstr "" +msgstr "%d फाइलों के लक्ष्य कालातीत है" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" -msgstr "" +msgstr "निर्माणाधीन [%s]" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " -msgstr "" +msgstr "अप्रचलित फाइलों को चिन्हित किया जा रहा है..." -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" -msgstr "" +msgstr "%d मिला" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" -msgstr "" +msgstr "एक भी नहीं मिला" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " -msgstr "" +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" +msgstr "स्थिति को परिरक्षित किया जा रहा है" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " -msgstr "" +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" +msgstr "संगतता की जांच की जा रही है" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." -msgstr "" +msgstr "कोई प्रयोजन कालातीत नहीं है" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "स्थिति का नवीनीकरण किया जा रहा है" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "%s जोड़ा गया, %s बदला गया, %s हटाया गया" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "स्रोतों को पढ़ा जा रहा है..." + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "कर्मियों की प्रतीक्षा हो रही है" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" -msgstr "" +msgstr "लेखन के लिए शेष लेखपत्र: %s" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " -msgstr "" +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" +msgstr "लेखपत्र बनाए जा रहे हैं" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." -msgstr "" +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" +msgstr "विषय-सूची प्रविष्टि की प्रतिलिपि पायी गई: %s" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "चित्रों की प्रतिलिपि बनाई जा रही है..." + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" -msgstr "" +msgstr "चित्रलेख फाइल %r नहीं पढ़ा जा सका: इसकी प्रतिलिपि बनाई जा रही है" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" -msgstr "" +msgstr "चित्रलेख फाइल %r की प्रतिलिपि नहीं की जा सकी:%s" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" -msgstr "" +msgstr "चित्रलेख फाइल %r नहीं लिखा जा सका:%s" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" -msgstr "" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" +msgstr "पिलो नहीं मिला - चित्र फाइलों की प्रतिलिपि बनाई जा रही है" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." -msgstr "" +msgstr "%s फाइल को लिखा जा रहा है..." -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" -msgstr "" +msgstr "%s के लिए अज्ञात लेख प्रकार, छोड़ा गया" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." -msgstr "" +msgstr "संक्षिप्त विवरण फाइल %(outdir)s में है." -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." -msgstr "" +msgstr "%s संस्करण में कोई परिवर्तन नहीं हैं." + +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "सार फाइल को लिखा जा रहा है..." + +#: sphinx/builders/changes.py:87 +msgid "Builtins" +msgstr "अंतर्निर्मित" #: sphinx/builders/changes.py:89 -msgid "Builtins" -msgstr "" - -#: sphinx/builders/changes.py:91 msgid "Module level" -msgstr "" +msgstr "प्रभाग स्तर" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." -msgstr "" +msgstr "स्रोत फाइलों की प्रतिलिपि बनाई जा रही है..." -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" -msgstr "" +msgstr "परिवर्तन सूची बनाने के लिए %r को नहीं पढ़ा जा सका" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." -msgstr "" +msgstr "मूक निर्माता से किसी फाइलों की उत्पत्ति नहीं होती." -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." -msgstr "" +msgstr "ई-पब फाइल %(outdir)s में है." -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" -msgstr "" +msgstr "ई-पब3 के लिए विन्यास मान \"epub_language\" (अथवा \"language\") खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" -msgstr "" +msgstr "ई-पब3 के लिए विन्यास मान \"epub_uid\" एक्स.एम्.एल. नाम होना चाहिए" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" -msgstr "" +msgstr "ई-पब3 के लिए विन्यास मान \"epub_title\" (अथवा \"html_title\") खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" -msgstr "" +msgstr "ई-पब3 के लिए विन्यास मान \"epub_author\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" -msgstr "" +msgstr "ई-पब3 के लिए विन्यास मान \"epub_contributor\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" -msgstr "" +msgstr "ई-पब3 के लिए विन्यास मान \"epub_description\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" -msgstr "" +msgstr "ई-पब3 के लिए विन्यास मान \"epub_publisher\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" -msgstr "" +msgstr "ई-पब3 के लिए विन्यास मान \"epub_copyright\" (अथवा \"copyright\") खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" -msgstr "" +msgstr "ई-पब3 के लिए विन्यास मान \"epub_identifier\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" -msgstr "" +msgstr "ई-पब3 के लिए विन्यास मान \"version\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" -msgstr "" +msgstr "अमान्य css_file: %r, उपेक्षित" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." -msgstr "" +msgstr "सन्देश सूचीपत्र %(outdir)s में हैं." -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " -msgstr "" +msgstr "निर्माणाधीन [%s]: " -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" -msgstr "" +msgstr "%d नमूना फाइलों के लक्ष्य" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " -msgstr "" +msgstr "नमूनों को पढ़ा जा रहा है..." -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " -msgstr "" +msgstr "सन्देश सूचीपत्रों को लिखा जा रहा है..." -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" -msgstr "" +msgstr "निर्माण सूचनापत्र फाइल खंडित है: %r" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." -msgstr "" +msgstr "एच.टी.एम्.एल. पृष्ठ %(outdir)sमें हैं." -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" -msgstr "" +msgstr "निर्माण सूचनापत्र फाइल को नहीं पढ़ा जा सका: %r" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" -msgstr "" +msgstr "%b %d, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" -msgstr "" +msgstr "html_use_opensearch विन्यास मान अब वर्णाक्षरों में होना आवश्यक है" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" -msgstr "" +msgstr "सामान्य अनुक्रमाणिका" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "अनुक्रमणिका" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" -msgstr "" +msgstr "आगामी" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" -msgstr "" +msgstr "पूर्ववर्ती" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." -msgstr "" +msgstr "अनुक्रमाणिका उत्पन्न की जा रही है..." -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." -msgstr "" +msgstr "अतिरिक्त पृष्ठ लिखे जा रहे हैं..." -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " -msgstr "" +msgstr "उतारी गई फाइलों की प्रतिलिपि बनाई जा रही है..." + +#: sphinx/builders/html.py:788 +#, python-format +msgid "cannot copy downloadable file %r: %s" +msgstr "उतारी गई फाइलों %r की प्रतिलिपि नहीं की जा सकी: %s" + +#: sphinx/builders/html.py:795 +msgid "copying static files... " +msgstr "अपरिवर्ती फाइलों की प्रतिलिपि बनाई जा रही है..." + +#: sphinx/builders/html.py:830 +#, python-format +msgid "html_static_path entry %r does not exist" +msgstr "html_static_path प्रविष्टि %r का अस्तित्व नहीं है" + +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#, python-format +msgid "logo file %r does not exist" +msgstr "प्रतीकचिन्ह फाइल %r का अस्तित्व नहीं है" + +#: sphinx/builders/html.py:847 +#, python-format +msgid "favicon file %r does not exist" +msgstr "इष्ट चिन्ह फाइल %r का अस्तित्व नहीं है" + +#: sphinx/builders/html.py:854 +#, python-format +msgid "cannot copy static file %r" +msgstr "स्थैतिक फाइल %r की प्रतिलिपि नहीं की जा सकी" + +#: sphinx/builders/html.py:860 +msgid "copying extra files... " +msgstr "अतिरिक्त फाइलों की प्रतिलिपि की जा रही है..." + +#: sphinx/builders/html.py:866 +#, python-format +msgid "html_extra_path entry %r does not exist" +msgstr "html_extra_path प्रविष्टि %r का अस्तित्व नहीं है" #: sphinx/builders/html.py:872 #, python-format -msgid "cannot copy downloadable file %r: %s" -msgstr "" - -#: sphinx/builders/html.py:879 -msgid "copying static files... " -msgstr "" - -#: sphinx/builders/html.py:914 -#, python-format -msgid "html_static_path entry %r does not exist" -msgstr "" - -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 -#, python-format -msgid "logo file %r does not exist" -msgstr "" - -#: sphinx/builders/html.py:931 -#, python-format -msgid "favicon file %r does not exist" -msgstr "" - -#: sphinx/builders/html.py:940 -#, python-format -msgid "cannot copy static file %r" -msgstr "" - -#: sphinx/builders/html.py:946 -msgid "copying extra files... " -msgstr "" - -#: sphinx/builders/html.py:952 -#, python-format -msgid "html_extra_path entry %r does not exist" -msgstr "" - -#: sphinx/builders/html.py:958 -#, python-format msgid "cannot copy extra file %r" -msgstr "" +msgstr "अतिरिक्त फाइल %r की प्रतिलिपि नहीं की जा सकी" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" -msgstr "" +msgstr "निर्माण फाइल को नहीं लिखा जा सका: %r" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." -msgstr "" +msgstr "खोज अनुक्रमाणिका नहीं चढाई जा सकी, लेकिन सभी लेखपत्र नहीं बनाए जाएंगे: अनुक्रमणिका अपूर्ण रहेगी." -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" -msgstr "" +msgstr "पृष्ठ %s html_sidebars में दो आकृतियों से मिलता है: %r %r" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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 "" +msgstr "पृष्ठ %s की प्रस्तुति करते समय यूनिकोड त्रुटि हुई. कृपया यह सुनिश्चित कर लें कि सभी नॉन-असकी #non-ASCII# विहित विन्यास मान यूनिकोड अक्षरों में हैं." -#: sphinx/builders/html.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" -msgstr "" +msgstr "पृष्ठ %s की प्रस्तुति करते समय एक त्रुटि हुई.\nकारण: %r" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" -msgstr "" +msgstr "%s फाइल लिखने में व्यवधान: %s" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " -msgstr "" +msgstr "विषयवस्तुओं का भंडार बनाया जा रहा है..." -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " -msgstr "" +msgstr "%s में खोज अनुक्रमाणिका भंडार बनाया जा रहा है..." -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" -msgstr "" +msgstr "अमान्य js_file: %r, उपेक्षित" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." -msgstr "" +msgstr "कई math_renderers पंजीकृत हैं. लेकिन कोई math_renderers नहीं चुना गया है." -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." -msgstr "" +msgstr "अज्ञात math_renderer %r दिया गया." -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" -msgstr "" +msgstr "%s %s दिग्दर्शिका" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" -msgstr "" +msgstr "उपरोक्त परिणाम में अथवा %(outdir)s /output.txt में त्रुटियाँ ढूँढने का प्रयास " -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" -msgstr "" +msgstr "लक्ष्य '%s' नहीं मिला" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" -msgstr "" +msgstr "खंडित कड़ी: %s (%s)" #: sphinx/builders/manpage.py:43 #, python-format msgid "The manual pages are in %(outdir)s." -msgstr "" +msgstr "पुस्तिका पृष्ठ %(outdir)sमें हैं." #: sphinx/builders/manpage.py:51 msgid "no \"man_pages\" config value found; no manual pages will be written" -msgstr "" +msgstr "कोई \"man_pages\" विन्यास मान नहीं मिला; कोई नियमावली पृष्ठ नहीं लिखे जाएंगे" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "लिखा जा रहा है" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" -msgstr "" +msgid "\"man_pages\" config value references unknown document %s" +msgstr "\"man_pages\" विन्यास मान अज्ञात लेखपत्र %s का सन्दर्भ है" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." -msgstr "" +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." +msgstr "एच.टी.एम्.एल. पृष्ठ %(outdir)sमें है." -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "एकल लेखपत्र संकलन किया जा रहा है" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "अतिरिक्त फाइलों को लिखा जा रहा है" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." -msgstr "" +msgstr "टेक्सइन्फो पृष्ठ %(outdir)sमें हैं." -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." -msgstr "" +msgstr "\nइन्हें मेकइन्फो से चलाने के लिए उस निर्देशिका में 'मेक' आदेश चलायें\n(ऐसा स्वचालित रूप से करने के लिए यहाँ 'मेक इन्फो' आदेश का उपयोग करें)" -#: sphinx/builders/texinfo.py:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" -msgstr "" +msgstr "कोई \"texinfo_documents\" विन्यास मान नहीं मिला; कोई लेखपत्र नहीं लिखे जाएंगे" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" -msgstr "" +msgstr "\"texinfo_documents\" विन्यास मान अज्ञात लेखपत्र %s का सन्दर्भ है" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." -msgstr "" +msgid "processing %s" +msgstr "%s की प्रक्रिया जारी" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." -msgstr "" +msgstr "सन्दर्भों का विश्लेषण किया जा रहा है..." -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " -msgstr "" +msgstr " (में" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " -msgstr "" +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" +msgstr "टेक्सइन्फो सहायक फाइलों की प्रतिलिपि की जा रही है..." -#: sphinx/builders/texinfo.py:246 -msgid " done" -msgstr "" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" +msgstr "मेकफाइल लिखने में त्रुटि: %s" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." -msgstr "" +msgstr "पाठ फाइल %(outdir)s में हैं." -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." -msgstr "" +msgstr "एक्स.एम्.एल. लेखपत्र %(outdir)s में हैं." -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." -msgstr "" +msgstr "छद्म-एक्स.एम्.एल. लेखपत्र %(outdir)s में हैं." -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." -msgstr "" +msgstr "लाटेक्स लेखपत्र %(outdir)s में हैं." -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." -msgstr "" +msgstr "\nइन्हें (pdf)latex से चलाने के लिए उस निर्देशिका में 'मेक' आदेश चलायें\n(ऐसा स्वचालित रूप से करने के लिए यहाँ 'make latexpdf' आदेश का उपयोग करें)" -#: sphinx/builders/latex/__init__.py:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" -msgstr "" +msgstr "कोई \"latex_documents\" विन्यास मान नहीं मिला; कोई नहीं लिखे जाएंगे" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" -msgstr "" +msgstr "\"latex_documents\" विन्यास मान अज्ञात लेखपत्र %s का सन्दर्भ है" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "अनुक्रमणिका" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "आवृत्ति" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "%r भाषा के लिए कोई बाबेल विकल्प नहीं " + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "टेक्स सहायक फाइलों की प्रतिलिपि की जा रही है..." + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." -msgstr "" +msgstr "टेक्स सहायक फाइलों की प्रतिलिपि की जा रही है..." -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." -msgstr "" +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" +msgstr "अतिरिक्त फाइलों की प्रतिकृति बनाई जा रही है" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." -msgstr "" +msgstr "अज्ञात विन्यास कुंजी: latex_elements[%r]. उपेक्षित." -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" -msgstr "" +msgstr "निर्माण के दौरान अपवाद घटित हुआ है, दोष-मुक्तक चालू किया जा रहा " -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" -msgstr "" +msgstr "व्यवधान!" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" -msgstr "" +msgstr "रेस्ट सुसज्जा त्रुटि:" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" -msgstr "" +msgstr "कूटलेखन त्रुटि:" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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 "" +msgstr "यदि आप इस विषय को कूटलिपिकारों के संज्ञान में लाना चाहते है तो पिछला पूरा विवरण %s में सहेज दिया गया है" -#: sphinx/cmd/build.py:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" -msgstr "" +msgstr "पुनरावर्तन त्रुटि:" -#: sphinx/cmd/build.py:70 +#: 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 "" +msgstr "ऐसा बहुत बड़ी अथवा गहरे स्तर तक गई स्रोत फाइलों से संभव है. आप स्वतः मानक पाइथन पुनरावर्तन सीमा 1000 को conf.py में बाधा सकते हैं. जैसे कि:" -#: sphinx/cmd/build.py:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" -msgstr "" +msgstr " import sys; sys.setrecursionlimit(1500)" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" -msgstr "" +msgstr "अपवाद घटित:" -#: sphinx/cmd/build.py:81 +#: 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 "" +msgstr "यदि यह प्रयोक्ता की गलती थी तो कृपया इसको भी रिपोर्ट करें ताकि अगली बार गलती होने पर अधिक अर्थपूर्ण सन्देश दिया जा सके." -#: sphinx/cmd/build.py:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" -msgstr "" +msgstr "त्रुटि की सूचना <https://github.com/sphinx-doc/sphinx/issues> पर उपस्थित पंजिका में दर्ज की जा सकती है. धन्यवाद!" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" -msgstr "" +msgstr "कार्य संख्या एक धनात्मक संख्या होनी चाहिए" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." -msgstr "" +msgstr "अधिक जानकारी के लिए <http://sphinx-doc.org/> देखें." -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1249,293 +1143,287 @@ msgid "" "\n" "By default, everything that is outdated is built. Output only for selected\n" "files can be built by specifying individual filenames.\n" -msgstr "" +msgstr "\nस्रोत फाइलों से अभिलेख बनाएं.\n\nस्फिंक्स-बिल्ड #sphinx-build# सोर्स डायरेक्टरी #SOURCEDIR# की फाइलों से अभिलेख बनाता है और आउटपुट डायरेक्टरी #OUTPUTDIR# में सहेजता है. यह सोर्स डायरेक्टरी #SOURCEDIR# में कोन्फ.पाई से विन्यास मानों को उठाता है. स्फिंक्स-क्विक-स्टार्ट उपकरण का उपयोग कोन्फ.पाई सहित नमूना फाइलों को बनाने में किया जा सकता है.\n\nस्फिंक्स-बिल्ड भिन्न प्रारूपों में अभिलेख तैयार कर सकता है. प्रारूप का चुनाव आदेश देते समय निर्माता का नाम देकर किया जाता है - एच.टी.एम्.एल. इसका मानक प्रारूप है. ये निर्माता अभिलेखों के बनाने की प्रक्रिया में अन्य कार्य भी सम्पादित कर सकते हैं.\n\nमानक पद्धति के अनुसार सभी कालातीत अवयवों का नवनिर्माण होता है. चुनी हुई फाइलों नाम देकर केवल उन्ही फाइलों का नवनिर्माण किया जा सकता है.\n" + +#: sphinx/cmd/build.py:128 +msgid "path to documentation source files" +msgstr "अभिलेख की स्रोत फाइलों का पथ" + +#: sphinx/cmd/build.py:130 +msgid "path to output directory" +msgstr "परिणाम निर्देशिका का पथ" #: sphinx/cmd/build.py:132 -msgid "path to documentation source files" -msgstr "" - -#: sphinx/cmd/build.py:134 -msgid "path to output directory" -msgstr "" - -#: sphinx/cmd/build.py:136 msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "" +msgstr "पुनर्निर्माण के लिए निश्चित फाइलों की सूची. यदि -a निर्दिष्ट है तो उपेक्षा कर दी जाएगी" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" -msgstr "" +msgstr "सामान्य विकल्प" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" -msgstr "" +msgstr "प्रयोग के लिए निर्माता (मानक: एच.टी.एम्.एल. #html#)" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" -msgstr "" +msgstr "सभी फाइलें लिखें (मानक: केवल नई और परिवर्तित फाइलें लिखें)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" -msgstr "" +msgstr "सहेजी गयी परिस्थिति का प्रयोग न करें, सदैव सभी फाइलों को पढ़ें" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" -msgstr "" +msgstr "संचित परिस्थिति और डॉक-ट्री फाइलों का पथ (मानक: OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" -msgstr "" +msgstr "यदि संभव हो तो समानांतर N प्रक्रियाओं में निर्माण करें (ऑटो #auto# विशेष मान द्वारा cpu-count को N पर लगा दिया जाएगा)" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" -msgstr "" +msgstr "पथ जहाँ पर विन्यास फाइल (conf.py) स्थित है (मानक: SOURCEDIR के समरूप)" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" -msgstr "" +msgstr "किसी भी विन्यास फाइल का उपयोग ही न करें, मात्र -D विकल्प" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" -msgstr "" +msgstr "विन्यास फाइल के एक मान का उल्लंघन करें " -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" -msgstr "" +msgstr "एच.टी.एम्.एल. के नमूने में राशि प्रेषित करें" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" -msgstr "" +msgstr "नाम-पत्र परिभाषित करें: केवल नाम-पत्र वाले खण्डों का समावेश करें" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" -msgstr "" +msgstr "गहन जांच का पालन करें, सभी अनुपस्थित संदर्भों के बारे में सचेत करें" + +#: sphinx/cmd/build.py:170 +msgid "console output options" +msgstr "प्रदर्शित परिणामों के विकल्प" + +#: sphinx/cmd/build.py:172 +msgid "increase verbosity (can be repeated)" +msgstr "शब्द-प्रयोग बढ़ाएं (पुनरावृत्ति की जा सकती है) " #: sphinx/cmd/build.py:174 -msgid "console output options" -msgstr "" +msgid "no output on stdout, just warnings on stderr" +msgstr "एस.टी.डी आउट #stdout# पर कोई परिणाम नहीं, एस.टी.डी एरर #stderr# पर चेतावनियाँ " #: sphinx/cmd/build.py:176 -msgid "increase verbosity (can be repeated)" -msgstr "" - -#: sphinx/cmd/build.py:178 -msgid "no output on stdout, just warnings on stderr" -msgstr "" - -#: sphinx/cmd/build.py:180 msgid "no output at all, not even warnings" -msgstr "" +msgstr "कुछ भी निर्गमित नहीं, यहाँ तक कि चेतावनी भी नहीं" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" -msgstr "" +msgstr "रंगीन परिणाम ही दिखाएँ (मानक: स्वतः अनुमानित)" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" -msgstr "" +msgstr "रंगीन परिणाम नहीं दिखाएँ (मानक: स्वतः अनुमानित)" + +#: sphinx/cmd/build.py:185 +msgid "write warnings (and errors) to given file" +msgstr "चेतावनियाँ (और त्रुटियाँ) दी गई फाइल में लिखें" + +#: sphinx/cmd/build.py:187 +msgid "turn warnings into errors" +msgstr "चेतावनियों को अशुद्धि मानें" #: sphinx/cmd/build.py:189 -msgid "write warnings (and errors) to given file" -msgstr "" +msgid "With -W, Keep going when getting warnings" +msgstr "-W के साथ, आगे बढ़ते चलें जब चेतावनियाँ मिलें" #: sphinx/cmd/build.py:191 -msgid "turn warnings into errors" -msgstr "" +msgid "show full traceback on exception" +msgstr "अपवाद होने पर पूरा विलोम-अनुगमन देखें" #: sphinx/cmd/build.py:193 -msgid "With -W, Keep going when getting warnings" -msgstr "" - -#: sphinx/cmd/build.py:195 -msgid "show full traceback on exception" -msgstr "" - -#: sphinx/cmd/build.py:197 msgid "run Pdb on exception" -msgstr "" +msgstr "अपवाद होने पर पी.डी.बी. चलाएं" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" -msgstr "" +msgstr "%r फाइलों को नहीं ढूँढा जा सका" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" -msgstr "" +msgstr "-a विकल्प और फाइल के नामों को सम्मिलित नहीं किया जा सकता" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" -msgstr "" +msgstr "चेतावनी फाइल %r नहीं खोली जा सकी: %s" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" -msgstr "" +msgstr "-D विकल्प का मान नाम = मान के रूप में होना आवश्यक है" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" -msgstr "" +msgstr "-A विकल्प का मान नाम = मान के रूप में होना आवश्यक है" + +#: sphinx/cmd/quickstart.py:52 +msgid "automatically insert docstrings from modules" +msgstr "प्रभागों में से डॉक्-स्ट्रिंग स्वतःसम्मिलित करें" + +#: sphinx/cmd/quickstart.py:53 +msgid "automatically test code snippets in doctest blocks" +msgstr "डॉक्-टेस्ट अंशों के निर्देश भाग की स्वतः जाँच करें" + +#: sphinx/cmd/quickstart.py:54 +msgid "link between Sphinx documentation of different projects" +msgstr "भिन्न परियोजनाओं के स्फिंक्स प्रलेखों का पारस्परिक सम्बन्ध करने दें" + +#: sphinx/cmd/quickstart.py:55 +msgid "write \"todo\" entries that can be shown or hidden on build" +msgstr "वह \"शेष\" प्रविष्टियाँ लिख लें, जिन्हें निर्माण के समय दिखाया या छिपाया जा सकता है" #: sphinx/cmd/quickstart.py:56 -msgid "automatically insert docstrings from modules" -msgstr "" +msgid "checks for documentation coverage" +msgstr "प्रलेखों की व्याप्ति की जाँच करें" #: sphinx/cmd/quickstart.py:57 -msgid "automatically test code snippets in doctest blocks" -msgstr "" +msgid "include math, rendered as PNG or SVG images" +msgstr "गणित को सम्मिलित करें, पी.एन.जी. अथवा एस.वी.जी. में चित्रित" #: sphinx/cmd/quickstart.py:58 -msgid "link between Sphinx documentation of different projects" -msgstr "" +msgid "include math, rendered in the browser by MathJax" +msgstr "गणित को सम्मिलित करें, दिग्दर्शक में मैथजाक्स #MathJax# द्वारा प्रदर्शित" #: sphinx/cmd/quickstart.py:59 -msgid "write \"todo\" entries that can be shown or hidden on build" -msgstr "" - -#: sphinx/cmd/quickstart.py:60 -msgid "checks for documentation coverage" -msgstr "" +msgid "conditional inclusion of content based on config values" +msgstr "विन्यास मान के आधार पर सामिग्री का सशर्त समावेश" #: sphinx/cmd/quickstart.py:61 -msgid "include math, rendered as PNG or SVG images" -msgstr "" - -#: sphinx/cmd/quickstart.py:62 -msgid "include math, rendered in the browser by MathJax" -msgstr "" +msgid "include links to the source code of documented Python objects" +msgstr "पाइथन विषयवस्तुओं के प्रलेखों के स्रोत निर्देश की कड़ी जोड़ें" #: sphinx/cmd/quickstart.py:63 -msgid "conditional inclusion of content based on config values" -msgstr "" - -#: sphinx/cmd/quickstart.py:65 -msgid "include links to the source code of documented Python objects" -msgstr "" - -#: sphinx/cmd/quickstart.py:67 msgid "create .nojekyll file to publish the document on GitHub pages" -msgstr "" +msgstr "गिटहब GitHub पर लेखपत्र प्रकाशित करने के लिए .nojekyll फाइल बनाएं" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." -msgstr "" +msgstr "कृपया एक मान्य पथ का नाम दें" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." -msgstr "" +msgstr "कृपया कुछ वाक्यांश लिखें" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." -msgstr "" +msgstr "%s में से एक चुनें" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." -msgstr "" +msgstr "कृपया हाँ के लिए 'y' अथवा नहीं के लिए 'n' मात्र दें. " -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." -msgstr "" +msgstr "कृपया एक फाइल प्रत्यय दें, जैसे कि '.rst' अथवा '.txt'." -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." -msgstr "" +msgstr "* टिपण्णी: नॉन-असकी #non-ASCII# अक्षर और सीमावर्ती कूटलेख अज्ञात हैं -- यू.टी.एफ.-8 अथवा लैटिन-1 माने गए." -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." -msgstr "" +msgstr "स्फिंक्स %s त्वरित-आरंभ #sphinx-quickstart# उपकरण के लिए अभिनन्दन" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." -msgstr "" +msgstr "\nकृपया निम्न विन्यासों के लिए मान प्रदान करें (मानक मान, यदि \nकोष्ठक में हो तो, स्वीकार करने के लिए एन्टर दबाएँ)" -#: sphinx/cmd/quickstart.py:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" -msgstr "" +msgstr "\nचुना हुआ मूल पथ: %s" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." -msgstr "" +msgstr "\nआलेख का बुनियादी पथ बताएं." -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" -msgstr "" +msgstr "आलेख का बुनियादी पथ" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." -msgstr "" +msgstr "त्रुटि: एक मौजूदा conf.py फाइल दिए गए मूल पथ में प्राप्त हुई है." -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." -msgstr "" +msgstr "स्फिंक्स-त्वरित-आरम्भ #sphinx-quickstart# मौजूदा स्फिंक्स परियोजनाओं पर पुनर्लेखन नहीं करेगा." -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" -msgstr "" +msgstr "कृपया एक नया मूल पथ दें (अथवा निकलने हेतु सिर्फ एन्टर #Enter# कर दें)" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "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 "" +msgstr "\nआपके पास स्फिंक्स द्वारा बनाई गई फाइलों को सहेजने के लिए दो विकल्प हैं.\nया तो आप मूल पथ में ही \"_निर्माण\" निर्देशिका प्रयोग करें, अथवा\nमूल पथ में भिन्न \"स्रोत\" और \"निर्माण\" निर्देशिका प्रयोग करें." -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" -msgstr "" +msgstr "विभिन्न स्रोत और निर्माण डायरेक्टरी (y/n)" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "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 "" +msgstr "\nमूल निर्देशिका के अन्दर, दो और निर्देशिका बनाई जाएँगी;\nपरिवर्धित एच.टी.एम्.एल. नमूनों के लिए \"_templates\" और परिवर्धित रुपपत्रों और अन्य स्थैतिक फाइलों के लिए \"_static\"\nआप अधोरेखा के स्थान पर अन्य पूर्व-प्रत्यय (जैसे कि \".\") का प्रयोग कर सकते हैं." -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" -msgstr "" +msgstr "नमूने और स्थैतिक डायरेक्टरी के लिए पूर्व-प्रत्यय" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." -msgstr "" +msgstr "\nपरियोजना का नाम बनाए गए प्रपत्रों में बहुत से स्थानों पर प्रयुक्त होगा." -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" -msgstr "" +msgstr "परियोजना का नाम" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" -msgstr "" +msgstr "लेखक(कों) का नाम" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1543,17 +1431,17 @@ msgid "" "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 "" +msgstr "\nस्फिंक्स सॉफ्टवेयर के लिए संस्करण और आवृत्ति को मान्यता देता है.\nहर संस्करण की कई आवृत्तियाँ हो सकती हैं. उदाहरण के लिए,\nपाइथन संस्करण 2.5 अथवा 3.0 आदि हैं, और आवृत्ति\n2.5.1 अथवा 3.0a1 आदि हैं. यदि आप इसे दो स्तर पर रखना नहीं चाहते\nतो दोनों मान एक ही रख दें." -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" -msgstr "" +msgstr "परियोजना संस्करण" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" -msgstr "" +msgstr "परियोजना आवृत्ति" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1562,119 +1450,119 @@ msgid "" "\n" "For a list of supported codes, see\n" "http://sphinx-doc.org/config.html#confval-language." -msgstr "" +msgstr "\nयदि प्रलेखों को अंग्रेजी के अलावा अन्य किसी भाषा में लिखा जाना है,\nतो यहाँ पर आप भाषा का कूटशब्द दे सकते हैं. स्फिंक्स तदपुरांत,\nजो वाक्यांश बनाता है उसे उस भाषा में अनुवादित करेगा.\n\nमान्य भाषा कूटशब्द सूची यहाँ पर देखें\nhttp://sphinx-doc.org/config.html#confval-language." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" -msgstr "" +msgstr "परियोजना की भाषा" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." -msgstr "" +msgstr "\nस्रोत फाइलों के लिए फाइल नामों का प्रत्यय. प्रायः यह \".txt\"\nअथवा \".rst\" होता है. केवल इन्ही प्रत्यय की फाइलों को प्रलेख की मान्यता दी जाती है." -#: sphinx/cmd/quickstart.py:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" -msgstr "" +msgstr "स्रोत फाइल का प्रत्यय" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "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 "" +msgstr "\nएक प्रलेख को विषयावली के मुख्य अंग के रूप में मान्यता दी जाती है,\nअर्थात यह प्रलेखों की विषय-बेल का मूल है.\nप्रायः इसका नाम \"index\" है, परन्तु यदि आपका \"index\" प्रलेख \nएक अपारंपरिक प्रति है, तो आप अन्य का प्रयोग कर सकते हैं." -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" -msgstr "" +msgstr "आपने मुख्य लेखपत्र का नाम दें (प्रत्यय रहित)" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." -msgstr "" +msgstr "त्रुटि: मुख्य फाइल %s चुने हुए मूल पथ में पहले से उपलब्ध है." -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." -msgstr "" +msgstr "स्फिंक्स-त्वरित-आरम्भ मौजूदा फाइलों पर पुनर्लेखन नहीं करेगा." -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" -msgstr "" +msgstr "कृपया एक नया फाइल नाम दें, अथवा मौजूदा फाइल का पुनर्नामकरण करें और एन्टर दबाएँ" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" -msgstr "" +msgstr "इनमें से कौन सा स्फिंक्स आयाम प्रयोग करना है, इंगित करें:" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." -msgstr "" +msgstr "टिप्पणी: imgmath और mathjax एक साथ समर्थ नहीं हो सकते. imgmath को अचिन्हित कर दिया गया है." -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "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 "" +msgstr "\nएक मेकफाइल और एक विंडोज़ कमांड फाइल का निर्माण किया जा सकता है,\nताकि आप सीधे स्फिंक्स-बिल्ड के स्थान पर मात्र 'make html' आदि \nप्रयोग कर सकें." -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" -msgstr "" +msgstr "मेकफाइल बनाएं? (हाँ के लिए y/ ना के लिए n)" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" -msgstr "" +msgstr "विंडोज़ कमांड फाइल बनाएं? (हाँ के लिए y/ ना के लिए n)" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." -msgstr "" +msgstr "फाइल बनाई जा रही है ...%s" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." -msgstr "" +msgstr "फाइल %s पहले से उपस्थित है, छोड़ दी गई." -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." -msgstr "" +msgstr "समाप्त: एक प्रारंभिक निर्देशिका का ढांचा बना दिया गया है." -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" "You should now populate your master file %s and create other documentation\n" "source files. " -msgstr "" +msgstr "\nअब आप आपनी मुख्य फाइल %s को भरें और अन्य \nस्रोत प्रलेखों को बनाएं." -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" -msgstr "" +msgstr "प्रलेख बनाने के लिए मेकफाइल का उपयोग करें, जैसे कि:\n make builder\n" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" -msgstr "" +msgstr "प्रलेख बनाने के लिए स्फिंक्स-बिल्ड कमांड का उपयोग करें, जैसे कि:\n sphinx-build -b builder %s %s\n" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" -msgstr "" +msgstr "जहाँ \"builder\" एक समर्थित निर्माता है, जैसे कि html, latex or linkcheck.\nwhere \"builder\" is one of the supported builders, e.g. html, latex or linkcheck.\n" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1682,767 +1570,723 @@ msgid "" "sphinx-quickstart is an interactive tool that asks some questions about your\n" "project and then generates a complete documentation directory and sample\n" "Makefile to be used with sphinx-build.\n" -msgstr "" +msgstr "\nस्फिंक्स परियोजना के लिए आवश्यक फाइल बनाएं.\n\nस्फिंक्स-त्वरित-आरम्भ एक संवादपूर्ण उपकरण है जो आपकी परियोजना के \nबारे में कुछ प्रश्न पूछकर पूरी प्रलेखों की निर्देशिका और नमूना मेकफाइल \nबना देता है जिसे स्फिंक्स-बिल्ड में प्रयोग किया जा सकता है.\n" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" -msgstr "" +msgstr "शांत ढंग " -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" -msgstr "" +msgstr "परिणाम पथ" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" -msgstr "" +msgstr "ढांचे के विकल्प" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" -msgstr "" +msgstr "यदि निर्दिष्ट हो तो विभिन्न स्रोत और निर्माण पथ" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." -msgstr "" +msgstr "_templates आदि में बिंदु का बदलाव" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" -msgstr "" +msgstr "परोयोजना के मूलभूत विकल्प" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" -msgstr "" +msgstr "परियोजना का नाम" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" -msgstr "" +msgstr "लेखकों के नाम" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" -msgstr "" +msgstr "परियोजना का संस्करण" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" -msgstr "" +msgstr "परियोजना की आवृत्ति" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" -msgstr "" +msgstr "लेखपत्र की भाषा" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" -msgstr "" +msgstr "स्रोत फाइल का प्रत्यय" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" -msgstr "" +msgstr "मुख्य लेखपत्र का नाम" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" -msgstr "" +msgstr "ई-पब प्रयोग करें" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" -msgstr "" +msgstr "आयाम के विकल्प" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" -msgstr "" +msgstr "आयाम %s सक्षम करें" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" -msgstr "" +msgstr "स्वेच्छित आयाम सक्षम करें" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" -msgstr "" +msgstr "मेकफाइल और बैचफाइल का सर्जन" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" -msgstr "" +msgstr "मेकफाइल बनाएं" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" -msgstr "" +msgstr "मेकफाइल नहीं बनाएं" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" -msgstr "" +msgstr "बैचफाइल बनाएं" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" -msgstr "" +msgstr "बैचफाइल नहीं बनाएं" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" -msgstr "" +msgstr "Makefile/make.bat के लिए make-mode का प्रयोग करें" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" -msgstr "" +msgstr "Makefile/make.bat के लिए make-mode का प्रयोग नहीं करें" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" -msgstr "" +msgstr "परियोजना नमूनावृत्ति" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" -msgstr "" +msgstr "नमूना फाइलों के लिए नमूना निर्देशिका" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" -msgstr "" +msgstr "नमूना चर-पद का निरूपण करें" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." -msgstr "" +msgstr "\"शांत\" निर्दिष्ट है, परन्तु कोई भी \"परियोजना\" अथवा \"लेखक\" निर्दिष्ट नहीं है." -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." -msgstr "" +msgstr "त्रुटि: दिया गया पथ निर्देशिका नहीं है, अथवा स्फिंक्स फाइलें पहले से उपस्थित हैं." -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." -msgstr "" +msgstr "स्फिंक्स-त्वरित-आरम्भ केवल एक खाली निर्देशिका में कार्यशील हो सकती है. कृपया एक नया मूल पथ निर्दिष्ट करें." -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" -msgstr "" +msgstr "अमान्य नमूना चर-पद: %s" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" -msgstr "" +msgstr "अधिक बाहरी-हाशिया पाया गया" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" -msgstr "" +msgstr "अमान्य शीर्षक: %s" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" -msgstr "" +msgstr "पंक्ति संख्या का ब्यौरा सीमा से बाहर है (1-%d): %r" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" -msgstr "" +msgstr "दोनों \"%s\" और \"%s\" विकल्पों का प्रयोग नहीं किया जा सकता" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" -msgstr "" +msgstr "समावेशित फाइल %r नहीं मिली अथवा पढने में असफलता मिली" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" -msgstr "" +msgstr "कूटलेखन %r जो कि सम्मिलित फाइल %r में प्रयुक्त है, अशुद्ध प्रतीत हो रही है, एक :encoding: विकल्प देकर प्रयत्न करें" -#: sphinx/directives/code.py:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" -msgstr "" +msgstr "%r नामक विषयवस्तु सम्मिलित फाइल %r में नहीं मिली" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" -msgstr "" +msgstr "\"lineno-match\" का प्रयोग बिना जुडी \"lines\" के युग्म के साथ नहीं हो सकता" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" -msgstr "" +msgstr "लाइन ब्यौरा %r: सम्मिलित फाइल %r से कोई लाइन नहीं ली जा सकीं" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " -msgstr "" +msgstr "भाग के लेखक:" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " -msgstr "" +msgstr "प्रभाग लेखक:" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " -msgstr "" +msgstr "निर्देश लेखक:" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "लेखक:" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" -msgstr "" +msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" -msgstr "" +msgstr "मापदण्ड" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" -msgstr "" +msgstr "प्रदत्त " -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" -msgstr "" +msgstr "प्रदत्त प्रकार " #: sphinx/domains/c.py:189 #, python-format msgid "%s (C function)" -msgstr "" +msgstr "%s (C फंक्शन)" #: sphinx/domains/c.py:191 #, python-format msgid "%s (C member)" -msgstr "" +msgstr "%s (C सदस्य)" #: sphinx/domains/c.py:193 #, python-format msgid "%s (C macro)" -msgstr "" +msgstr "%s (C मैक्रो)" #: sphinx/domains/c.py:195 #, python-format msgid "%s (C type)" -msgstr "" +msgstr "%s (C प्रकार)" #: sphinx/domains/c.py:197 #, python-format msgid "%s (C variable)" -msgstr "" +msgstr "%s (C चरपद)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" -msgstr "" +msgstr "फंक्शन" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" -msgstr "" +msgstr "सदस्य" #: sphinx/domains/c.py:260 msgid "macro" -msgstr "" +msgstr "मैक्रो" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" -msgstr "" +msgstr "प्रकार" #: sphinx/domains/c.py:262 msgid "variable" -msgstr "" +msgstr "चर पद" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "संस्करण %s से नया " -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "संस्करण %s से अलग " -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "संस्करण %s से प्रतिबंधित " -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." -msgstr "" +msgstr "घोषणा की पुनरावृत्ति, '%s' में भी घोषित.\n'%s' घोषित है. " -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" -msgstr "" +msgstr "नमूना मानदण्ड " -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" -msgstr "" +msgstr "देता है " -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "" +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" -msgstr "" +msgstr "वर्ग" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" -msgstr "" +msgstr "युग्म" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" -msgstr "" +msgstr "अवधारणा " -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" -msgstr "" +msgstr "गणक" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" -msgstr "" +msgstr "प्रगणक " -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." -msgstr "" +msgstr "घोषणा की पुनरावृत्ति, '%s' में भी घोषित.\nघोषणा का नाम '%s' है. " -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" -msgstr "" +msgstr "%s() (अंतर्निर्मित फंक्शन)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" -msgstr "" +msgstr "%s() (%s विधि)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" -msgstr "" +msgstr "%s() (वर्ग)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" -msgstr "" +msgstr "%s (वैश्विक चरपद अथवा अचर) " -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" -msgstr "" +msgstr "%s (%s लक्षण)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" -msgstr "" +msgstr "चर " -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" -msgstr "" +msgstr "%s (प्रभाग)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" -msgstr "" +msgstr "पद्धति" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" -msgstr "" +msgstr "आंकड़े " -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" -msgstr "" +msgstr "लक्षण" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" -msgstr "" +msgstr "प्रभाग" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" -msgstr "" +msgstr "अमान्य math_eqref_format: %r" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" -msgstr "" +msgstr "समीकरण का प्रतिरूप शीर्षक %s, दूसरी प्रतिकृति %s में है " + +#: sphinx/domains/python.py:50 +msgid "keyword" +msgstr "मुख्य-शब्द " #: sphinx/domains/python.py:51 -msgid "keyword" -msgstr "" +msgid "operator" +msgstr "चालक" #: sphinx/domains/python.py:52 -msgid "operator" -msgstr "" - -#: sphinx/domains/python.py:53 msgid "object" -msgstr "" +msgstr "वस्तु" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" -msgstr "" +msgstr "अपवाद " + +#: sphinx/domains/python.py:54 +msgid "statement" +msgstr "वक्तव्य " #: sphinx/domains/python.py:55 -msgid "statement" -msgstr "" - -#: sphinx/domains/python.py:56 msgid "built-in function" -msgstr "" +msgstr "अंतर्निर्मित कर्म" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" -msgstr "" +msgstr "चर पद " -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" -msgstr "" +msgstr "उभारता है " -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" -msgstr "" +msgstr "%s() (%s प्रभाग में )" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" -msgstr "" +msgstr "%s (अंतर्निर्मित चर पद)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" -msgstr "" +msgstr "%s (%s प्रभाग में )" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" -msgstr "" +msgstr "%s (अंतर्निर्मित वर्ग)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" -msgstr "" +msgstr "%s (%s वर्ग में)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" -msgstr "" +msgstr "%s() (%s.%s विधि)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" -msgstr "" +msgstr "%s() (%s.%s स्थैतिक विधि)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" -msgstr "" +msgstr "%s() (%s स्थैतिक विधि)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" -msgstr "" +msgstr "%s() (%s.%s वर्ग विधि)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" -msgstr "" +msgstr "%s() (%s वर्ग विधि) " -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" -msgstr "" +msgstr "%s (%s.%s लक्षण)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" -msgstr "" +msgstr "पाइथन प्रभाग सूची" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" -msgstr "" +msgstr "प्रभाग" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" -msgstr "" - -#: sphinx/domains/python.py:745 -msgid "class method" -msgstr "" +msgstr "अवमानित " #: sphinx/domains/python.py:746 -msgid "static method" -msgstr "" +msgid "class method" +msgstr "वर्ग विधि" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:747 +msgid "static method" +msgstr "स्थैतिक पद्धति" + +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" -msgstr "" +msgstr "पारस्परिक-सन्दर्भों के लिए एक से अधिक लक्ष्य मिले %r: %s" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" -msgstr "" +msgstr "(अवमानित)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" -msgstr "" +msgstr "%s (निर्देश)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" -msgstr "" +msgstr "%s (भूमिका)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" -msgstr "" +msgstr "निर्देश" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" -msgstr "" +msgstr "भूमिका" #: sphinx/domains/std.py:88 sphinx/domains/std.py:105 #, python-format msgid "environment variable; %s" -msgstr "" +msgstr "परिस्थिति चर पद; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" -msgstr "" +msgstr "अशुद्ध रूप विकल्प विवरण %r, अपेक्षित प्रारूप \"opt\", \"-opt args\", \"--opt args\", \"/opt args\" अथवा \"+opt args\"" -#: sphinx/domains/std.py:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" -msgstr "" +msgstr "%s आदेश स्थान विकल्प; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" -msgstr "" - -#: sphinx/domains/std.py:456 -msgid "grammar token" -msgstr "" - -#: sphinx/domains/std.py:457 -msgid "reference label" -msgstr "" +msgstr "पारिभाषिक पद" #: sphinx/domains/std.py:459 -msgid "environment variable" -msgstr "" +msgid "grammar token" +msgstr "व्याकरण संकेत " #: sphinx/domains/std.py:460 +msgid "reference label" +msgstr "सन्दर्भ शीर्षक" + +#: sphinx/domains/std.py:462 +msgid "environment variable" +msgstr "परिस्थिति चर पद " + +#: sphinx/domains/std.py:463 msgid "program option" -msgstr "" +msgstr "प्रोग्राम विकल्प " -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" -msgstr "" +msgstr "लेखपत्र" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "अनुक्रमणिका" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" -msgstr "" +msgstr "प्रभाग सूची" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "खोज पृष्ठ" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" -msgstr "" +msgstr "प्रतिरूप उद्धरण %s, दूसरी प्रतिकृति %s में है " -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" -msgstr "" +msgstr "प्रतिरूप शीर्षक %s, दूसरी प्रतिकृति %s में है " -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." -msgstr "" +msgstr "उद्धरण [%s] सन्दर्भ कहीं नहीं है" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." -msgstr "" +msgstr "numfig असमर्थ है. :numref: उपेक्षित है." -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" -msgstr "" +msgstr "%s के लिए कोई संख्या नहीं दी गई है: %s" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" -msgstr "" +msgstr "कड़ी का कोई शीर्षक नहीं है: %s" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" -msgstr "" +msgstr "अमान्य numfig_format: %s (%r)" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" -msgstr "" +msgstr "अमान्य numfig_format: %s" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" -msgstr "" +msgstr "नव विन्यास" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" -msgstr "" +msgstr "विन्यास परिवर्तित" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" -msgstr "" +msgstr "आयाम परिवर्तित" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" -msgstr "" +msgstr "निर्मित परिस्थिति वर्तमान संस्करण नहीं है " -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" -msgstr "" +msgstr "स्रोत निर्देशिका परिवर्तित हो चुकी है " -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." -msgstr "" +msgstr "यह परिस्थिति चुने गए निर्माता से मेल नहीं खाती, कृपया दूसरी डॉक-ट्री निर्देशिका चुनें. " -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" -msgstr "" +msgstr "लेखपत्रों के पर्यवेक्षण में असफलता %s: %r" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" -msgstr "" +msgstr "अधिकारक्षेत्र %r पंजीकृत नहीं है" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." -msgstr "" +msgstr "स्वयं-संदर्भित विषय-सूची-संरचना मिली है. उपेक्षा की गई." -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" -msgstr "" +msgstr "लेखपत्र किसी भी विषय-सूची-संरचना में सम्मिलित नहीं है" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "%s देखिए" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" -msgstr "" +msgstr "%s भी देखिए" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" -msgstr "" +msgstr "अनुक्रमणिका की प्रविष्टि का प्रकार अज्ञात %r" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" -msgstr "" +msgstr "संकेत " -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" -msgstr "" +msgstr "पारस्परिक संदर्भित विषय-सूची-संरचना सन्दर्भ पाए गए, उपेक्षा की जा रही है: %s <- %s" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" -msgstr "" +msgstr "विषय-सूची-संरचना में लेखपत्र %r, जिसका कोई शीर्षक नहीं है, का सन्दर्भ है: कोई सम्बन्ध नहीं बनाया जा सकेगा" -#: sphinx/environment/adapters/toctree.py:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "विषय-सूची-संरचना में छोड़े गए लेखपत्र %r का सन्दर्भ है" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" -msgstr "" +msgstr "विषय-सूची-संरचना में अविद्यमान लेखपत्र %r का सन्दर्भ है" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" -msgstr "" +msgstr "चित्र फाइल पठनीय नहीं है: %s" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" -msgstr "" +msgstr "चित्र फाइल %s पठनीय नहीं है: %s" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" -msgstr "" +msgstr "उतारी गई फाइल पठनीय नहीं है: %s" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" -msgstr "" +msgstr "%s में पहले से भाग संख्या नियत है (एक के अन्दर दूसरा अंकित विषय-सूची-संरचना)" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." -msgstr "" +msgstr "%s फाइल बन जाएगी." -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2452,421 +2296,469 @@ msgid "" "excluded from generation.\n" "\n" "Note: By default this script will not overwrite already created files." -msgstr "" +msgstr "\n<MODULE_PATH> में पाइथन प्रभाग और पैकेज की पुनरावर्तित खोज करें और\nस्वतःप्रभाग निर्देश द्वारा <OUTPUT_PATH> में प्रति पैकेज एक रेस्ट #reST# फाइल बनाएं.\n\n<EXCLUDE_PATTERN> फाइल और/ अथवा निर्देशिका स्वरुप हो सकते हैं\nजो निर्माण प्रकिया में छोड़ दिए जाएंगे.\n\nनोट: सामान्यतया यह स्क्रिप्ट किसी पहले से बनाई गई फाइल पर पुनर्लेखन नहीं करती." -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" -msgstr "" +msgstr "प्रभाग से लेखपत्र का पथ" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" -msgstr "" +msgstr "fnmatch-style फाइल और/ अथवा निर्देशिका स्वरुप जो निर्माण प्रक्रिया से छोड़ने हैं" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" -msgstr "" +msgstr "सभी परिणामों को सहेजने के लिए निर्देशिका" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" -msgstr "" +msgstr "विषय-सूची में दिखाए जाने वाले उपप्रभागों की अधिकतम गहराई (मानक: 4)" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" -msgstr "" +msgstr "मौजूदा फाइलों पर पुनर्लेखन करें" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." -msgstr "" +msgstr "सांकेतिक कड़ियों का अनुसरण करें. कलेक्टिव.रेसिपी.ऑमलेट के साथ प्रभावशाली. " -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" -msgstr "" +msgstr "फाइलों को बनाए बिना स्क्रिप्ट चलाएं " + +#: sphinx/ext/apidoc.py:334 +msgid "put documentation for each module on its own page" +msgstr "प्रत्येक प्रभाग के आलेख उसके अपने पृष्ठ में रखें" + +#: sphinx/ext/apidoc.py:337 +msgid "include \"_private\" modules" +msgstr "\"_private\" प्रभाग को सम्मिलित करें " #: sphinx/ext/apidoc.py:339 -msgid "put documentation for each module on its own page" -msgstr "" +msgid "filename of table of contents (default: modules)" +msgstr "विषय-सूची की फाइल का नाम (मानक: प्रभाग) " -#: sphinx/ext/apidoc.py:342 -msgid "include \"_private\" modules" -msgstr "" +#: sphinx/ext/apidoc.py:341 +msgid "don't create a table of contents file" +msgstr "विषय-सूची की फाइल न बनाएं " #: sphinx/ext/apidoc.py:344 -msgid "don't create a table of contents file" -msgstr "" - -#: sphinx/ext/apidoc.py:347 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" -msgstr "" +msgstr "प्रभाग/पैकेज पैकेजों का शीर्षक न बनाएं (उदाहरणार्थ, जब डॉकस्ट्रिंग्स में यह पहले से हों) " -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" -msgstr "" +msgstr " मुख्य प्रभाग के आलेख को उपप्रभाग के आलेख से पहले रखें" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" -msgstr "" +msgstr "प्रभाग पथ की व्याख्या 'पी.ई.पी.-0420 निहित नामराशि विवरण' के आधार पर करें " -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" -msgstr "" +msgstr "फाइल प्रत्यय (मानक: rst)" + +#: sphinx/ext/apidoc.py:359 +msgid "generate a full project with sphinx-quickstart" +msgstr "स्फिंक्स-त्वरित-आरम्भ के साथ पूर्ण परियोजना उत्पन्न करें " #: sphinx/ext/apidoc.py:362 -msgid "generate a full project with sphinx-quickstart" -msgstr "" - -#: sphinx/ext/apidoc.py:365 msgid "append module_path to sys.path, used when --full is given" -msgstr "" +msgstr "मोड्यूल_पाथ #module_path# को सिस.पाथ #sys.path# में जोड़ें, जब --full दिया जाता है तब इसका प्रयोग होता है " -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" -msgstr "" +msgstr "परियोजना का नाम (मानक: मूल प्रभाग का नाम) " -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" -msgstr "" +msgstr "परियोजना लेखक(गण), जब --full दिया जाता है तब इसका प्रयोग होता है " -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" -msgstr "" +msgstr "परियोजना संस्करण, जब --full दिया जाता है तब इसका प्रयोग होता है " + +#: sphinx/ext/apidoc.py:370 +msgid "project release, used when --full is given, defaults to --doc-version" +msgstr "परियोजना आवृत्ति, जब --full दिया जाता है तब इसका प्रयोग होता है " #: sphinx/ext/apidoc.py:373 -msgid "project release, used when --full is given, defaults to --doc-version" -msgstr "" - -#: sphinx/ext/apidoc.py:376 msgid "extension options" -msgstr "" +msgstr "आयाम विकल्प " -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." -msgstr "" +msgstr "%s एक निर्देशिका नहीं है. " -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" -msgstr "" +msgstr "अमान्य रेगएक्स #regex# %r, %s में " -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." -msgstr "" +msgstr "स्रोतों की व्यापकता की जांच पूरी, परिणाम %(outdir)spython.txt में देखें. " -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" -msgstr "" +msgstr "अमान्य रेगएक्स #regex# %r, coverage_c_regexes में " -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" -msgstr "" +msgstr "प्रभाग %s का आयत नहीं किया जा सका: %s" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." -msgstr "" +msgstr "'%s' विकल्प में अनुपस्थित '+' या '-'." -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." -msgstr "" +msgstr "'%s' एक मान्य विकल्प नहीं है." -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" -msgstr "" +msgstr "'%s' एक मान्य पाईवर्शन #pyversion# विकल्प नहीं है. " -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" -msgstr "" +msgstr "अमान्य टेस्टकोड का प्रकार " -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." -msgstr "" +msgstr "स्रोतों में डॉकटेस्ट्स की जांच पूरी, परिणाम %(outdir)s/output.txt में देखें. " -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" -msgstr "" +msgstr "%s भाग में %s पर कोई निर्देश / परिणाम नहीं: %s" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" -msgstr "" +msgstr "अमान्य डॉकटेस्ट निर्देश की उपेक्षा की जा रही है: %r" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" -msgstr "" +msgstr "ग्राफविज़ निर्देश में दोनों मापदंड, विषय-वस्तु और फाइल का नाम, नहीं हो सकते" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" -msgstr "" +msgstr "बाहरी ग्राफविज़ फाइल %r नहीं मिली अथवा पढने में असफलता मिली" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." -msgstr "" +msgstr "विषय-वस्तु के बिना ग्राफविज़ निर्देश की उपेक्षा की जा रही है. " -#: sphinx/ext/graphviz.py:255 -#, python-format -msgid "" -"dot command %r cannot be run (needed for graphviz output), check the " -"graphviz_dot setting" -msgstr "" - -#: sphinx/ext/graphviz.py:273 -#, python-format -msgid "" -"dot exited with error:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:276 +#: sphinx/ext/graphviz.py:252 #, python-format msgid "" "dot did not produce an output file:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "" +"%r" +msgstr "डॉट ने किसी परिणाम फाइल का नहीं बनाया:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:256 +#, python-format +msgid "" +"dot command %r cannot be run (needed for graphviz output), check the " +"graphviz_dot setting" +msgstr "डॉट निर्देश %r नहीं चलाया जा सकता (ग्राफविज़ परिणाम के लिए आवश्यक), ग्राफविज़_डॉट मान की जांच करें" + +#: sphinx/ext/graphviz.py:263 +#, python-format +msgid "" +"dot exited with error:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "डॉट त्रुटि के साथ बहार आ गया:\n[stderr]\n%r\n[stdout]\n%r" + +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" -msgstr "" +msgstr "ग्राफविज़_आउटपुट_फॉर्मेट का 'पी.एन.जी', 'एस.वी.जी.', होना आवश्यक है, पर यह %r है" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" -msgstr "" +msgstr "डॉट निर्देश %r: %s" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" -msgstr "" +msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" -msgstr "" +msgstr "[graph]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" -msgstr "" +msgstr "परिवर्तक आदेश %r नहीं चलाया जा सकता. इमेज_कनवर्टर मान की जाँच करें" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "" +"%r" +msgstr "परिवर्तक त्रुटि के साथ बहार आ गया:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" -msgstr "" +msgstr "लाटेक्स आदेश %r नहीं चलाया जा सकता (गणित दिखाने के लिए आवश्यक). आई.एम्.जी.मैथ_लाटेक्स मान की जाँच करें" -#: sphinx/ext/imgmath.py:163 +#: sphinx/ext/imgmath.py:155 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" -msgstr "" +msgstr "%s आदेश %r नहीं चलाया जा सकता (गणित दिखाने के लिए आवश्यक). imgmath_%s मान की जाँच करें" -#: sphinx/ext/imgmath.py:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" -msgstr "" +msgstr "लाटेक्स दिखाएँ %r: %s" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" -msgstr "" +msgstr "पंक्तिबद्ध लाटेक्स %r: %s" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" -msgstr "" +msgstr "इस समीकरण की स्थायी कड़ी" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "इन्टरस्फिंक्स सामान स्थानांतरित हो चुका है: %s -> %s" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "इन्टरस्फिंक्स सामान को %s से चढ़ाया जा रहा है ..." + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "कुछ चीजों के साथ कुछ समस्या है, लेकिन काम के दूसरे विकल्प उपलब्ध हैं: " + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" -msgstr "" +msgstr "कुछ चीजों पहुँचने में असफलता मिली और यह समस्याएँ मिलीं: " -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" -msgstr "" +msgstr "(%s v%s में)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" -msgstr "" +msgstr "(%s में)" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "इन्टरस्फिंक्स निर्धारक %r अक्षरमाला नहीं है. उपेक्षित" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "intersphinx_mapping[%s] पढने में असफलता, अनदेखी की गई: %r" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" -msgstr "" +msgstr "[स्रोत]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" -msgstr "" +msgstr "अपूर्ण " -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" -msgstr "" +msgstr "अपूर्ण प्रविष्टि मिली: %s " -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" -msgstr "" +msgstr "<<मूल प्रविष्टि>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" -msgstr "" +msgstr "(<<मूल प्रविष्टि>> %s, पंक्ति %d में उपस्थित है.)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" -msgstr "मूल entry" +msgstr "मौलिक प्रविष्टि" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "प्रभाग निर्देश विशिष्ट रूप से दर्शाया जा रहा है..." + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" -msgstr "" +msgstr "[docs]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" -msgstr "" +msgstr "प्रभाग निर्देश" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" -msgstr "<h1>%s का स्रोत code</h1>" +msgstr "<h1>%s का स्रोत निर्देश </h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" -msgstr "" +msgstr "सिंहावलोकन: प्रभाग निर्देश" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" -msgstr "" +msgstr "<h1>सभी प्रभाग जिनके लिए निर्देश उपलब्ध है</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" -msgstr "" +msgstr "स्वतः %s (%r) के लिए अमान्य हस्ताक्षर" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" -msgstr "" +msgstr "%s के पदों का प्रारूप बनाने में व्यवधान: %s" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" -msgstr "" +msgstr "%s गुण %s वस्तु में अनुपस्थित" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" -msgstr "" +msgstr "ऑटोडॉक: प्रलेखन हेतु %r निर्धारण करने में असफलता. निम्नलिखित अपवाद सामने आया:\n%s" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, 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 "" +msgstr "पता नहीं है कि कौन सा प्रभाग स्वतःप्रलेखन %r के लिए आयात करना है (लेखपत्र में \"प्रभाग\" या \"वर्तमान-प्रभाग\" निर्देश रख कर देखें; अथवा स्पष्ट प्रभाग नाम देकर देखें)" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" -msgstr "" +msgstr "स्वतः प्रभाग नाम में \"::\" विवेकहीन है" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" -msgstr "" +msgstr "स्वतः-प्रभाग %s के लिए हस्ताक्षर पद अथवा प्रत्युत्तरित टिप्पणी प्रदान की गई" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" -msgstr "" +msgstr "__all__ अंतिम अक्षरमाला होनी चाहिए, न कि %r (%s प्रभाग में) -- __all__ की उपेक्षा की जाएगी" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" -msgstr "" +msgstr "अनुपस्थित गुण का :members: में उल्लेख है अथवा __all__: प्रभाग %s, गुण %s" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" -msgstr "" +msgstr "आधार: %s" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" -msgstr "" +msgstr ":class:`%s` का उपनाम" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" -msgstr "" +msgstr "ऑटोडॉक्_डिफ़ॉल्ट_फ्लैग्स में अमान्य विकल्प की उपेक्षा की जा रही है: %r" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "विषय-सूची-संरचना छोड़े गए लेखपत्र %r का सन्दर्भ दे रही है" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "विषय-सूची-संरचना अज्ञात लेखपत्र %r का सन्दर्भ दे रही है" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "आयात में असफलता: %s" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "पद-विच्छेदन में असफलता: %s" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "विषय-वस्तु के आयात में असफलता: %s" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." -msgstr "" +msgstr "ऑटोसमरी आतंरिक रूप से आर.एस.टी. फाइलें बनाता है. आपके सोर्स_सफिक्स में आर.एस.टी. सम्मिलित नहीं है. छोड़ा गया." -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" -msgstr "" +msgstr "[ऑटोसमरी] अब इसका स्वतःसारांश बना रहा है: %s" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" -msgstr "" +msgstr "[ऑटोसमरी] %s पर लिख रहा है" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2879,259 +2771,259 @@ msgid "" "``sphinx.ext.autosummary`` Python module and can be read using::\n" "\n" " pydoc sphinx.ext.autosummary\n" -msgstr "" +msgstr "\nस्वतः सारांश #autosummary# निर्देश का प्रयोग करते हुए पुर्नसरंचितपाठ बनाता है.\n\nस्फिंक्स-ऑटोजेन स्फिंक्स.एक्स्ट.ऑटोसमरी.जेनेरेट का मुखड़ा है.\nयह प्रदत्त फाइलों में सम्मिलित ऑटो समरी निर्देशों के अनुसार पुर्नसरंचितपाठ बनाता है\n\nस्वतः सारांश #autosummary# निर्देश का प्रारूप स्फिंक्स.एक्स्ट.ऑटोसमरी \nपाइथन प्रभाग में निबंधित है और इसे आप निम्नलिखित माध्यम से पढ़ सकते हैं:\n\n pydoc sphinx.ext.autosummary\n" + +#: sphinx/ext/autosummary/generate.py:383 +msgid "source files to generate rST files for" +msgstr "आर.एस.टी. फाइलें बनाने के लिए स्रोत फाइलें" #: sphinx/ext/autosummary/generate.py:387 -msgid "source files to generate rST files for" -msgstr "" - -#: sphinx/ext/autosummary/generate.py:391 msgid "directory to place all output in" -msgstr "" +msgstr "सभी परिणाम रखने के लिए निर्देशिका" + +#: sphinx/ext/autosummary/generate.py:390 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "फाइलों के लिए मानक प्रत्यय (मानक: %(default)s)" #: sphinx/ext/autosummary/generate.py:394 #, python-format -msgid "default suffix for files (default: %(default)s)" -msgstr "" +msgid "custom template directory (default: %(default)s)" +msgstr "पारंपरिक प्रारूप निर्देशिका (मानक: %(default)s)" #: sphinx/ext/autosummary/generate.py:398 #, python-format -msgid "custom template directory (default: %(default)s)" -msgstr "" - -#: sphinx/ext/autosummary/generate.py:402 -#, python-format msgid "document imported members (default: %(default)s)" -msgstr "" +msgstr "लेखपत्र आयातित सदस्य (मानक: %(default)s)" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" -msgstr "" - -#: sphinx/ext/napoleon/docstring.py:626 -msgid "Example" -msgstr "" +msgstr "मुख्य शब्दों के चर-पद" #: sphinx/ext/napoleon/docstring.py:627 +msgid "Example" +msgstr "उदाहरण" + +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" -msgstr "" +msgstr "कुछ उदाहरण" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" -msgstr "" +msgstr "टिप्पणियाँ" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" -msgstr "" +msgstr "अन्य मापदण्ड" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" -msgstr "" +msgstr "सन्दर्भ" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" -msgstr "" +msgstr "चेतावनी देता है" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" -msgstr "" +msgstr "मिलता है" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" -msgstr "सावधान" +msgstr "सावधानी" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "चेतावनी" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "खतरा" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "गलती" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" -msgstr "" +msgstr "संकेत" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "महत्त्वपूर्ण" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" -msgstr "" +msgstr "टिप्पणी " -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" -msgstr "" +msgstr "यह भी देखिए" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" -msgstr "" +msgstr "सलाह" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" -msgstr "" +msgstr "चेतावनी" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" -msgstr "" +msgstr "पिछले पृष्ठ से जारी" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" -msgstr "" +msgstr "अगले पृष्ठ पर जारी" #: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" -msgstr "" +msgstr "खोज" #: sphinx/themes/agogo/layout.html:54 sphinx/themes/basic/searchbox.html:16 msgid "Go" -msgstr "" +msgstr "चलिए" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" -msgstr "" +msgstr "स्रोत दिखाएँ" #: sphinx/themes/basic/defindex.html:11 msgid "Overview" -msgstr "" +msgstr "सिंहावलोकन" #: sphinx/themes/basic/defindex.html:15 msgid "Welcome! This is" -msgstr "नमश्कार। यह है " +msgstr "नमस्ते! यह है" #: sphinx/themes/basic/defindex.html:16 msgid "the documentation for" -msgstr "" +msgstr "आलेख विषय" #: sphinx/themes/basic/defindex.html:17 msgid "last updated" -msgstr "" +msgstr "अंतिम परिवर्धन" #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" -msgstr "" +msgstr "सूचियाँ और सारणियाँ:" #: sphinx/themes/basic/defindex.html:23 msgid "Complete Table of Contents" -msgstr "" +msgstr "विस्तृत विषय-सूची" #: sphinx/themes/basic/defindex.html:24 msgid "lists all sections and subsections" -msgstr "" +msgstr "सभी अनुभागों एवं उप-अनुभागों की सूची" #: sphinx/themes/basic/defindex.html:26 msgid "search this documentation" -msgstr "" +msgstr "इस आलेख में खोजें" #: sphinx/themes/basic/defindex.html:28 msgid "Global Module Index" -msgstr "" +msgstr "सार्वभौमिक प्रभाग सूची" #: sphinx/themes/basic/defindex.html:29 msgid "quick access to all modules" -msgstr "" +msgstr "सभी प्रभाग तक तुरंत पहुँच" #: sphinx/themes/basic/defindex.html:31 msgid "all functions, classes, terms" -msgstr "" +msgstr "सभी कार्ययुक्तियां, वर्ग, शब्द" #: sphinx/themes/basic/genindex-single.html:33 #, python-format msgid "Index – %(key)s" -msgstr "" +msgstr "अनुक्रमणिका – %(key)s" #: 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:72 msgid "Full index on one page" -msgstr "" +msgstr "एक पृष्ठ पर पूरी अनुक्रमणिका" #: sphinx/themes/basic/genindex-split.html:16 msgid "Index pages by letter" -msgstr "" +msgstr "अक्षर द्वारा अनुक्रमित पृष्ठ" #: sphinx/themes/basic/genindex-split.html:25 msgid "can be huge" -msgstr "" +msgstr "बृहदाकार हो सकता है" #: sphinx/themes/basic/layout.html:31 msgid "Navigation" -msgstr "" +msgstr "संचालन" #: sphinx/themes/basic/layout.html:138 #, python-format msgid "Search within %(docstitle)s" -msgstr "" +msgstr "%(docstitle)s में खोजें" #: sphinx/themes/basic/layout.html:147 msgid "About these documents" -msgstr "" +msgstr "इन लेखपत्रों के बारे में" #: sphinx/themes/basic/layout.html:156 msgid "Copyright" -msgstr "" +msgstr "सर्वाधिकार" #: sphinx/themes/basic/layout.html:201 #, python-format msgid "© <a href=\"%(path)s\">Copyright</a> %(copyright)s." -msgstr "" +msgstr "© <a href=\"%(path)s\">सर्वाधिकार</a> %(copyright)s." #: sphinx/themes/basic/layout.html:203 #, python-format msgid "© Copyright %(copyright)s." -msgstr "" +msgstr "© सर्वाधिकार %(copyright)s." #: sphinx/themes/basic/layout.html:207 #, python-format msgid "Last updated on %(last_updated)s." -msgstr "" +msgstr "अंतिम बार सम्पादित %(last_updated)s." #: sphinx/themes/basic/layout.html:210 #, python-format msgid "" "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> " "%(sphinx_version)s." -msgstr "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s से बनाया गया। " +msgstr "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s से निर्मित." #: sphinx/themes/basic/opensearch.xml:4 #, python-format msgid "Search %(docstitle)s" -msgstr " %(docstitle)s में खोजिए " +msgstr " %(docstitle)s में खोजें" #: sphinx/themes/basic/relations.html:11 msgid "Previous topic" -msgstr "" +msgstr "पिछला प्रकरण" #: sphinx/themes/basic/relations.html:13 msgid "previous chapter" -msgstr "" +msgstr "पिछला अध्याय" #: sphinx/themes/basic/relations.html:16 msgid "Next topic" -msgstr "" +msgstr "अगला प्रकरण" #: sphinx/themes/basic/relations.html:18 msgid "next chapter" -msgstr "" +msgstr "अगला अध्याय" #: sphinx/themes/basic/search.html:30 msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "खोज ने के लिए JavaScript का होना आवश्यक है. कृपया JavaScript को शशक्त कीजिये " +msgstr "खोज कार्य के लिए जावा स्क्रिप्ट का होना आवश्यक है. कृपया जावा स्क्रिप्ट को शुरू करें." #: sphinx/themes/basic/search.html:35 msgid "" @@ -3139,30 +3031,30 @@ msgid "" " words into the box below and click \"search\". Note that the search\n" " function will automatically search for all of the words. Pages\n" " containing fewer words won't appear in the result list." -msgstr "" +msgstr "यहाँ से आप इन प्रलेखों में खोज कर सकते हैं. अपने खोज शब्दों को\nनीचे दिए गए स्थान में दें और फिर \"खोज\" क्लिक करें. ध्यान रहे कि\nखोज प्रक्रम में सभी शब्दों की खोज की जाएगी. कमतर शब्दों वाले\nपृष्ठ परिणाम-तालिका में नहीं दिखेंगे." #: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 msgid "search" -msgstr "" +msgstr "खोज" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "खोज परीणाम " #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." -msgstr "" +msgstr "आपके खोज परिणामों में कोई प्रलेख नहीं मिला. कृपया सुनिश्चित करें कि सभी शब्दों की वर्तनी शुद्ध है और आपने यथेष्ट श्रेणियां चुनी हैं." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" -msgstr "" +msgstr "त्वरित खोज" #: sphinx/themes/basic/sourcelink.html:12 msgid "This Page" @@ -3172,293 +3064,293 @@ msgstr "यह पृष्ठ " #: sphinx/themes/basic/changes/versionchanges.html:12 #, python-format msgid "Changes in Version %(version)s — %(docstitle)s" -msgstr "" +msgstr "परिवर्तित संस्करण %(version)s — %(docstitle)s" #: sphinx/themes/basic/changes/rstsource.html:5 #, python-format msgid "%(filename)s — %(docstitle)s" -msgstr "" +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 "" +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 "" +msgstr "सी ऐ.पी.आई. परिवर्तन" #: sphinx/themes/basic/changes/versionchanges.html:25 msgid "Other changes" -msgstr "" +msgstr "अन्य परिवर्तन" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" -msgstr "" +msgstr "इस शीर्ष-पंक्ति की स्थायी कड़ी" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" -msgstr "" +msgstr "इस परिभाषा की स्थायी कड़ी" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" -msgstr "" +msgstr "खोजे गए जोड़े छिपाएं" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" -msgstr "" +msgstr "खोज जारी" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." -msgstr "" +msgstr "खोज की तैयारी" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." -msgstr "" +msgstr "खोज पूर्ण, खोज विषय के अनुकूल %s पृष्ठ मिला (मिले)." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " -msgstr "" +msgstr ", में " #: sphinx/themes/classic/static/sidebar.js_t:83 msgid "Expand sidebar" -msgstr "" +msgstr "किनारे का स्थान बढ़ाएं" #: sphinx/themes/classic/static/sidebar.js_t:96 #: sphinx/themes/classic/static/sidebar.js_t:124 msgid "Collapse sidebar" -msgstr "" +msgstr "किनारे का स्थान घटाएं" #: sphinx/themes/haiku/layout.html:24 msgid "Contents" -msgstr "" +msgstr "विषय सामिग्री" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" -msgstr "" +msgstr "4 पंक्तिबद्ध सूचियाँ मिलीं. यह आपके द्वारा उपयोग किए गए आयाम की त्रुटि हो सकती है: %r" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." -msgstr "" +msgstr "पाद-टिप्पणी [%s] का कोई सन्दर्भ नहीं है." -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." -msgstr "" +msgstr "पाद-टिप्पणी [#] सन्दर्भ कहीं नहीं है" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" -msgstr "" +msgstr "अनुवादित संदेश में असंगत पाद-टिप्पणी के प्रसंग. मूल: {0}, अनुवादित: {1}" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" -msgstr "" +msgstr "अनुवादित संदेश में असंगत प्रसंग. मूल: {0}, अनुवादित: {1}" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" -msgstr "" +msgstr "अनुवादित संदेश में असंगत उद्धरण के प्रसंग. मूल: {0}, अनुवादित: {1}" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" -msgstr "" +msgstr "अनुवादित संदेश में असंगत शब्द के प्रसंग. मूल: {0}, अनुवादित: {1}" + +#: sphinx/transforms/post_transforms/__init__.py:110 +#, python-format +msgid "more than one target found for 'any' cross-reference %r: could be %s" +msgstr "किसी भी पारस्परिक-सन्दर्भ के लिए एक से अधिक लक्ष्य मिले %r: %s संभव" #: sphinx/transforms/post_transforms/__init__.py:142 #, python-format -msgid "more than one target found for 'any' cross-reference %r: could be %s" -msgstr "" - -#: sphinx/transforms/post_transforms/__init__.py:172 -#, python-format msgid "%s:%s reference target not found: %%(target)s" -msgstr "" +msgstr "%s:%s संदर्भित लक्ष्य नहीं मिले: %%(target)s" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" -msgstr "" +msgstr "%r संदर्भित लक्ष्य नहीं मिले: %%(target)s" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" -msgstr "" +msgstr "दूरस्थ चित्र नहीं लाया जा सका: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" -msgstr "" +msgstr "दूरस्थ चित्र नहीं लाया जा सका: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." -msgstr "" +msgstr "अज्ञात चित्र प्रारूप: %s..." -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "असाधनीय स्रोत अक्षर, \"?\" द्वारा बदले जा रहे हैं: %r" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "छोड़ा " + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "असफल" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" -msgstr "" +msgstr "जब निर्देशक वर्गों को जोड़ा जा रहा है, तब कोई अतिरिक्त चर-पद नहीं दिए जा सकते" #: sphinx/util/i18n.py:74 #, python-format msgid "reading error: %s, %s" -msgstr "" +msgstr "अशुद्धि पाठन: %s, %s" #: sphinx/util/i18n.py:81 #, python-format msgid "writing error: %s, %s" -msgstr "" +msgstr "अशुद्धि लेखन: %s, %s" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" -msgstr "" +msgstr "अमान्य तिथि प्रारूप. यदि आप सीधे परिणाम में दर्शाना चाहते हैं तो अक्षरमाला को एकाकी उद्धरण चिन्ह द्वारा चिन्हित करें: %s" -#: sphinx/util/nodes.py:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" -msgstr "" +msgstr "विषय-सूची-संरचना में अविद्यमान फाइल %r का सन्दर्भ है" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" -msgstr "" +msgstr "केवल निर्देशक भाव का मूल्यांकन करते समय अपवाद: %s" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "पाइथन 2 निर्देश-विन्यास के मूल्यांकन में सहायता भविष्य में सुसंगत नहीं रहेगी और स्फिंक्स 4.0 में हटा दी जाएगी. कृपया %s को पाइथन 3 निर्देश-विन्यास में परिवर्तित कर लें." + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" -msgstr "" +msgstr "मानक भूमिका '%s' नहीं मिली" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" -msgstr "" +msgstr "%s के लिए नमफिग_फॉर्मेट नहीं बताया गया है" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" -msgstr "" - -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 -msgid "Permalink to this table" -msgstr "" - -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 -msgid "Permalink to this code" -msgstr "" +msgstr "%s बिंदु के लिए कोई पहचान-चिन्ह नहीं दिया गया" #: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +msgid "Permalink to this table" +msgstr "इस सारणी की स्थायी कड़ी" + +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 +msgid "Permalink to this code" +msgstr "इस निर्देश की स्थायी कड़ी" + +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" -msgstr "" +msgstr "इस चित्र की स्थायी कड़ी" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" -msgstr "" +msgstr "इस विषय-सूची-संरचना की स्थायी कड़ी" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." -msgstr "" +msgstr "चित्र का आकार नहीं मिल सका. :scale: विकल्प की उपेक्षा की जा रही है." -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" -msgstr "" +msgstr "अज्ञात %r उच्चतमस्तर_विभाजन #toplevel_sectioning# %r वर्ग के लिए" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." -msgstr "" +msgstr "अत्याधिक अधिकतम गहराई # :maxdepth: #, उपेक्षित किया गया." -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" -msgstr "" +msgstr "लेखपत्र का शीर्षक एकल पाठ बिंदु नहीं है" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" -msgstr "" +msgstr "पाया गया शीर्ष बिंदु किसी भाग, प्रसंग, तालिका, विषय-प्रबोध अथवा पार्श्व-स्थान में नहीं है" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" -msgstr "" +msgstr "पाद टिप्पणियां" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "दोनों तालिका-स्तंभ और :चौड़ाई: विकल्प दिए गए हैं. :चौड़ाई: मान की उपेक्षा की जाएगी." + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." -msgstr "" +msgstr "परिमाण मात्रक %s अमान्य है. उपेक्षा की जाएगी." -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" -msgstr "" +msgstr "अनुक्रमणिका की प्रविष्टि का प्रकार %s मिला" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." -msgstr "" +msgstr "अज्ञात विन्यास कुंजी: latex_elements[%r] की उपेक्षा की गई." -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" -msgstr "" +msgstr "[चित्र: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" -msgstr "" +msgstr "[चित्र]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." -msgstr "" +msgstr "शीर्षक रेखाचित्र के भीतर नहीं है" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" -msgstr "" +msgstr "अकार्यान्वित बिंदु प्रकार: %r" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" -msgstr "" +msgstr "अज्ञात बिंदु प्रकार: %r" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.js b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.js index 65b88744b..3e0f7acfd 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "hi_IN", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(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 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "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": "", "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)"}); +Documentation.addTranslations({"locale": "hi_IN", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(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 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "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": "", "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/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 5b56cd973471e0bcf5c4713ce705639037f82ace..09d87687bdf7d2e1476ae539c06db8d1a6c30bc6 100644 GIT binary patch delta 13869 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 O|NmdYk^k`$w*D8MRn7hY delta 16041 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 DxKu%_ diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index b181435d9..aad5fa480 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" "MIME-Version: 1.0\n" @@ -18,21 +18,21 @@ msgstr "" "Language: hi_IN\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -45,95 +45,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -141,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -149,60 +137,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -210,833 +192,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1050,188 +921,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1250,253 +1143,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1504,11 +1391,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1516,25 +1403,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1544,15 +1431,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1563,22 +1450,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1587,36 +1474,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1624,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1654,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1683,214 +1570,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1919,12 +1806,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "" @@ -1932,7 +1819,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "" @@ -1940,297 +1827,262 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "" @@ -2239,209 +2091,200 @@ msgstr "" msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2453,352 +2296,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2806,66 +2678,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2880,106 +2771,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "" @@ -2998,7 +2889,7 @@ msgstr "" msgid "Go" msgstr "" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "" @@ -3147,13 +3038,13 @@ msgstr "" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3195,36 +3086,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3241,76 +3132,89 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3324,140 +3228,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.js b/sphinx/locale/hr/LC_MESSAGES/sphinx.js index dde9f8971..2ed490555 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "hr", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Sva prava zadr\u017eana</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Sva prava zadr\u017eana %(copyright)s.", ", in ": ", u ", "About these documents": "O ovim dokumentima", "Automatically generated list of changes in version %(version)s": "Automatski generirani popis promjena u verziji %(version)s", "C API changes": "C API promjene", "Changes in Version %(version)s — %(docstitle)s": "Promjene u verziji %(version)s — %(docstitle)s", "Collapse sidebar": "Sakrij pomo\u0107nu traku", "Complete Table of Contents": "Detaljni sadr\u017eaj", "Contents": "Sadr\u017eaj", "Copyright": "Sva prava zadr\u017eana", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Izra\u0111eno sa <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Poka\u017ei pomo\u0107nu traku", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Ovdje mo\u017eete pretra\u017eivati dokumente. Unesite rije\u010di za pretra\u017eivanje \nu okvir ispod i kliknite \"tra\u017ei\". Znajte da \u0107e pretra\u017eivanje automatski \ntra\u017eiti sve upisane rije\u010di. Stranice koje ne sadr\u017ee sve rije\u010di ne\u0107e se\npojaviti na popisu rezultata.", "Full index on one page": "Potpun indeks na jednoj stranici", "General Index": "Opceniti abecedni indeks", "Global Module Index": "Op\u0107eniti popis modula", "Go": "Naprijed", "Hide Search Matches": "Sakrij rezultate pretrage", "Index": "Abecedni popis", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Indeksiraj stranice po slovu", "Indices and tables:": "Kazala i tablice:", "Last updated on %(last_updated)s.": "Zadnji put a\u017eurirano %(last_updated)s.", "Library changes": "Promjene lib-ova", "Navigation": "Navigacija", "Next topic": "Sljede\u0107a tema", "Other changes": "Ostale promjene", "Overview": "Pregled", "Permalink to this definition": "Link na tu definiciju", "Permalink to this headline": "Link na taj naslov", "Please activate JavaScript to enable the search\n functionality.": "Molimo omogu\u0107ite JavaScript\n za djelovanje tra\u017eilice.", "Preparing search...": "Priprema pretrage...", "Previous topic": "Prija\u0161nja tema", "Quick search": "Brzo pretra\u017eivanje", "Search": "Tra\u017ei", "Search Page": "Tra\u017eilica", "Search Results": "Rezultati pretrage", "Search finished, found %s page(s) matching the search query.": "Pretraga zavr\u0161ena, prona\u0111eno %s stranica.", "Search within %(docstitle)s": "Tra\u017ei izme\u0111u %(docstitle)s", "Searching": "Pretra\u017eivanje", "Show Source": "Prika\u017ei izvorni kod", "Table of Contents": "", "This Page": "Trenutna stranica", "Welcome! This is": "Dobro do\u0161li! Ovo je", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Zadanim uvjetima nije prona\u0111en dokument. Molim provjerite to\u010dnost upisanih rije\u010di i odabir ozna\u010denih kategija.", "all functions, classes, terms": "sve funkcije, razredi, izrazi", "can be huge": "mo\u017ee biti ogromno", "last updated": "posljednja promjena", "lists all sections and subsections": "prika\u017ei sve sekcije i podsekcije", "next chapter": "sljede\u0107e poglavlje", "previous chapter": "Prija\u0161nje poglavlje", "quick access to all modules": "brz dostup do svih modula", "search": "tra\u017ei", "search this documentation": "tra\u017ei po dokumentaciji", "the documentation for": "dokumentacija za"}, "plural_expr": "n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2"}); +Documentation.addTranslations({"locale": "hr", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Sva prava zadr\u017eana</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Sva prava zadr\u017eana %(copyright)s.", ", in ": ", u ", "About these documents": "O ovim dokumentima", "Automatically generated list of changes in version %(version)s": "Automatski generirani popis promjena u verziji %(version)s", "C API changes": "C API promjene", "Changes in Version %(version)s — %(docstitle)s": "Promjene u verziji %(version)s — %(docstitle)s", "Collapse sidebar": "Sakrij pomo\u0107nu traku", "Complete Table of Contents": "Detaljni sadr\u017eaj", "Contents": "Sadr\u017eaj", "Copyright": "Sva prava zadr\u017eana", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Izra\u0111eno sa <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Poka\u017ei pomo\u0107nu traku", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Ovdje mo\u017eete pretra\u017eivati dokumente. Unesite rije\u010di za pretra\u017eivanje \nu okvir ispod i kliknite \"tra\u017ei\". Znajte da \u0107e pretra\u017eivanje automatski \ntra\u017eiti sve upisane rije\u010di. Stranice koje ne sadr\u017ee sve rije\u010di ne\u0107e se\npojaviti na popisu rezultata.", "Full index on one page": "Potpun indeks na jednoj stranici", "General Index": "Opceniti abecedni indeks", "Global Module Index": "Op\u0107eniti popis modula", "Go": "Naprijed", "Hide Search Matches": "Sakrij rezultate pretrage", "Index": "Abecedni popis", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Indeksiraj stranice po slovu", "Indices and tables:": "Kazala i tablice:", "Last updated on %(last_updated)s.": "Zadnji put a\u017eurirano %(last_updated)s.", "Library changes": "Promjene lib-ova", "Navigation": "Navigacija", "Next topic": "Sljede\u0107a tema", "Other changes": "Ostale promjene", "Overview": "Pregled", "Permalink to this definition": "Link na tu definiciju", "Permalink to this headline": "Link na taj naslov", "Please activate JavaScript to enable the search\n functionality.": "Molimo omogu\u0107ite JavaScript\n za djelovanje tra\u017eilice.", "Preparing search...": "Priprema pretrage...", "Previous topic": "Prija\u0161nja tema", "Quick search": "Brzo pretra\u017eivanje", "Search": "Tra\u017ei", "Search Page": "Tra\u017eilica", "Search Results": "Rezultati pretrage", "Search finished, found %s page(s) matching the search query.": "Pretraga zavr\u0161ena, prona\u0111eno %s stranica.", "Search within %(docstitle)s": "Tra\u017ei izme\u0111u %(docstitle)s", "Searching": "Pretra\u017eivanje", "Show Source": "Prika\u017ei izvorni kod", "Table of Contents": "", "This Page": "Trenutna stranica", "Welcome! This is": "Dobro do\u0161li! Ovo je", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Zadanim uvjetima nije prona\u0111en dokument. Molim provjerite to\u010dnost upisanih rije\u010di i odabir ozna\u010denih kategija.", "all functions, classes, terms": "sve funkcije, razredi, izrazi", "can be huge": "mo\u017ee biti ogromno", "last updated": "posljednja promjena", "lists all sections and subsections": "prika\u017ei sve sekcije i podsekcije", "next chapter": "sljede\u0107e poglavlje", "previous chapter": "Prija\u0161nje poglavlje", "quick access to all modules": "brz dostup do svih modula", "search": "tra\u017ei", "search this documentation": "tra\u017ei po dokumentaciji", "the documentation for": "dokumentacija za"}, "plural_expr": "n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2"}); \ No newline at end of file diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index c10508092deaaf796dcebc8a5f13da399899376a..e15cfd1178af061399b1a22146e6b4a953a602ac 100644 GIT binary patch delta 14087 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 delta 16507 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%0DpgF!>Y^gp z2Q}hFsK{<c<;YQN$os8^Rn1&<#$@V!P+2?1u>iFnEO0(wib~FnSRePGI(ih<(c`Eo zI*W>6YJw}aGqywBzXWUGT^RfKe^Clr&oAIWJdHMXujaD);iae!twDu&GinR{3#!9! zpgQz1w!@m$O{jaK+MSI0d=XB-2e1#u)o_Jlp%_rZ75hJh&O`P13@XHDu`1R`G$F2! z3gsZwR0L4#dOd2yPvJFq3|C=MO;_x&S|Q1_cMD$3^}A3>`F&E@75g@-U&}Pq9kn4{ zj8pL{)N*+bwSMa*o2>7OanwhlJ|Bl_@Oso#+=XiA0n`?K!1+9}wpp(29fyZ0D71d( z!Xi|N??$bP&8QK-hKj_GsE}8wW0J2i4yK-kV{i_R!@XFD&FY%uz7Bg*KY-d#YSlAS z6&^uB4VI&_`3BTJumLrqZH}*?md|IX4kz*ZtZa?Sg&b5n6H!U#LoL%qsHs|p8MqUz zg#Pvjcd=)N*BAM^{j&Chy!rOrK$)Fa==K+Q>`<Y{E}iQSx#!q3f`OTKR{9(}6tFv| z&*>Z8amUoe$Ok=>E86)1zbBIRU~%N-2fv71+iOcW&*v^JZD+MAwc8Ht(810N`13p^ zp>r2J{<4|Bu6cs)P#}2j+Ke)PUdS8ppSv>CGc(t7-W{R2C7yGimid3VIkzm*FK2o5 z%bYE7k*!;k>*RZ8xXXMYd$!wG=CMnHf!W^t$m?7CNAK*{GrmVY1N0X7z5W7whTH4& z<XZy+KA*d!RM+!8x$YnrX3li`^KE}1WX}kc`SY{wR;AHT2fY~|Jw0@Pg=CMf#P<60 zJ##!kr;X^2;g7pgeeRHF&b0hMUfE2KKUA9TE(;X~xJ6CaZD)E53L`HatUIC59V|_^ zNBcZ(-dU#qrKYE+r|NZXg@Cq8Lmqd2J6;>KhWZ%?ll0rhL*9_j^V_!5{!rV|l93(a z68&jzUrC`m*Aw#QxqXq<V+tybEK}$sKa9D(!qDN7DdSQjYsT(~hR1b`k2Jn?akSCI zi(OS)<&y?8-CloW`Mx&i)pqV1b*{E`(n?oFPd+IWS@%+-$itJj)#zw@=9GByLb0pS zk|`Iv!i5TGZXi%>drKL--KuS%ER^pJwku6f7#RpDE8QWxJm7B=vU5GQJC}izl(W5_ za@!lS%ltl1X=yBrOUgpJLK|0P4EN>+-NCsTgPi$@#WrJz-o>OS#%`ZacQ@j8mO#*U zmz4O3L2M3knKPd!vSaFw_A@<nIppz|YHnHu8Mdc1mK#A&X-R;o%?kvBjL0`PGI!eS z=*ejxyTYb(T1~ORvD!S@2`%lJ#SF_%E3sP+88u>XM!GLR$TLcrHBUyqXSVLmP#{XV z*XOs>O6``TCk)Cs7m$DXAor5-DMj?Bomz2PwZ;eX1J?MU+h0l|1%iR-hwh{bVLQ+5 zXDH=bC3y;>dOU30sFAjM{M*T}CTgSjKRi+5%_~+i{;Ow#Wqvz#Rvzn(?h(y!fyZw) zf>gWQ8!C*wK7CeUUWq!SF~r*Zbxw4&ecoc_gtt^7J+HZ6T01X;Ogv0DVl5|(cQS{e zhJQUf>|tKA!XL8J&h_yE2K7(c`&CRdz9HjB47X!hHX#r!E-eg{oHw+>P|5ity6ERL zkF_$htTbeodP1>0^e7jmnJk>f^3V0m2n0QLZkgAYuf3~3x#}_RVX=_+(NlR{;^Nsz z>`1GE&}ep{Y0gGCZHCWXz+5V6%Snh5l9in*|5tkudleaS?wLS|CP*0&+l$g8+YjxI zZYXT;svUd1J1>?lCGG+buZ%qBT@lBoA6as^VPx^)+~{LPja{ZMX-6hUJNY`tC5F8I zGBS!K<YzTSE(`dpmnKXq4dv7QDG9A2p9gZPs`pl2pk!`j{cUyP)bNuZ^p7=s@&mg@ zY_WLfv2l=S5!bO(kvX$oj5PSDespE9MtqI)TPuxho}K!eE3;0tO>$NPqhj|~`^!%B zt2eVm0WA#$O3DL4Hd=B(AMHCaA@co+nvwP8ts=+Db0Tx+oQPgMH`5iZF#iHqWbWlZ zCB~Na&rR8pq*L`HS1*_p-FPZHF4Fa?`y!8>85Nzd@GVzl;-cCn8oovIW5e3=&7A18 zYaWY>r2KG2<n8NcMl1hV;A#>ZKC@He4ys4zzDP8wPu)0Dk4CHCbhj(=+>+VRSvRkC zHFdtpVm;Bu5o@Bf*ju78MQSd)zM|JpazvKCP(QkS*@23YwYN4}wI#vTBbu{nlq<S% zbsv|@j`Rs;N1j>JjMAaAgH@_%2LtSW_VrC8?|oP&a&*l-t1e7*)oC=;KO>ONCK-#6 zZIuVTOlyHXe$>EK!xCL7t41Zd>aPkXx@y%ww}5`Nlq36YORW(LS!^B9-Bouax_XAs zU+!G|x#ie!bUZ2dvRC^(u`dlXd$A3`tl!vIhxU)`1e<Sa>mMG_7yduFe{?XCxpsWl z9%-F=q-AB=oiejCyL9N(vs0&p(WBDFdS-jI^QR4B&1BnIoie$vXIf^ao!Ke7bJytO zYb#gyW2dM<;<*!4^yLTFyTU>Dyr3ul+~KD9|LXiyoaZfapKD~-5}*6L<5b97a_+P9 zPETb8!N~kSuZ(<|6OA6*obmfdsOalk%i{YE4E*B(YMi?`=q<8K0y6`<uJf1Kp`g3C z>~~I4Qy={)K5}~KjOdvs7FVbp+b4f>l)8M!k^gx|sYuDl-qEEyljCZVDZe^Tt=m=n z^LeVu?uULpPi@<MU-X*i2E|8uzHnu<(~Fn>2hUS0CXJ02@9+G-?o4&|)tVeuVh6te zpU+ec-e_1M{CkI_|Dt16n7!(kgV2A&u`2uz6ZBtutQvXlu$=z?;#k$`Kr`o9HS$pK zKjl~z*-)4g{p9T`uKK^6?tXK;I{D6;pO073#fR@QN2_Ssk=x?xa_ai^$;#$T7TNv& z^mauadp3V$djobs(6f6(aanfkxaA23Ic}YQSo)(!uc+(T4wrN8s_Ke1I)17Ge^2u| z@4TQppZ9s^`P}pP9?0h}jgaT}UtDVC^A~o|GmpR4y+QZS9SzL<y`Gjv{`etosdIQM zi(K=!P_*G^*{(>1`8m<UpC`IDH96_}$3t8h2e{ATqK}>FUZGyut|i`(d$!xp=mNz7 zpVuEd?soaclM)-O+YaRO&F$U2!5`qj<_&s^`QwVOVGb_QE#L6>a>@_KtCaGE=;sg1 z|G+74;ZK*vPI>SA^q@|8byq#?a^**6-JJdCq6)4#f9SmT=%RR6VqC<I^p2c~eD>)5 zRa`|b9seHX__x#**|>Vrs)wt)o)4D<_?u_8uP8Q1&SASZFbsc@o0C+wGbHb9YC&5W z<=J%|GgiO}Fvyho-5u>*&Vcr=>pZsKonPeMwS<e-KW%f@lG%Zv-)$H3qmkPV|8Bzs yeV*6vW!s<URa9dyiM{QYH+ld0o63BFf`8TX#9wzk^4^+z|8vi}3;tWry8jMS&;5`9 diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index cd0e71ced..944458254 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -1,15 +1,15 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: -# Mario Šarić, 2015-2018 +# Mario Šarić, 2015-2019 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-09-11 10:35+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 19:50+0000\n" "Last-Translator: Mario Šarić\n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" "MIME-Version: 1.0\n" @@ -19,21 +19,21 @@ msgstr "" "Language: hr\n" "Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "u konfiguracijskom direktoriju ne postoji datoteka conf.py (%s)" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nema izvornog direktorija (%s)" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "Izvorni i odredišni direktorij ne smiju biti jednaki" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "Izrada pomoću Sphinx v%s" @@ -46,95 +46,83 @@ msgid "" msgstr "Ovaj projekt se ne može izgraditi s instaliranom verzijom, potrebno je instalirati Sphinx v%s ili višu verziju." #: sphinx/application.py:234 -msgid "making output directory..." -msgstr "izrada odredišnog direktorija..." +msgid "making output directory" +msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' koji je postavljen u conf.py nije moguće pozvati. Molimo izmijenite definiciju 'setup' funkcije kako bi ju mogli izvršiti iz Pythona. Ovo je potrebno kako bi conf.py imao karakter Sphinx proširenja. " -#: sphinx/application.py:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "primary_domain %r nije pronađen, zanemareno je." - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "učitavanje prijevoda [%s]... " -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "napravljeno" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " -msgstr "učitavanje okoline..." +#: sphinx/application.py:298 +msgid "loading pickled environment" +msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "neuspješno: %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "Nije odabran format, koristi se zadani: html" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "uspješno" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "završeno uz probleme" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s upozorenje." -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" -msgstr "postavljanje proširenja %s: čvorna klasa %r je već registrirana, njezini vizitori će biti nadjačani" +msgid "node class %r is already registered, its visitors will be overridden" +msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" -msgstr "postavljanje proširenja %s: direktiva %r je već registrirana, biti će nadjačana" +msgid "directive %r is already registered, it will be overridden" +msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" -msgstr "postavljanje proširenja %s: uloga %r je već registrirana, biti će nadjačana" +msgid "role %r is already registered, it will be overridden" +msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,68 +130,62 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " "assuming it isn't - please ask the extension author to check and make it " "explicit" -msgstr "" +msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "ne može se nadjačati osnovna konf. postavka %r, zanemarena je (koristite %r za postavljanje pojedinačnih elemenata)" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "nepravilan broj %r za konf. vrijednost %r, zanemaruje se" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "ne može se nadjačati konf. vrijednost %r zbog nepodržanog tipa, zanemareno" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nepoznata konfiguracijska vrijednost %r, zanemaruje se" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "Ne postoji konfiguracijska vrijednost: %s" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "Konfiguracijska vrijednost %r već postoji" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" -msgstr "" +msgid "There is a syntax error in your configuration file: %s\n" +msgstr "Postoji sintaksna greška u konfiguracijskoj datoteci: %s\n" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -211,833 +193,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "Poglavlje %s" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "Slika %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "Tablica %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Ispis %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "primary_domain %r nije pronađen, zanemareno je." + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "Događaj %r već postoji" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "Nepoznato ime događaja: %s" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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 "Ovaj projekt treba proširenje %s najmanje u verziji %si stoga se ne može izraditi s postojećom verzijom (%s)." -#: sphinx/highlighting.py:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Klasa %s nema \"name\" svojstvo" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Builder %r već postoji (u modulu %s)" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Builder imena %s nije registriran ili dostupan pomoću poziva" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "Builder %s nije registriran" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "domena %s je već registrirana" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "domena %s nije još registrirana" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser za %r je već registriran" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "proširenje %r se već nalazi u Sphinxu od verzije %s; ovo proširenje se zanemaruje." -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "Izvorna iznimka:\n" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "Proširenje %s ne može biti uvezena" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "proširenje %r nema funkciju setup(); radi li se o ispravnom Sphinx modulu proširenja?" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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 "%s proširenje traži Sphinx verzije v%s; stoga projekt ne može biti izgrađen s ovom verzijom." -#: sphinx/registry.py:495 +#: sphinx/registry.py:496 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "proširenje %r vratio je nepodržan objekt iz setup() funkcije; rezultat treba biti None ili riječnik metapodataka" -#: sphinx/roles.py:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "tema %r nema postavku \"theme\"" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "tema %r nema postavku \"inherit\"" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "tema %r nije pronađena, nasljeđuje ju %r" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "postavka %s.%s ne pojavljuje se u pretraženim konfiguracijama tema" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "datoteka %r iz teme nije ispravna (zip) arhiva ili ne sadrži temu" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "sphinx_rtd_theme više nije čvrsta zavisnost od verzija 1.4.0. Molimo instalirajte ručno. (pip install sphinx_rtd_theme)" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "nema teme %r (nedostaje theme.conf?)" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Ugrađeni dijelovi" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Nivo modula" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Opceniti abecedni indeks" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "abecedni indeks" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "naprijed" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "nazad" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentacija" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1051,188 +922,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (u " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Abecedni popis" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Distribucija" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1251,253 +1144,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1505,11 +1392,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1517,25 +1404,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1545,15 +1432,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1564,22 +1451,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1588,36 +1475,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1625,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1655,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1684,214 +1571,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "Detektirano je prekobrojno izvlačenje koda" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "Neispravan navod: %s" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Ne mogu se istovremeno koristiti *%s* i *%s* opcije" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "Include datoteka %r nije pronađena ili se ne može pročitati" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "Encoding %r za čitanje import datoteke %r nije ispravan, pokušajte dodati :encoding: opciju" -#: sphinx/directives/code.py:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "Objekt %r nije pronađen u include datoteci %r" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "Ne može se koristiti \"lineno-match\" sa nespojivom grupom \"lines\"" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Specifikacija retka %r: nema redaka preuzetih iz include datoteke %r" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Autor sekcije: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Autor modula: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Autor koda:" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Autor:" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Vraća" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Vraća tip" @@ -1920,12 +1807,12 @@ msgstr "%s (C tip)" msgid "%s (C variable)" msgstr "%s (C varijabla)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "član" @@ -1933,7 +1820,7 @@ msgstr "član" msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "tip" @@ -1941,297 +1828,262 @@ msgstr "tip" msgid "variable" msgstr "varijabla" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Novo u verziji %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Promijenjeno u verziji %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Zastarijelo od verzije %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "Parametri predloška" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Baca (iznimke)" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ tip)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "%s (C++ koncept)" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++ član)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++ funkcija)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++ razred)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (C++ enum)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (C++ enumerator)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "razred" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (ugrađene funkcije)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (razred)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globalna varijabla ili konstanta)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Argumenti" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "podaci" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "dvostruka oznaka jednakosti %s, drugo pojavljivanje u %s" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "ključna riječ" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "izuzetak" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "izjava" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "ugrađen funkcije" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Varijable" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Podiže" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (u modulu %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (ugrađene variable)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (u modulu %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (ugrađen razred)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (razred u %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metoda)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statična metoda)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s metoda klase)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klase)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atribut)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Python indeks modula" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Zastarjelo" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "metoda klase" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (zastarjelo)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (directive)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (role)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "Direktive" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "uloga" @@ -2240,209 +2092,200 @@ msgstr "uloga" msgid "environment variable; %s" msgstr "varijabla okruženja; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%scommand line parameter; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "termin rječnika" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "token gramatike" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "referentna oznaka" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "varijabla okruženja" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "programske mogućnosti" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Abecedni popis" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Popis modula" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Tražilica" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "pogledajte %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "Dodatne informacije: %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Simboli" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2454,352 +2297,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "nedostaje '+' ili '-' u '%s' opciji." -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' nije valjana opcija." -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' nije valjana pyversion opcija" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz direktiva ne može imati i sadržaj i ime datoteke za argumente" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "Vanjska Graphviz datoteka %r ne postoji ili se ne može čitati" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignoriranje \"graphviz\" direktive bez sadržaja." -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "dot naredba %r ne može se pokrenuti (potrebna za graphviz izlaz), provjerite postavku graphviz_dot" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "dot rezultirao greškom:\n[stderr]\n%s\n[stdout]\n%s" +"%r" +msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "dot nije izradio izlaznu datoteku:\n[stderr]\n%s\n[stdout]\n%s" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format mora biti 'png' ili 'svg', ali je %r" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "naredba za konverziju %r ne može biti izvršena. Provjerite postavku image_converter" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "convert je vratio grešku:\n[stderr]\n%s\n[stdout]\n%s" +"%r" +msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Link na tu definiciju" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(u %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[source]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "<<original entry>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "(<<original entry>> se nalazi u %s, redak %d.)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "izvorna stavka" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Kod modula" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Izvorni kod za %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Pregled: kod modula" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Svi moduli za koje je dostupan kod</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2807,66 +2679,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "Osnovice: %s" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "nadimak za :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2881,106 +2772,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "Argumenti" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "Primjeri" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Pozor" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Pažnja" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Opasnost" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Greška" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Savjet" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Važno" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Napomena" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Više informacija" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Savjet" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Upozorenje" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "nastavak sa prethodne stranice" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "nastavak na sljedećoj stranici" @@ -2999,7 +2890,7 @@ msgstr "Traži" msgid "Go" msgstr "Naprijed" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Prikaži izvorni kod" @@ -3148,13 +3039,13 @@ msgstr "traži" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Rezultati pretrage" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3196,36 +3087,36 @@ msgstr "C API promjene" msgid "Other changes" msgstr "Ostale promjene" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Link na taj naslov" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Link na tu definiciju" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Sakrij rezultate pretrage" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Pretraživanje" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Priprema pretrage..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Pretraga završena, pronađeno %s stranica." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", u " @@ -3242,76 +3133,89 @@ msgstr "Sakrij pomoćnu traku" msgid "Contents" msgstr "Sadržaj" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "više od jednog targeta za 'any' referencu %r: može biti %s" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "%s:%s reference target nije pronađen: %%(target)s" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "%r referenca target nije pronađena: %% (target)" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "prilikom dodavanja klasa direktiva, ne mogu se dati dodatni argumenti" @@ -3325,140 +3229,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Permalink na ovu tablicu" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Permalink na ovaj kod" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Permalink na ovu sliku" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "Permalink na ovaj sadržaj" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Distribucija" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "stranica" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Fusnote" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Nepoznata postavka: latex_elements[%r] je zanemarena." -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[slika: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[slika]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.js b/sphinx/locale/hu/LC_MESSAGES/sphinx.js index 15bcbe96a..8a872b2e3 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "hu", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", ", "About these documents": "N\u00e9vjegy ezekr\u0151l a dokumentumokr\u00f3l", "Automatically generated list of changes in version %(version)s": "Automatikusan gener\u00e1lt v\u00e1ltoz\u00e1slista a(z) %(version)s v\u00e1ltozathoz", "C API changes": "C API v\u00e1ltoz\u00e1sok", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Oldals\u00e1v \u00f6sszez\u00e1r\u00e1sa", "Complete Table of Contents": "Teljes tartalomjegyz\u00e9k", "Contents": "Tartalom", "Copyright": "Minden jog fenntartva", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s haszn\u00e1lat\u00e1val k\u00e9sz\u00fclt.", "Expand sidebar": "Oldals\u00e1v kinyit\u00e1sa", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Err\u0151l az oldalr\u00f3l ind\u00edthatja keres\u00e9seit. \u00cdrja be a kulcsszavakat\n az al\u00e1bbi sz\u00f6vegdobozba, majd kattintson a \"keres\u00e9s\" gombra.\n \u00dcgyeljen arra, hogy a keres\u00e9s megadott kulcsszavak mindegyik\u00e9t\n figyelembe veszi, \u00edgy azok az oldalak, melyek nem tartalmazz\u00e1k az\n \u00f6sszes kifejez\u00e9st, nem jelennek meg a tal\u00e1lati list\u00e1ban.", "Full index on one page": "Teljes t\u00e1rgymutat\u00f3 egy oldalon", "General Index": "\u00c1ltal\u00e1nos t\u00e1rgymutat\u00f3", "Global Module Index": "Teljes modul t\u00e1rgymutat\u00f3", "Go": "Ok", "Hide Search Matches": "Keres\u00e9si Tal\u00e1latok Elrejt\u00e9se", "Index": "T\u00e1rgymutat\u00f3", "Index – %(key)s": "T\u00e1rgymutat\u00f3 – %(key)s", "Index pages by letter": "Oldalak ABC sorrendben", "Indices and tables:": "T\u00e1rgymutat\u00f3 \u00e9s t\u00e1bl\u00e1zatok", "Last updated on %(last_updated)s.": "Utols\u00f3 friss\u00edt\u00e9s %(last_updated)s.", "Library changes": "K\u00f6nyvt\u00e1r v\u00e1ltoz\u00e1sok", "Navigation": "Navig\u00e1ci\u00f3", "Next topic": "K\u00f6vetkez\u0151 t\u00e9mak\u00f6r", "Other changes": "Egy\u00e9b v\u00e1ltoz\u00e1sok", "Overview": "\u00c1ttekint\u00e9s", "Permalink to this definition": "Hivatkoz\u00e1s erre a defin\u00edci\u00f3ra", "Permalink to this headline": "Hivatkoz\u00e1s erre a fejezetc\u00edmre", "Please activate JavaScript to enable the search\n functionality.": "K\u00e9rem enged\u00e9lyezze a JavaScriptet a keres\u0151 funkci\u00f3\n haszn\u00e1lat\u00e1hoz.", "Preparing search...": "Felk\u00e9sz\u00fcl\u00e9s a keres\u00e9sre...", "Previous topic": "El\u0151z\u0151 t\u00e9mak\u00f6r", "Quick search": "Gyorskeres\u00e9s", "Search": "Keres\u00e9s", "Search Page": "Keres\u00e9s", "Search Results": "Keres\u00e9si Eredm\u00e9nyek", "Search finished, found %s page(s) matching the search query.": "A keres\u00e9s befejez\u0151d\u00f6tt, %s oldal egyezik a keres\u00e9si fel\u00e9teleknek.", "Search within %(docstitle)s": "Keres\u00e9s k\u00f6zt\u00fck: %(docstitle)s", "Searching": "Keres\u00e9s folyamatban", "Show Source": "Forr\u00e1s megtekint\u00e9se", "Table of Contents": "", "This Page": "Ez az Oldal", "Welcome! This is": "\u00dcdv\u00f6z\u00f6lj\u00fck! Ez a", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "A keres\u00e9se nem hozott eredm\u00e9nyt. Ellen\u0151rizze, a megadott kulcsszavakat \u00e9s azt, hogy megfelel\u0151 sz\u00e1m\u00fa kateg\u00f3ria van-e kiv\u00e1lasztva.", "all functions, classes, terms": "\u00f6sszes funkci\u00f3, oszt\u00e1ly \u00e9s kifejez\u00e9s", "can be huge": "nagy lehet", "last updated": "utolj\u00e1ra friss\u00edtve", "lists all sections and subsections": "kilist\u00e1zza az \u00f6sszes fejezetet \u00e9s alfejezetet", "next chapter": "k\u00f6vetkez\u0151 fejezet", "previous chapter": "el\u0151z\u0151 fejezet", "quick access to all modules": "gyors hozz\u00e1f\u00e9r\u00e9s az \u00f6sszes modulhoz", "search": "keres\u00e9s", "search this documentation": "keres\u00e9s ebben a dokument\u00e1ci\u00f3ban", "the documentation for": "dokument\u00e1ci\u00f3"}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "hu", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", ", "About these documents": "N\u00e9vjegy ezekr\u0151l a dokumentumokr\u00f3l", "Automatically generated list of changes in version %(version)s": "Automatikusan gener\u00e1lt v\u00e1ltoz\u00e1slista a(z) %(version)s v\u00e1ltozathoz", "C API changes": "C API v\u00e1ltoz\u00e1sok", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Oldals\u00e1v \u00f6sszez\u00e1r\u00e1sa", "Complete Table of Contents": "Teljes tartalomjegyz\u00e9k", "Contents": "Tartalom", "Copyright": "Minden jog fenntartva", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s haszn\u00e1lat\u00e1val k\u00e9sz\u00fclt.", "Expand sidebar": "Oldals\u00e1v kinyit\u00e1sa", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Err\u0151l az oldalr\u00f3l ind\u00edthatja keres\u00e9seit. \u00cdrja be a kulcsszavakat\n az al\u00e1bbi sz\u00f6vegdobozba, majd kattintson a \"keres\u00e9s\" gombra.\n \u00dcgyeljen arra, hogy a keres\u00e9s megadott kulcsszavak mindegyik\u00e9t\n figyelembe veszi, \u00edgy azok az oldalak, melyek nem tartalmazz\u00e1k az\n \u00f6sszes kifejez\u00e9st, nem jelennek meg a tal\u00e1lati list\u00e1ban.", "Full index on one page": "Teljes t\u00e1rgymutat\u00f3 egy oldalon", "General Index": "\u00c1ltal\u00e1nos t\u00e1rgymutat\u00f3", "Global Module Index": "Teljes modul t\u00e1rgymutat\u00f3", "Go": "Ok", "Hide Search Matches": "Keres\u00e9si Tal\u00e1latok Elrejt\u00e9se", "Index": "T\u00e1rgymutat\u00f3", "Index – %(key)s": "T\u00e1rgymutat\u00f3 – %(key)s", "Index pages by letter": "Oldalak ABC sorrendben", "Indices and tables:": "T\u00e1rgymutat\u00f3 \u00e9s t\u00e1bl\u00e1zatok", "Last updated on %(last_updated)s.": "Utols\u00f3 friss\u00edt\u00e9s %(last_updated)s.", "Library changes": "K\u00f6nyvt\u00e1r v\u00e1ltoz\u00e1sok", "Navigation": "Navig\u00e1ci\u00f3", "Next topic": "K\u00f6vetkez\u0151 t\u00e9mak\u00f6r", "Other changes": "Egy\u00e9b v\u00e1ltoz\u00e1sok", "Overview": "\u00c1ttekint\u00e9s", "Permalink to this definition": "Hivatkoz\u00e1s erre a defin\u00edci\u00f3ra", "Permalink to this headline": "Hivatkoz\u00e1s erre a fejezetc\u00edmre", "Please activate JavaScript to enable the search\n functionality.": "K\u00e9rem enged\u00e9lyezze a JavaScriptet a keres\u0151 funkci\u00f3\n haszn\u00e1lat\u00e1hoz.", "Preparing search...": "Felk\u00e9sz\u00fcl\u00e9s a keres\u00e9sre...", "Previous topic": "El\u0151z\u0151 t\u00e9mak\u00f6r", "Quick search": "Gyorskeres\u00e9s", "Search": "Keres\u00e9s", "Search Page": "Keres\u00e9s", "Search Results": "Keres\u00e9si Eredm\u00e9nyek", "Search finished, found %s page(s) matching the search query.": "A keres\u00e9s befejez\u0151d\u00f6tt, %s oldal egyezik a keres\u00e9si fel\u00e9teleknek.", "Search within %(docstitle)s": "Keres\u00e9s k\u00f6zt\u00fck: %(docstitle)s", "Searching": "Keres\u00e9s folyamatban", "Show Source": "Forr\u00e1s megtekint\u00e9se", "Table of Contents": "", "This Page": "Ez az Oldal", "Welcome! This is": "\u00dcdv\u00f6z\u00f6lj\u00fck! Ez a", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "A keres\u00e9se nem hozott eredm\u00e9nyt. Ellen\u0151rizze, a megadott kulcsszavakat \u00e9s azt, hogy megfelel\u0151 sz\u00e1m\u00fa kateg\u00f3ria van-e kiv\u00e1lasztva.", "all functions, classes, terms": "\u00f6sszes funkci\u00f3, oszt\u00e1ly \u00e9s kifejez\u00e9s", "can be huge": "nagy lehet", "last updated": "utolj\u00e1ra friss\u00edtve", "lists all sections and subsections": "kilist\u00e1zza az \u00f6sszes fejezetet \u00e9s alfejezetet", "next chapter": "k\u00f6vetkez\u0151 fejezet", "previous chapter": "el\u0151z\u0151 fejezet", "quick access to all modules": "gyors hozz\u00e1f\u00e9r\u00e9s az \u00f6sszes modulhoz", "search": "keres\u00e9s", "search this documentation": "keres\u00e9s ebben a dokument\u00e1ci\u00f3ban", "the documentation for": "dokument\u00e1ci\u00f3"}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 9279e158e2d19ae7157911325c84fb5751e09946..f5d83d03122a96aba28113e099853c2d72471083 100644 GIT binary patch delta 14432 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 I?iFnPCowS9iU0rr delta 16260 zcmeI$2YA#~{_pYMq)-9`NT?yej{s7W5C|>wUZo?_nIuCP7-nK-5<rx(Ep{m*f*^ur zRYWX|f&zkqps<3jtb$k&!LqU}AeL1u|MzFk&jnoX-Mi1TclUYjbNBiGeVub=ey4oT z_ni5WH`XM)^Grhc!<2+&7XN!G&a%=my_RYh{+Hg`vQ|*7kF9VMHp7o`q06$8GA(N{ z&o0TbtW&gS<XBc6+N-s-tdrDRw6m;!)NAHiR&AWv-m<QyJ=nprN-QgE{gr}`26sok zfCn&}FMf)*Qm@t7vIgT?+=nM|0&dDP6RO_DvZ_$;hKV@DaU`~+J`TI#4LA^A!X8+$ zE0bk>YY>HsH2AOrmSIy2qdNFKs^d2?72m<?_yyL$AFwJ`XOzm=2sNQBtb|=rpAW=j zyb`Nn5msS*Yc2(Kyb#s#O4I{S=nJ?F_253#_ufVA(kWC&3Ej=-HPNQt1l3PJ)C9(% z7Fd9zaW?kCmoco4;)#b$Lv@&g+KS#-7bl<w4q+PJf_3mA)QYz`pYO#?>K~w<tJKr7 z*j=kBHpEF-53j){xS}WVe}Te_G_=DxOiMFfkL7VQPQx8oh<0zY6~9CB%(~t2MI1o= zG^Sw3K9<!62crg@kNLP9YvT8)iB;<xHVp&%n$S%~g=&H0EvV2hMdii=NYt#yozMS_ z&8eSrOz&q|4XF1+f?yS*o_iRzl^d`TZpBXcL6|~Q3bp#16?a9=urG3AtO;o2B2))Y zqqbr@YOCHteg8OWYraE;x(4CUz`3Zc?S@*|7}R)E9K$zJs87S=$ceIELr$I*KhQkb z1v99R!ppG~m0Y{99KMZ7_&zGspE<@4GD+4D`9I6ef2QGjRB~4y9NWsUl}>@^SsBQ) zRuK-tr%_4v1D3~{G*-a+$Q@!`hKj@_)D{(^CKg78b_r_Y`y5YUW9rq0n*MUJk<Nct z3R?LTROs$S8(+YRcmy@z3A9{<nJ_4%^@f=(X^WajPmIGcNPb!4oc2|YPhkS>yD$r1 z!(7I<zNMgnS`RlLbihRF9@O5>a=acDspY5v-*-HN6R9VRFgNKmoJD;<YHK@>G>$_> zs1(QJ%@|fT9-~kd<40K**S3|4N!TB?l98y$EJHs&hvco*WVAW|Gf~ga!Af|u(;mT0 z>T9t%9zgZ`EovfhV~D>RYK$>oXo%YLfvD_uqe51K6L1bHGH;=B;xM+xkFW+-8Ec-) zK%JI$sQ!APa%Te8!~#?<%o|JmHG$PMXip!*blibDPVYN@i@Fh0t}wPl-Eh6JH%>w? zuEDlgah%Eeu9!=GAu57f9pA&+)X#^VLh6-fPg`L!AN0VQI1CkuLadCXs8HX4DY(?B z{~ooX=dcOBi>de%>bVp)T*tK`s=v!n3lDdspiuTk?cHFfeg$gAQ&0mfKy|PL73vkJ z?{7d&_yy#L(0UDZ4<xc*O6o?afm)#k?tt2g0oaQ1tq~N|(KV>6^%m5CucB6T1eGj5 zp(a|5RM!ORpgPJ#ecl1J;(^E<tVzft)+TI;)hC(Xn68*jy%?M8{I8{uMZ;bkfq%nd z95mTPU<>M$96?<uKcGU~aEiGn`r-`g9@KybkOO74n95y%^Kl5iiMo2zr<s0x<HRrx z`4sNQ?Wh$`cAHnM>rwS}PJKT%qW(2%!nO0wn@xZ0K>a3E$hYDu+>M3kF5oi4Jy?bf zXw+6N!*D!>`zS2IwU~fyJ!YVe*q-`$Y=?`m7Vg4&cmy->8|;R4r<(|jLrr8OYRk4^ zBEEt;uKQ5A@a=Ts--1GgB9rZHu^jb*n1jPn17D9H;B(j)BgDHm9>&|Sp4W8z2x?*n zQT?1o<<>V?9^+=3dJ?K$YbNnm5;dS<7&gP(u?%})+$?j0^+uiRVpQ@yg!S=xRI<K< zTG5}eGk%W^FxO`yF&cFYC!@AvCMq{}hAFhBP<yr+pf9p*)*RG8M^N{`X{?Beev?F1 zaT@jZsEOQz8t_@Hf(KFe#4*RSs0+sxFsG$1R-ztmMd30E9kB^c!Mb=OrsHbV09!B( z52Ge_4jW<xj!G|Vj>`U-n2Ebl6FP_LC*>-06=$Q8cp!Gt`JYKa$?*_Y#&xK@*@PW& zJ1V=s!7i9tVy;#%svgBWJdFdfWzcLv5C>4-fNk+>$L1k(VNJwbo&T8>l+|lcGu`CW z52BLn3seW0rRMW#s1;m`O13qqm2O3a_y|_RFEIt<Idl46E!5|2u?`N#=8SI@Q0Rtt zpdQ?ZRq;J+gC|kPGJTHOnnsvSy$fnfW?@TQh}z0$P`Pp#wRIn(jn-VVb&XJ4)B(e_ zDHKwuh1XyXMo=B@#+rBrbxO+3GZU(c8mK2$$0AfN%){n*FKPihQ4xL1@iaE2UioTn zOKf{J@qd8A3L0`TZ@yV+0M$VV$Ky@d1wX_rOuNQ}d=S>5J_9w-^{9#5@3e2nR@4un zCKi9K8K*U-Qg>fV{OeIDrC~5GL52E#)J%_I5|&?JLYIOXuo<f3o>&)ssE{wjPPiB^ z$Gu1zShX2Pk-8I=6Kk*+ZVXe<0AFDP{24o7gX>I|k41fP4Qj8Cp|<J=RCcFcZ!WHh zs4aRN6}c!XQoB$S{1Ua5m2WWjLxy9x4TWxe&>frMHK<TMjO}qh>Vk^D(PVua)I>+2 zB6k&PVt1nYc?=bqPf^L6a+76UfqfiTq9St^N9p|c_?@|UmSQ3wY)0+Pi#QDbh`JZ- zg{H$y)JmpceGFkbE=8S+r%)?Cikj$msEF0M*(7Z?Hllt-tWLP+QYcTu8tjLUq6R#L zItAZjM{IhF`L&yj4XIy;n!s9AB(^)BAHhWGKcXTNf2+xz2H2E(JM4nvu^i)D%T&Po zFasY#&2SG6#m}A3+uvs12fAW;+NWV(oPpY^4VZ+-F#-RITF5!nvDPn}7T6Yh<6I06 zps<yKW)^>k30(_pOuY}<Sme}i!PeBDK&|*))J5_&Hpj+ynh6X=JwFcBKHsT7j9Tbx zSOMR-ll@PoaF~Wl_!;VfbEspMewSHEd(^SYLmPuQ0`Epe>=RU|D=ae4HOAr8yE^qd zP#4|rQ3Jn-x@q?;BK}(WA*bO-Os1Z^*sQcZR;E4}HL-E15MGBZaStlAXHhxQc!`P3 zL`<SS2X)?WKqc)m$Msm1`paSG3xCARXgGnIX{DuR<&Cih_2#IFc0+}*01I#?D%%e@ z?VqC}c^aGHdCbGc5fiy7*pqq~HKFiJ6cmzoP{-&frr-~#301wDH(Bg}3iUM9%5Ow{ z{v?jWx3N2BE;Etv;R5OpV?}IykGXg<QS~m^TIatX1$9`0ZE!W}SRFvE_%FB|Q}~a3 zoc|CctM>}Cf<NIT>R+Iea=^W2<prqcZ^u^n3{JrhuswENsr!NbFQHJEh9#(DvmW(@ zr%@e#iisGv%5+o#GpXmIKF>!T*9DGiu_pDMPW><{!r!A#Mf`nc!OgIO&i^P13i(8= zg?{XVzr&HZ7q7&6tIeK=a5VM9*cn^jZ!VPSsI7Vs)!*x={*GcQeuMQeX^rtR3~Nt& zQ_ze(j`J~{`Vv$}PhxF+8I@e`qPFT2%*I-4`RAI8zZW38U?o3jBK0UL2@j(FR(u}y zx8fTfHh(KleU$j?kHxOX%pZ%>)^WV3mwTK6ap-#U$Kt{#Vt*{Qj-rnaM{O_@+JX98 z@gcmG_VQ0TKjXNM`ujKmAAQ<PDDD|^EVGb#Se>5<o4xHygOac}cEi~?5Z7Z5{0cKL zccaPPai~3YqmpbU>iNZ}T-k~>@MTo!-$8A~7g!x#QF9tn!xZ#|MovR}tVX>L>WgEX z`gGJ5%|Ug1C#K?qPWvXTO8s@z1@=BFsZU}WCO&KWwNc;8K^@<4FXw|9m_)-o=L<LC zXzF)kFZ>*}f|k#j<mrVe)F(UjVr)SD4y=jmo%+jIpZZ6rfqz0hm%J%<io#YS3QDfw z*a3^MA>NP5*6r8?kKhaVGq%GQHk&Oth59x82B+aqScp@fH+%dF=1_mt@jKLyUMo6F z(fJQj=s?3ltcx#VJ|031oVUe%J{4<HzXxr60u{0Ss9ZRV3jHzE4R;3n;rC9x=T`F@ zGT1SQ4H)0LkAjkHE9!WiM}?^THgmD0VJGTcQOQ<{8gLb+;lr4VJJ80jP!p;7qREja zSciHi)B;9gZ7jmDLLH`{4%eWv{4vxQ|9~3sm}B|vW-l`_kM<$h5f@@D+>UzwZ5)q( zLnZO39j5<6)K<;LbS&LL{OeIzN`sQ@NgRY{a2n>lWRhkTCQx6Geer1=h+pFn?EbP@ z;cch^9zrc>J+{YZF%`eS8u$}xVyQdBCbUg=nwd{=ydE3#g@;jl`5HFDw@@qp3L9ef zE)(+MScQ5qYQP0}rHg@`&#UY<xs`?5vVj<f1z`$(C`?Dq@Nrbf+fgh25VP<&YL8R) znBV^asP<u~fv?5-cspt<)}bQx5;nlZSDjqIiPSrxZqo4G6lPIyy=FR??RYyXMC(v{ zxfPpY&Aldhx?o%CqfyDW5VeqHs0F->e*6ym;f#G|Yo0{i1DlZk!`2=O%KF2Yi6^i* zru@OQcR{Ua04gb`pgs?wvU)Y@#@vLJ@Kv0E2Qd+|UN-~hVr%MMQ90nnYC8W5C@A!c zP#r#mm2n$tC3~?k{@H1-vfs3)p-p=pYELIR^)l4)T8`S1r?4*W$07I`da>OBBFOmG zY6^q!P1GKzy<r9z?ifIIxXAHQ)Sm7@ZPACQ$eck%qTHKi0kyFz^(LtMB-g1AKrLt- zhA*QqpMpa2AXdT6SOIrqH9UYxcofUy7pMWhL~TulKbi?QL=Dsf_53K*=M$ZJ3F^7| z*dLetk@(vb4%46se21Dq@>^zQ>8OFTuoZSjb>PA7I3H7R3u;CCu{xebZDIUD({D9Q zrrs3wc`oX?{s)P_vU@xYN}4FP#N<DjADPaWO?@^h=~iPF?!giGH5Oz4w@m~#qwa}A zn1SD66HI@{<Vr7`K|LQe-XFpgMpC%!kokk)TvU?mM;*7ihfT*lQ0I0k-j7>RE1vMK zdBs|Qsz2h?_n{{8C2GPoj+hslKG=c!^;ikR&r?`M;T0^zY44f$`Q2DXz5e@z5${Ir z=?Ywe51_WD-3Ml%?%1CCG;D|WU@hE-_3#)fB0pj`v_FhRAZ$&cppITZ4e$!;-0sKL zco1u#b=17w*2J1rdtf;ni#a$6HSk@?7}ieI4Y>9r^RL}c@K);0kC}cqVm+PzqZHK9 zc~nT^J~mmNjH=gi>KUjBw!~rB4sXXBum>g|Hy7A2Y)kzbOvR_L1@1y6-6^bw)(H}t z@vZ6<8sHGrfHP6qTZZHCMjV6hp(4`e6EnbM%%{E>6`^ye$W-{${Ae}6rqr9`G#rNY z@hQ}J`!THJ_7@7eD86@0`pjH7X{bGHi`t?=co~ktCO9AK;#y3{EvNwwVH$ponpm~Z zO%gZ7Uex>H1iblk;-5+3V;VH0YJWBzWn&%cL$MKhuoK>l74Rk0z<aSg9><P&5|!PJ zzcBwInt+3--{aIj!aVBfC(ZlAxRb=cGYxBL7=TAmdzbMS<5<+iaSP_+a#TcK$A);^ zsmGr(NtT9seljW|i%|>MfI0<lpcZ-(YhzOQuO=BXP|48_^~L_EFXW>laWyu_2<rH3 zLnYDosI9AX+WeEO9wty9ii*%k%*I)$Em?&vaT97Q!^bEjQK)dn>|H9_)N@dKHwrVc z2sNQ)s0eI89lKXh9e#sKzD8%w7Inln)O(@^x(ch~3RL7CM-~*e_ED%x!#PyQ;=eT7 zsO;^A9xT8Ia4%{rW}P!DU5k4D_c$J(!!B6$D|7P=L52KkR3z_3jk6IO>ioaqd~h0D z@j->JO{jA*m-=K(#igjNc?1XJPOOYozA+O`!%Eb9Voe;1+Jbykzt=eR$52VU6FV`! z^#=-<W5T!QkHw>~I`!8u1&?4aJcZh-?7x{6<zWZv<55|@81=m)sJ%}A&TLgjRB{i) zVR#R!pHDEX(4C=>h1U0G#@VP93_`7NDpo-sD*3L)X81fRDL=yYSn<5Mpn6~<>ONHH z@4|Yx0n>0Vs-F|*iN8XV@q<a0VR!}gu;V+Z$YlOVBI111#d81^>T{^A`5Cpc)St|R z^HIqcKrLh~*2hhlj(@^zJo^*zuS=oP&t|4wuom?R7|UAJN>(`aEm)EIG3<vYu?FT? zuGlH)j~%IBg_^)RY=}ot6Zjq#i8?M<?AI_iOrabN<4~cQg6eP{D*NxkF8D0Q;~7-) ze1#eKBWi+noGbRX;@+4@eGxXsWvCnS1?-D2qqeGCyepOi;jR=E$^ocQj>a4;Lap## z?2SiJNtBUbCN>ilxy7h~9!DDwIQ7%mntE!YS#eL)Ju(TEGq)j07`CDm)WLS=gO8nh zrE+Ga*{G0rLY;=*s0oinb>zl6cpGZv4`C-<hc<qUBQU<aiP#uaq~~BAo&Tj2hSRV< z*1&rJ)}~&gf(cz~)G5hDZAo9OhBGl4=c8778|t)dMosJ$R0L09OKexsM0N@)M;2o< z#<yOhp!0YJwZikLtW8cbHbD)Thx&X7Dmka1Ci*+n^Q%$0^B8KPFQRhgI2PbvP&qTA zl4%cO?Dzi~3OdiXVIFQo8&6?ROs;GuG91;R2X&16s0rPUn$Z2&0(YYZI*nR+N)_{Y zHylU35WC~HDz0!W6z6GJKtsD^vyzRd8}LQc-oJqg@w=!F%T+bUD+hI~@=+_k4wvI2 zj@_%dVlS)jptfp8byw_f#dA={@K4plX60vSPzQBVT(JwOJ5HfK6LnnnVgvjcmGuo$ z&9Uu-`n(6K!%|GdC8&#SIV$USIiH_J9oH%~jM-rd+Ut={LlG*(x1vtPQq+n!VeH~T zh5RJyqWTH@V9lDY*uNvj<CWCcqxL+ZmMivWycyV;`Zm;k@(pUM!fp9Gt2&&7>M(%1 z2Nt4Mw9;`CYER!nP55iaN_9*wG(z>$9hH<LQODGax(Q2BSMDQdCH1l|chB-n_xd8= zwp`q@ueZ>i7bvw0X1M)D9y>I{V+ZH?L+-iu^pe1AyKUB7I~1_nWzFpoU9@^ia^!gD zltjBQ;P*uSwtiN0)f4qyk!QQy5H9e!gTWS7)1ckFPpejTLBL<&DGps|@c2t-Ut05& zxI=-G3vJU&{RJU!z<;4-wr6&}=b~?f<`sJ`d|K-N`<L@eBR#t=iGJDj>G;c9+QR}N zPoC`$_%nNr?lWkRUFezaF7<`%GPkePV;7eM%Djb<RU3OnAMV*Xp;IC2^%nWP{vvz2 z+w1cbT73dOpSw7y_Cim-yM%_>v)%qex(wOV1Ev1LJiBQydb0033DI+d4#cH+e8slc zU+9_ZDRKIU?ijko752G9p1D&C0|lkCJ^oNI%Uv3p5#TH8!frm>TQno2K!x01|3%Yf zBT9l<_6VQH%^XVg{~1|XSs5DMtpG7rFywI;wqP11)*wIYVh?{kSjamv<n#P{2a6UD zYZagD&vg5WXSnk{A#Z`(7g;f~sNAqp?NsE)k@v+78XB2AIwNxLs2$Pp=++65dRN{O zO&dSfRk3LyX)~L(MrIypc2RBRf#DZw8z(MvHS`oJ<=l2KRKm8jwte1U$PP?*>cPk} zlb);6+V;#X_7sF--;EYe9_tFv&_3h`0<&yykQmubn+Hlmh2D}D!K@_Z1i9@F*>eK^ zW+6M@W4rSS595@1J#%bt$S(E!Ji%b>EEJc9)IuK%vWI%}OWY;%vimyQ7~6vEff|dw z)K<8CK7BiluXB(}Y<F?7kI2NfDxa<Pc_PoewWH;14^s|#{6TGD(-MN=3C2>Y#1kwI zkP!uek`h+rn-`gNuq=9J>gTSonVimKY;l}fPhL_Jd-g1rWoH)KO$H9XykB;fFTh4* z2T2@HcA=+C-_2Gaf_&HKw=;uwlM&<kW?u-%KYftza!?x0WIip_i_@z$CQul##+11I zLGmq75{Mpq`zlxDih?y^yTGk1o}&X+pg?NYgGUb^W^2~J-VkfNuAJX^qS#w7OKJPh zo+&By+Zk6Ca8#Kh5e*l4{N_f<u;+L~Gh)MMT{WYiSQFAZVtrnk7fP*J$_sB$VZErk zzxQ@g7MYlski>dU8slUSOATMTLtKU=t=k{6GcU}sKa2X`^mj>2w7!93E+1;gGHqO- zWL9uSp!lMt%?K4=yrLn$q<XBE*`=JApeGc|MUV1fs>#Hu+!Xnq>46fDonPwp73$jS zMZS8>I2;&qKYF$xH$H(o$Br~D3XR|bo9f)5Q>XjfMeL;#cMeHWOu}->6<%^(am|q> z7oG_eYlD;lv1=<Ua(B`0=mRrax>94qy9;9JQtU4BFl1zpcWFGAV#NPp-Kh7&Yh7j@ zpB|kQZR2YfpB(b~OUWjVke|~OnGo<-4kk?uh6<Vb<fNvNMkl(OCnle$8?XM#PV|cP zx9)^pC3a4{S952OUy&^*&PL{5^?G#Ur#Ht(63bRsxwxZX<f*cZU$uN#*1Vc?5LgWN zz54&LtY@v+#foDv6eyk(DB&t*>-ACK<n56YbGk;J{7aw6wz-c+Z=9FoipI_F?~2U3 z=I7+tiT<S<JL0>xBzpeZ<MGk)-}H1v2HyC2Wc*F3W+}d#=4&a@&u+>|h)llqWVFw1 zMXq#OY>N#jcI%epI{D>iM*Ft?_F=I{D&O&lE3)U#vgL8{uDs~_yQaA6J3n@@;dM#G z`U%eR7Hbias*7(;^!iDHi2L>0(ItxyB}P`=lNL=_ezPn3;EL`pmmTR|k{8)|Zv#q; ze(a}GqFoa3d6xG|bk&VaE2$GXcJHH+#Vc#14f0P9WN{b9qG4NeO1$h|kv(R3pGah7 zquA~|yRvER3kT$qqZ--2GNVc?KCwJkKtEmCIehVHrtOzrW2?}6%p5P*vEO5UL(Jnk z-{yG6ejRi@<R#hshFkyefL;Y+_rY&}e?&<nXVsYYoif{W%50lsx5>%N$!*o9bDK6v zBZg;=@|1aXxo7s}NaWdV+vJ$<wXt(L<mI%FZdrB6^{>5d%}l=JRqJV2I1s!#wCe%i zybG^Ezxk%+DcSWvfp=H*!q@cvrPfPdxpr+UDk|Hx&VNyVAvY}#_(FlJFMd3<YeR8q zutoCUU+`jYUy;k7d@}N7*JyP2Q#Joj-@Kx$HZF^g9PV>{<k?NPruGT^!~0jH>*lnY zzx~QJcJre6=!Ah4U6Hd}3nS+SO^=@1_HkTl?23$S^@SI(13QlXKllO`DIT^idil-= z;;IcJ&n|flJN1hH!fV*r$dkJ#{_-kTanHNaimzT7A6a`vYIMQAmaf=4S=|1q|Nour zUwkL~_~1#7;D7g}ta<EZ=F*okkKga*Uje(Kzj`%GjSK&;-n0HgZ)Rcc!@s{v{TJTM z!vFB@{GWX@8+PHHJL})^W_IpScjwJ4=e@H3dv9hne&fx|inyPy6*>7q_#a=-qMsgZ z7a#f7KQt0N-uU16iWc2+V!P`<@qYGIbmyrH?`9h!#b?L-`u*(rvsdwcmKPtn?(3)Y zjuv<E``NTer|;5ZFEpRsG&lPCce~?xPg@Wf^HXtRz*p$@{qr}rW!+sv)xmSOxi;#J zt=97Cajv4xytY01ufDRabuE9hoU1`}@X{4=n-^Aeg<X1uizF=XwE5jiu92?DgDb9F Tes2}mXaDVYxoiKc?{fbGEJ2-~ diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index c9bd16a43..93883e891 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,12 +7,13 @@ # Molnár Dénes <denes.molnar2@stud.uni-corvinus.hu>, 2017 # Peter Schön <slapec@gmail.com>, 2018 # Tibor Toth <szunyog@gmail.com>, 2013,2015 +# Tibor Toth <szunyog@gmail.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" "MIME-Version: 1.0\n" @@ -22,24 +23,24 @@ msgstr "" "Language: hu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" +msgstr "a konfigurációs mappa nem tartalmazza a conf.py állományt (%s)" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" -msgstr "" +msgstr "A forrás mappa nem található (%s)" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" -msgstr "" +msgstr "A forrás és cél mappa nem lehet azonos" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" -msgstr "" +msgstr "Sphinx %s verzió futtatása" #: sphinx/application.py:214 #, python-format @@ -49,95 +50,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " -msgstr "" +msgstr "fordítások betöltése [%s]..." -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" -msgstr "" +msgstr "kész" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" -msgstr "" +msgstr "sikertelen: %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" -msgstr "" +msgstr "sikerült" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" -msgstr "" +msgstr "problémákkal befejeződött" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -145,7 +134,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -153,60 +142,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -214,833 +197,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "%s. bekezdés" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "%s. ábra" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "%s. táblázat" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "%s. felsorlás" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Fejlesztési Javaslatok; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Beépített" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Modul szint" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Általános tárgymutató" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "nyitóoldal" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "következő" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "előző" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentáció" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1054,188 +926,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Tárgymutató" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Kiadás" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1254,253 +1148,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1508,11 +1396,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1520,25 +1408,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1548,15 +1436,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1567,22 +1455,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1591,36 +1479,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1628,29 +1516,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1658,26 +1546,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1687,214 +1575,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." -msgstr "" +msgstr "A megadott útvonal nem egy mappa vagy a sphinx állományok már léteznek." -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Fejezet szerző: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Modul szerző: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Kód szerző: " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Szerző: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Paraméterek" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Visszatérési érték" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Visszatérés típusa" @@ -1923,12 +1811,12 @@ msgstr "%s (C típus)" msgid "%s (C variable)" msgstr "%s (C változó)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "függvény" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "tag" @@ -1936,7 +1824,7 @@ msgstr "tag" msgid "macro" msgstr "makró" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "típus" @@ -1944,297 +1832,262 @@ msgstr "típus" msgid "variable" msgstr "változó" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Új a(z) %s verzióban" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "A %s verzióban változott" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Elavult a(z) %s verzió óta" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "Sablonparaméterek" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Dob" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ típus)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++ tagváltozó)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++ függvény)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++ osztály)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (C++ enumeráció)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (C++ enumerátor)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "osztály" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "enumeráció" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "enumerátor" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (beépített függvény)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metódus)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (osztály)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globális változó vagy konstans)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribútum)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Argumentum" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "metódus" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "adat" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "attribútum" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "kulcsszó" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operátor" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "objektum" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "kivétel" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "utasítás" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "beépített függvény" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Változók" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Kivétel" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modulban)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (beépített változó)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modulban)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (beépített osztály)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (osztály %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metódus)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statikus metódus)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statikus metódus)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s osztály metódus)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s osztály metódus)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attribútum)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Python Modul Mutató" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "modulok" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Elavult" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "osztály szintű metódus" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "statikus metódus" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (elavult)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (direktíva)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (szerepkör)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "direktíva" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "szerepkör" @@ -2243,209 +2096,200 @@ msgstr "szerepkör" msgid "environment variable; %s" msgstr "környezeti változó; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%sparancssor opció; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "szójegyzék" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "nyelvtani jel" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "referencia cimke" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "környezeti változó" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "program opció" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Tárgymutató" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Modulok" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Keresés" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" -msgstr "" +msgstr "forrás mappa megváltozott" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "lásd %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "lásd még %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Szimbólumok" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2457,352 +2301,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." -msgstr "" +msgstr "%s nem mappa" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[source]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Tennivaló" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "eredeti bejegyzés" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Modul forráskód" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>%s forráskódja</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Áttekintés: modul forráskód" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Az összes modul, melynek forrása elérhető</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2810,66 +2683,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "álneve :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2884,106 +2776,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Figyelem" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Figyelem" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Veszély" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Hiba" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Tipp" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Fontos" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Megjegyzés" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Lásd még" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Javaslat" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Figyelem" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "folytatás az előző oldalról" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "A következő oldalon folytatódik" @@ -3002,7 +2894,7 @@ msgstr "Keresés" msgid "Go" msgstr "Ok" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Forrás megtekintése" @@ -3151,13 +3043,13 @@ msgstr "keresés" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Keresési Eredmények" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3199,36 +3091,36 @@ msgstr "C API változások" msgid "Other changes" msgstr "Egyéb változások" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Hivatkozás erre a fejezetcímre" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Hivatkozás erre a definícióra" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Keresési Találatok Elrejtése" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Keresés folyamatban" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Felkészülés a keresésre..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "A keresés befejeződött, %s oldal egyezik a keresési felételeknek." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", " @@ -3245,76 +3137,89 @@ msgstr "Oldalsáv összezárása" msgid "Contents" msgstr "Tartalom" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3328,140 +3233,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Permalink erre a táblázatra" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Permalink erre a kódrészletre" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Permalink erre a képre" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Kiadás" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "oldal" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Lábjegyzetek" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[image: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.js b/sphinx/locale/id/LC_MESSAGES/sphinx.js index 2e697b1bd..7f5cc64f7 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "id", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Hak cipta</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Hak cipta %(copyright)s.", ", in ": ", di", "About these documents": "Tentang dokumen ini", "Automatically generated list of changes in version %(version)s": "Daftar perubahan dibuat otomatis untuk versi %(version)s", "C API changes": "Perubahan API C", "Changes in Version %(version)s — %(docstitle)s": "Perubahan pada Versi %(version)s — %(docstitle)s", "Collapse sidebar": "Tutup sidebar", "Complete Table of Contents": "Daftar Isi Lengkap", "Contents": "Konten", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Dibuat menggunakan <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Buka sidebar", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Dari sini dapat dilakukan pencarian pada dokumentasi. Masukkan\n kata yang dicari pada kotak dibawah dan klik \"search\". Catatan untuk fungsi pencarian\n akan secara otomatis mencari semua kata. Halaman\n yang berisi kata yang sedikat tidak dimunculkan pada daftar hasil.", "Full index on one page": "Index penuh dalam satu halaman", "General Index": "Indeks Umum", "Global Module Index": "Index Modul Global", "Go": "Go", "Hide Search Matches": "Sembunyikan Hasil Pencarian", "Index": "Indeks", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Index halaman berdasarkan huruf", "Indices and tables:": "Index dan tabel:", "Last updated on %(last_updated)s.": "Terakhir diperbarui pada %(last_updated)s.", "Library changes": "Perubahan library", "Navigation": "Navigasi", "Next topic": "Topik berikutnya", "Other changes": "Perubahan lain", "Overview": "Tinjauan", "Permalink to this definition": "Link permanen untuk definisi ini", "Permalink to this headline": "Link permanen untuk headline ini", "Please activate JavaScript to enable the search\n functionality.": "Tolong aktifkan JavaScript untuk melakukan pencarian.\n ", "Preparing search...": "Penyiapkan pencarian...", "Previous topic": "Topik sebelum", "Quick search": "Pencarian cepat", "Search": "Pencarian", "Search Page": "Pencarian Halaman", "Search Results": "Hasil Pencarian", "Search finished, found %s page(s) matching the search query.": "Pencarian selesai, menemukan %s halaman yang cocok dengan kueri pencarian.", "Search within %(docstitle)s": "Pencarian dalam %(docstitle)s", "Searching": "Pencarian", "Show Source": "Lihat Sumber", "Table of Contents": "", "This Page": "Halaman Ini", "Welcome! This is": "Selamat Datang! Ini adalah", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Tidak ada dokumen yang cocok dengan pencarian anda. Pastikan semua kata ditulis dengan benar dan sudah memilih cukup kategori.", "all functions, classes, terms": "semua fungsi, class, term", "can be huge": "dapat menjadi besar", "last updated": "terakhir diperbarui", "lists all sections and subsections": "daftar semua seksi dan subseksi", "next chapter": "bab berikutnya", "previous chapter": "bab sebelum", "quick access to all modules": "akses cepat semua modul", "search": "pencarian", "search this documentation": "pencarian pada dokumentasi ini", "the documentation for": "dokumentasi untuk"}, "plural_expr": "0"}); +Documentation.addTranslations({"locale": "id", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Hak cipta</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Hak cipta %(copyright)s.", ", in ": ", di", "About these documents": "Tentang dokumen ini", "Automatically generated list of changes in version %(version)s": "Daftar perubahan dibuat otomatis untuk versi %(version)s", "C API changes": "Perubahan API C", "Changes in Version %(version)s — %(docstitle)s": "Perubahan pada Versi %(version)s — %(docstitle)s", "Collapse sidebar": "Tutup sidebar", "Complete Table of Contents": "Daftar Isi Lengkap", "Contents": "Konten", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Dibuat menggunakan <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Buka sidebar", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Dari sini dapat dilakukan pencarian pada dokumentasi. Masukkan\n kata yang dicari pada kotak dibawah dan klik \"search\". Catatan untuk fungsi pencarian\n akan secara otomatis mencari semua kata. Halaman\n yang berisi kata yang sedikat tidak dimunculkan pada daftar hasil.", "Full index on one page": "Index penuh dalam satu halaman", "General Index": "Indeks Umum", "Global Module Index": "Index Modul Global", "Go": "Go", "Hide Search Matches": "Sembunyikan Hasil Pencarian", "Index": "Indeks", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Index halaman berdasarkan huruf", "Indices and tables:": "Index dan tabel:", "Last updated on %(last_updated)s.": "Terakhir diperbarui pada %(last_updated)s.", "Library changes": "Perubahan library", "Navigation": "Navigasi", "Next topic": "Topik berikutnya", "Other changes": "Perubahan lain", "Overview": "Tinjauan", "Permalink to this definition": "Link permanen untuk definisi ini", "Permalink to this headline": "Link permanen untuk headline ini", "Please activate JavaScript to enable the search\n functionality.": "Tolong aktifkan JavaScript untuk melakukan pencarian.\n ", "Preparing search...": "Penyiapkan pencarian...", "Previous topic": "Topik sebelum", "Quick search": "Pencarian cepat", "Search": "Pencarian", "Search Page": "Pencarian Halaman", "Search Results": "Hasil Pencarian", "Search finished, found %s page(s) matching the search query.": "Pencarian selesai, menemukan %s halaman yang cocok dengan kueri pencarian.", "Search within %(docstitle)s": "Pencarian dalam %(docstitle)s", "Searching": "Pencarian", "Show Source": "Lihat Sumber", "Table of Contents": "", "This Page": "Halaman Ini", "Welcome! This is": "Selamat Datang! Ini adalah", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Tidak ada dokumen yang cocok dengan pencarian anda. Pastikan semua kata ditulis dengan benar dan sudah memilih cukup kategori.", "all functions, classes, terms": "semua fungsi, class, term", "can be huge": "dapat menjadi besar", "last updated": "terakhir diperbarui", "lists all sections and subsections": "daftar semua seksi dan subseksi", "next chapter": "bab berikutnya", "previous chapter": "bab sebelum", "quick access to all modules": "akses cepat semua modul", "search": "pencarian", "search this documentation": "pencarian pada dokumentasi ini", "the documentation for": "dokumentasi untuk"}, "plural_expr": "0"}); \ No newline at end of file diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index 4174079bb497eadc3873c616943b22fa01355dc3..8dcddfb2ab3b65622f03e6fad9841b2fd2574b4a 100644 GIT binary patch literal 70347 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 D)mN%~ delta 16566 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 H@5%oL5+Moi diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 638d3d875..6c92de739 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -1,17 +1,18 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: # Arif Budiman <arifpedia@gmail.com>, 2016-2017 # FIRST AUTHOR <EMAIL@ADDRESS>, 2009 # Sakti Dwi Cahyono <54krpl@gmail.com>, 2013,2015 +# Tumpal Gemelli, 2018 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" "MIME-Version: 1.0\n" @@ -21,1220 +22,1113 @@ msgstr "" "Language: id\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" +msgstr "direktori konfigurasi tidak berisi berkas conf.py (%s)" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" -msgstr "" +msgstr "Tidak dapat menemukan direktori sumber (%s)" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" -msgstr "" +msgstr "Direktori sumber dan direktori tujuan tidak boleh sama" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" -msgstr "" +msgstr "Menjalankan Sphinx v%s" #: sphinx/application.py:214 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." -msgstr "" +msgstr "Proyek ini memerlukan sedikitnya Sphinx v%s dan maka itu tidak bisa dibangun dengan versi ini." #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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 "" +msgstr "'setup' yang saat ini didefinisikan pada conf.py bukanlah sebuah Python callable. Silakan modifikasi definisinya untuk membuatnya menjadi fungsi callable. Hal ini diperlukan guna conf.py berjalan sebagai ekstensi Sphinx." -#: sphinx/application.py:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " -msgstr "" +msgstr "memuat terjemahan [%s]... " -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" -msgstr "" +msgstr "selesai" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" +msgstr "tidak tersedia untuk built-in messages" + +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " -msgstr "" - -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" -msgstr "" +msgstr "gagal: %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" -msgstr "" +msgstr "Tidak ada builder yang dipilih, menggunakan default: html" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" -msgstr "" +msgstr "berhasil" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" -msgstr "" +msgstr "selesai with masalah" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." -msgstr "" +msgstr "build %s, %s peringatan." -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." -msgstr "" +msgstr "build %s." -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " "assuming it isn't - please ask the extension author to check and make it " "explicit" -msgstr "" +msgstr "ekstensi %s tidak akan dinyatakan jika itu aman untuk pembacaan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " "assuming it isn't - please ask the extension author to check and make it " "explicit" -msgstr "" +msgstr " \nekstensi %s tidak akan dinyatakan jika itu aman untuk penulisan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" -msgstr "" +msgstr "mengerjakan serial %s" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" -msgstr "" +msgstr "tidak dapat menulis ulang pengaturan direktori konfigurasi %r, mengabaikan (gunakan %r untuk mengatur elemen-elemen satuan)" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" -msgstr "" +msgstr "nomor %r yang salah untuk konfigurasi nilai %r, mengabaikan" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" -msgstr "" +msgstr "tidak dapat menulis ulang pengaturan konfigurasi %r dengan tipe yang tidak didukung, mengabaikan" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" -msgstr "" +msgstr "nilai konfigurasi %r yang tidak dikenal pada penulisan ulang, mengabaikan" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" -msgstr "" +msgstr "Tidak terdapat nilai konfigurasi demikian: %s" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" -msgstr "" +msgstr "Nilai konfigurasi %r sudah ada" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" -msgstr "" +msgstr "Berkas konfigurasi (atau salah satu dari modul terimpor) disebut sys.exit()" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" "\n" "%s" -msgstr "" +msgstr "Terdapat kesalahan programmable dalam berkas konfigurasi anda:\n\n%s" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "Bab %s" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "Gambar. %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Daftar %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." -msgstr "" - -#: sphinx/config.py:459 -msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " -"{permitted}." -msgstr "" +msgstr "Nilai konfigurasi `{name}` harus salah satu dari {candidates}, tapi `{current}` diberikan." #: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', defaults to " -"`{default.__name__}'." +"The config value `{name}' has type `{current.__name__}'; expected " +"{permitted}." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:478 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "Nilai konfigurasi `{name}` bertipe `{current.__name__}', default menjadi `{default.__name__}'." + +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." +msgstr "nilai konfigurasi %r diatur sebagai string dengan karakter non-ASCII; hal ini dapat berpotensi terjadinya galat Unicode. Silakan pakai string Unicode, sebagai contoh %r." + +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "primary_domain %r tidak ditemukan, diabaikan." + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:58 +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" -msgstr "" +msgstr "Event %r sudah ada" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" -msgstr "" +msgstr "Nama event tidak dikenal: %s" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." -msgstr "" +msgstr "Ekstensi %s diperlukan oleh pengaturan needs_extensions, tapi itu tidak dimuat." -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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 "" +msgstr "Proyek ini memerlukan ekstensi %s sedikitnya pada versi %s dan maka itu tidak bisa dibangun dengan versi yang dimuat (%s)." -#: sphinx/highlighting.py:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" -msgstr "" +msgstr "Nama Pygments lexer %r tidak diketahui" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." +msgstr "Tidak dapat menjalankan lex literal_block sebagai \"%s\". Menyoroti yang terlewat." + +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" -msgstr "" - -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" -msgstr "" +msgstr "Class Builder %s tidak punya atribut \"name\"" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" -msgstr "" +msgstr "Builder %r sudah ada (di modul %s)" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" -msgstr "" +msgstr "Nama Builder %s todal terdaftar atau tersedia melalui entry point" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" -msgstr "" +msgstr "Nama Builder %s tidak terdaftar" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" -msgstr "" +msgstr "domain %s telah terdaftar" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" -msgstr "" +msgstr "domain %s belum didaftarkan" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" -msgstr "" +msgstr "object_type %r telah didaftarkan" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" -msgstr "" +msgstr "crossref_type %r telah didaftarkan" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" -msgstr "" +msgstr "source_suffix %r telah didaftarkan" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" -msgstr "" +msgstr "source_parser untuk %r telah didaftarkan" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" -msgstr "" +msgstr "Parser sumber untuk %s tidak terdaftar" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" -msgstr "" +msgstr "source_input untuk %r telah didaftarkan" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" -msgstr "" +msgstr "kwargs untuk add_node() harus berupa (visit, depart) function tuple: %r=%r" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" -msgstr "" +msgstr "enumerable_node %r telah terdaftar" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" -msgstr "" +msgstr "math renderer %s telah terdaftar" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." -msgstr "" - -#: sphinx/registry.py:474 -msgid "Original exception:\n" -msgstr "" +msgstr "ekstensi %r telah digabungkan dengan Sphinx sejak versi %s; ekstensi diabaikan." #: sphinx/registry.py:475 +msgid "Original exception:\n" +msgstr "Eksepsi orisinal:\n" + +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" -msgstr "" +msgstr "Tidak dapat mengimpor ekstensi %s" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" -msgstr "" +msgstr "ekstensi %r tidak memiliki fungsi setup(); apa itu benar-benar sebuah modul ekstensi Sphinx?" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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 "" +msgstr "Ekstensi %s yang digunakan proyek ini memerlukan sedikitnya Sphinx v%s; maka itu tidak bisa dibangun dengan versi ini." -#: sphinx/registry.py:495 +#: sphinx/registry.py:496 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" -msgstr "" +msgstr "ekstensi %r mengembalikan objek yang tidak didukung dari fungsi setup() nya; seharusnya mengembalikan None atau dictionary metadata" -#: sphinx/roles.py:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" -msgstr "" +msgstr "tema %r tidak memiliki pengaturan \"tema\"" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" -msgstr "" +msgstr "tema %r tidak memiliki pengaturan \"inherit\"" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" -msgstr "" +msgstr "tema berjudul %r tidak ditemukan, inherited oleh %r" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" -msgstr "" +msgstr "pengaturan %s.%s terjadi pada tak satupun konfigurasi tema yang dicari" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" -msgstr "" +msgstr "opsi tema yang tidak didukung %r diberikan" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" -msgstr "" +msgstr "berkas %r pada path tema merupakan berkas zip yang tidak valid atau tidak berisi tema" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" -msgstr "" +msgstr "sphinx_rtd_theme bukan lagi merupakan dependensi bawaan sejak versi 1.4.0. Silakan memasangnya secara manual.(pip install sphinx_rtd_theme)" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" -msgstr "" +msgstr "tema bernama %r tidak ditemukan (kehilangan theme.conf?)" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" -msgstr "" +msgstr "gambar yang sesuai untuk builder %s tidak ditemukan: %s (%s)" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" -msgstr "" +msgstr "gambar yang sesuai untuk builder %s tidak ditemukan: %s" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " -msgstr "" +msgstr "membangun [mo]: " -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " -msgstr "" +msgstr "menulis keluaran... " -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" -msgstr "" +msgstr "semua dari %d berkas po" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" -msgstr "" +msgstr "target untuk %d berkas po yang telah ditetapkan" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" -msgstr "" +msgstr "target untuk %d berkas po telah usang" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" -msgstr "" +msgstr "semua berkas sumber" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" -msgstr "" +msgstr "berkas %r yang diberikan di command line tidak berada dalam direktori sumber, mengabaikan" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" -msgstr "" +msgstr "berkas %r yang diberikan di command line tidak tersedia, mengabaikan" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" -msgstr "" +msgstr "%d berkas sumber diberikan di command line" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" -msgstr "" +msgstr "target untuk %d berkas sumber yang telah usang" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" -msgstr "" +msgstr "membangun [%s]" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " -msgstr "" +msgstr "mencari berkas yang kini-usang... " -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" -msgstr "" +msgstr "%d ditemukan" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" +msgstr "tidak ditemukan apapun" + +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " -msgstr "" - -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." +msgstr "tidak ada target yang usang." + +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "menunggu workers..." + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" +msgstr "docnames yang akan ditulis: %s" + +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." -msgstr "" +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "menyalin gambar... " -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" -msgstr "" +msgstr "tidak dapat membaca berkas gambar %r: menyalin gambar sebagai gantinya" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" -msgstr "" +msgstr "tidak dapat menyalin berkas gambar %r: %s" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" +msgstr "tidak dapat menulis berkas gambar %r: %s" + +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" -msgstr "" - -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." -msgstr "" +msgstr "menulis %s berkas..." -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" -msgstr "" +msgstr "mimetype yang tidak dikenal untuk %s, mengabaikan" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." -msgstr "" +msgstr "Berkas tinjauan berada di %(outdir)s." -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." +msgstr "tidak ada pengubahan dalam versi %s." + +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Modul Internal" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Level Modul" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." -msgstr "" +msgstr "menyalin berkas sumber..." -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" -msgstr "" +msgstr "tidak dapat membaca %r untuk pembuatan changelog" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." -msgstr "" +msgstr "Builder contoh tidak menghasilkan berkas apapun." -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." -msgstr "" +msgstr "Berkas ePub berada di %(outdir)s." -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" -msgstr "" +msgstr "nilai conf \"epub_language\" (atau \"language\") tidak seharsunya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" -msgstr "" +msgstr "nilai conf \"epub_uid\" harus berupa XML NAME untuk EPUB3" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" -msgstr "" +msgstr "nilai conf \"epub_title\" (atau \"html_title\") tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" -msgstr "" +msgstr "nilai conf \"epub_author\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" -msgstr "" +msgstr "nilai conf \"epub_contributor\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" -msgstr "" +msgstr "nilai conf \"epub_description\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" -msgstr "" +msgstr "nilai conf \"epub_publisher\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" -msgstr "" +msgstr "nilai conf \"epub_copyright\" (atau \"copyright\") tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" -msgstr "" +msgstr "nilai conf \"epub_identifier\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" -msgstr "" +msgstr "bilai conf \"version\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" -msgstr "" +msgstr "css_file yang salah: %r, mengabaikan" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." -msgstr "" +msgstr "Katalog pesan berada di %(outdir)s." -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " -msgstr "" +msgstr "membangun [%s]: " -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" -msgstr "" +msgstr "target untuk %d berkas templat" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " -msgstr "" +msgstr "membaca templat... " -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " -msgstr "" +msgstr "menulis katalog pesan... " -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" -msgstr "" +msgstr "berkas info build rusak: %r" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." -msgstr "" +msgstr "Halaman HTML berada di %(outdir)s." -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" -msgstr "" +msgstr "Gagal membaca berkas info build: %r" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" -msgstr "" +msgstr "nilai konfigurasi html_use_opensearch harus berupa sebuah string" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indeks Umum" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "index" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "berikut" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "sebelum" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." -msgstr "" +msgstr "menghasilkan indeks..." -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." -msgstr "" +msgstr "menulis halaman tambahan..." -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " -msgstr "" +msgstr "menyalin berkas yang dapat diunduh... " + +#: sphinx/builders/html.py:788 +#, python-format +msgid "cannot copy downloadable file %r: %s" +msgstr "tidak dapat menyalin berkas yang dapat diunduh %r: %s" + +#: sphinx/builders/html.py:795 +msgid "copying static files... " +msgstr "menyalin berkas statik... " + +#: sphinx/builders/html.py:830 +#, python-format +msgid "html_static_path entry %r does not exist" +msgstr "entri html_static_path %r tidak ada" + +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#, python-format +msgid "logo file %r does not exist" +msgstr "berkas logo %r tidak ada" + +#: sphinx/builders/html.py:847 +#, python-format +msgid "favicon file %r does not exist" +msgstr "berkas favicon %r tidak ada" + +#: sphinx/builders/html.py:854 +#, python-format +msgid "cannot copy static file %r" +msgstr "tidak dapat menyalin berkas statik %r" + +#: sphinx/builders/html.py:860 +msgid "copying extra files... " +msgstr "menyalin berkas ekstra... " + +#: sphinx/builders/html.py:866 +#, python-format +msgid "html_extra_path entry %r does not exist" +msgstr "entri html_extra_path %r tidak ada" #: sphinx/builders/html.py:872 #, python-format -msgid "cannot copy downloadable file %r: %s" -msgstr "" - -#: sphinx/builders/html.py:879 -msgid "copying static files... " -msgstr "" - -#: sphinx/builders/html.py:914 -#, python-format -msgid "html_static_path entry %r does not exist" -msgstr "" - -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 -#, python-format -msgid "logo file %r does not exist" -msgstr "" - -#: sphinx/builders/html.py:931 -#, python-format -msgid "favicon file %r does not exist" -msgstr "" - -#: sphinx/builders/html.py:940 -#, python-format -msgid "cannot copy static file %r" -msgstr "" - -#: sphinx/builders/html.py:946 -msgid "copying extra files... " -msgstr "" - -#: sphinx/builders/html.py:952 -#, python-format -msgid "html_extra_path entry %r does not exist" -msgstr "" - -#: sphinx/builders/html.py:958 -#, python-format msgid "cannot copy extra file %r" -msgstr "" +msgstr "tidak dapat menyalin berkas ekstra %r" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" -msgstr "" +msgstr "Gagal menulis berkas info build: %r" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." -msgstr "" +msgstr "indeks pencarian tidak dapat dimuat, tapi tidak semua dokumen akan dibangun: indeks akan jadi tidak lengkap." -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" -msgstr "" +msgstr "halaman %s sebanding dengan dua pola dalam html_sidebars: %r dan %r" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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 "" +msgstr "kesalahan Unicode terjadi saat render halaman %s. Silakan pastikan semua nilai konfigurasi yang berisi konten non-ASCII adalah string Unicode." -#: sphinx/builders/html.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" -msgstr "" +msgstr "Kesalahan terjadi saat render halaman %s.\nAlasan: %r" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" -msgstr "" +msgstr "kesalahan menulis berkas %s: %s" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " -msgstr "" +msgstr "membuang inventori obyek... " -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " -msgstr "" +msgstr "membuang indeks pencarian di %s ... " -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" -msgstr "" +msgstr "js_file yang salah: %r, mengabaikan" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." -msgstr "" +msgstr "Banyak math_renderers teregistrasi. Namun tidak satu pun math_renderer yang dipilih." -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." -msgstr "" +msgstr "math_renderer %r yang tidak diketahui diberikan." -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "dokumentasi %s %s" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" -msgstr "" +msgstr "Mencari kesalahan sembarang dalam keluaran di atas atau di %(outdir)s/output.txt" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" -msgstr "" +msgstr "Anchor '%s' tidak ditemukan" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" -msgstr "" +msgstr "tautan rusak: %s (%s)" #: sphinx/builders/manpage.py:43 #, python-format msgid "The manual pages are in %(outdir)s." -msgstr "" +msgstr "Halaman manual berada di %(outdir)s." #: sphinx/builders/manpage.py:51 msgid "no \"man_pages\" config value found; no manual pages will be written" +msgstr "tidak ditemukan nilai konfigurasi \"man_pages\"; halaman manual tidak akan ditulis" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." +msgstr "Halaman HTML berada di %(outdir)s." + +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." -msgstr "" +msgstr "Berkas Texinfo berada di %(outdir)s." -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." -msgstr "" +msgstr "\nJalankan 'make' di direktori tersebut untuk menjalankannya melalui makeinfo\n(gunakan 'make info' di sini untuk melakukannya secara otomatis)." -#: sphinx/builders/texinfo.py:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" -msgstr "" +msgstr "tidak ditemukan nilai konfigurasi \"texinfo_documents\"; dokumen tidak akan ditulis" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" -msgstr "" +msgstr "nilai konfigurasi \"texinfo_documents\" mereferensikan dokumen yang tidak dikenal %s" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." -msgstr "" +msgstr "memecahkan referensi..." -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (dalam " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." -msgstr "" +msgstr "Berkas teks berada di %(outdir)s." -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." -msgstr "" +msgstr "Berkas XML berada di %(outdir)s." -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." -msgstr "" +msgstr "Berkas pseudo-XML berada di %(outdir)s." -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." -msgstr "" +msgstr "Berkas LaTeX berada di %(outdir)s." -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." -msgstr "" +msgstr "\nJalankan 'make' di direktori tersebut untuk menjalankannya melalui (pdf)latex\n(gunakan 'make latexpdf' di sini untuk melakukannya secara otomatis)." -#: sphinx/builders/latex/__init__.py:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" -msgstr "" +msgstr "tidak ditemukan nilai konfigurasi \"latex_documents\"; dokumen tidak akan ditulis" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" +msgstr "nilai konfigurasi \"latex_documents\" mereferensikan dokumen yang tidak dikenal %s" + +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Indeks" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Rilis" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." +msgstr "menyalin berkas pendukung TeX... " + +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." -msgstr "" - -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." -msgstr "" +msgstr "Kunci konfigurasi tak dikenal: latex_elements[%r]. diabaikan." -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" -msgstr "" +msgstr "Eksepsi terjadi saat membangun, memulai debugger:" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" -msgstr "" +msgstr "terjadi gangguan!" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" -msgstr "" +msgstr "markup reST salah:" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" -msgstr "" +msgstr "Kesalahan encoding:" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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 "" +msgstr "Traceback lengkap telah disimpan di %s, bila ingin melaporkan masalah ini kepada developer." -#: sphinx/cmd/build.py:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" -msgstr "" +msgstr "Kesalahan recursion:" -#: sphinx/cmd/build.py:70 +#: 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 "" +msgstr "Hal ini dapat terjadi dengan berkas sumber yang besar atau sangat dalam bertingkat. Anda dapat secara hati-hati meningkatkan batas standar recursi Python dari 1000 di conf.py contohnya:" -#: sphinx/cmd/build.py:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" -msgstr "" +msgstr " import sys; sys.setrecursionlimit(1500)" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" -msgstr "" +msgstr "Terjadi eksepsi:" -#: sphinx/cmd/build.py:81 +#: 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 "" +msgstr "Mohon juga melaporkan hal ini jika sebuah kesalahan pengguna sehingga lain kali perintah salah yang lebih baik dapat disediakan." -#: sphinx/cmd/build.py:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" -msgstr "" +msgstr "Laporan bug dapat diisi pada tracker di <https://github.com/sphinx-doc/sphinx/issues>. Terima kasih!" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" -msgstr "" +msgstr "job number seharusnya sebuah bilangan positif" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." -msgstr "" +msgstr "Untuk informasi lebih banyak, kunjungi <http://sphinx-doc.org/>." -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1251,293 +1145,287 @@ msgid "" "\n" "By default, everything that is outdated is built. Output only for selected\n" "files can be built by specifying individual filenames.\n" -msgstr "" +msgstr "\nMenghasilkan dokumentasi ari berkas sumber.\n\nsphinx-build menghasilkan dokumentasi dari berkas-berkas di SOURCEDIR dan menyimpannya\ndi OUTPUTDIR. Program tersebut mencari berkas 'conf.py' di SOURCEDIR untuk pengaturan\nkonfigurasinya. Alat 'sphinx-quickstart' dapat digunakan untuk menghasilkan berkas templat,\ntermasuk 'conf.py'\n\nsphinx-build dapat membuat dokumentasi dalam beragam format. Sebuah format\ndipilih berdasarkan nama builder pada command line; standarnya\nHTML. Builders pun dapat menjalankan tugas lainnya berhubungan dengan pemrosesan\ndocumentasi.\n\nSecara umum, semua yang usang akan dibuat. Output hanya untuk berkas\npilihan dapat dibuat dengan menentukan berkas satuan.\n" + +#: sphinx/cmd/build.py:128 +msgid "path to documentation source files" +msgstr "path ke berkas sumber" + +#: sphinx/cmd/build.py:130 +msgid "path to output directory" +msgstr "path ke direktori output" #: sphinx/cmd/build.py:132 -msgid "path to documentation source files" -msgstr "" - -#: sphinx/cmd/build.py:134 -msgid "path to output directory" -msgstr "" - -#: sphinx/cmd/build.py:136 msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "" +msgstr "daftar berkas spesifik yang dibuat ulang. Diabaikan jika -a ditentukan" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" -msgstr "" +msgstr "opsi umum" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" -msgstr "" +msgstr "builder yang digunakan (default: html)" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" -msgstr "" +msgstr "tulis semua berkas (default: hanya tulis berkas yang baru dan diubah)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" -msgstr "" +msgstr "jangan pakai saved environment, selalu baca semua berkas" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" -msgstr "" +msgstr "path untuk the cached environment dan berkas doctree (default: OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" -msgstr "" +msgstr "build secara parallel dengan N processes jika memungkinkan (nilai spesial \"auto\" akan menetapkan N ke cpu-count)" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" -msgstr "" +msgstr "path tempat berkas konfigurasi (conf.py) berada (default: sama seperti SOURCEDIR)" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" -msgstr "" +msgstr "jalankan tanpa berkas sama sekali, hanya opsi -D" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" -msgstr "" +msgstr "override sebuah aturan di berkas konfigurasi" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" -msgstr "" +msgstr "masukkan sebuah nilai ke templat HTML" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" -msgstr "" +msgstr "define tag: masukkan blok \"only\" dengan TAG" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" -msgstr "" +msgstr "mode nit-picky, ingatkan tentang semua referensi yang hilang" + +#: sphinx/cmd/build.py:170 +msgid "console output options" +msgstr "opsi output konsol" + +#: sphinx/cmd/build.py:172 +msgid "increase verbosity (can be repeated)" +msgstr "tingkatkan verbosity (dapat diulang)" #: sphinx/cmd/build.py:174 -msgid "console output options" -msgstr "" +msgid "no output on stdout, just warnings on stderr" +msgstr "tanpa output pada stdout, hanya peringatan pada stderr" #: sphinx/cmd/build.py:176 -msgid "increase verbosity (can be repeated)" -msgstr "" - -#: sphinx/cmd/build.py:178 -msgid "no output on stdout, just warnings on stderr" -msgstr "" - -#: sphinx/cmd/build.py:180 msgid "no output at all, not even warnings" -msgstr "" +msgstr "tanpa output sama sekali, peringatan sekalipun" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" -msgstr "" +msgstr "siarkan output berwarna (default: auto-detect)" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" -msgstr "" +msgstr "jangan siarkan output berwarna (default: auto-detect)" + +#: sphinx/cmd/build.py:185 +msgid "write warnings (and errors) to given file" +msgstr "tulis peringatan (dan galat) pada berkas terpilih" + +#: sphinx/cmd/build.py:187 +msgid "turn warnings into errors" +msgstr "ubah peringatan menjadi galat" #: sphinx/cmd/build.py:189 -msgid "write warnings (and errors) to given file" -msgstr "" +msgid "With -W, Keep going when getting warnings" +msgstr "Dengan -W, Terus jalankan ketika menerima peringatan" #: sphinx/cmd/build.py:191 -msgid "turn warnings into errors" -msgstr "" +msgid "show full traceback on exception" +msgstr "tampilkan traceback penuh pada eksepsi" #: sphinx/cmd/build.py:193 -msgid "With -W, Keep going when getting warnings" -msgstr "" - -#: sphinx/cmd/build.py:195 -msgid "show full traceback on exception" -msgstr "" - -#: sphinx/cmd/build.py:197 msgid "run Pdb on exception" -msgstr "" +msgstr "jalankan Pdb pada eksepsi" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" -msgstr "" +msgstr "tidak dapat mencari berkas %r" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" -msgstr "" +msgstr "tidak dapat menggabungkan opsi -a dan nama berkas" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" -msgstr "" +msgstr "tidak dapat membuka berkas peringatan %r: %s" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" -msgstr "" +msgstr "argumen opsi -D harus dalam bentuk name=value" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" -msgstr "" +msgstr "argumen opsi -A harus dalam bentuk name=value" + +#: sphinx/cmd/quickstart.py:52 +msgid "automatically insert docstrings from modules" +msgstr "masukkan docstrings secara otomatis dari modules" + +#: sphinx/cmd/quickstart.py:53 +msgid "automatically test code snippets in doctest blocks" +msgstr "uji snippet kode secara otomatis pada blok doctest" + +#: sphinx/cmd/quickstart.py:54 +msgid "link between Sphinx documentation of different projects" +msgstr "tautkan antara dokumentasi Sphinx dari berbagai proyek" + +#: sphinx/cmd/quickstart.py:55 +msgid "write \"todo\" entries that can be shown or hidden on build" +msgstr "tulis entri \"todo\" yang dapat ditampilan atau disembunyikan dalam build" #: sphinx/cmd/quickstart.py:56 -msgid "automatically insert docstrings from modules" -msgstr "" +msgid "checks for documentation coverage" +msgstr "periksa coverage dokumentasi" #: sphinx/cmd/quickstart.py:57 -msgid "automatically test code snippets in doctest blocks" -msgstr "" +msgid "include math, rendered as PNG or SVG images" +msgstr "masukkan math, yang dirender sebagai gambar PNG atau SVG" #: sphinx/cmd/quickstart.py:58 -msgid "link between Sphinx documentation of different projects" -msgstr "" +msgid "include math, rendered in the browser by MathJax" +msgstr "masukkan math, yang dirender di perambah sebagai gambar PNG atau SVG" #: sphinx/cmd/quickstart.py:59 -msgid "write \"todo\" entries that can be shown or hidden on build" -msgstr "" - -#: sphinx/cmd/quickstart.py:60 -msgid "checks for documentation coverage" -msgstr "" +msgid "conditional inclusion of content based on config values" +msgstr "inklusi bersyarat untuk isi berdasarkan nilai konfig" #: sphinx/cmd/quickstart.py:61 -msgid "include math, rendered as PNG or SVG images" -msgstr "" - -#: sphinx/cmd/quickstart.py:62 -msgid "include math, rendered in the browser by MathJax" -msgstr "" +msgid "include links to the source code of documented Python objects" +msgstr "masukkan tautan ke sumber kode untuk objek Python yang terdokumentasi" #: sphinx/cmd/quickstart.py:63 -msgid "conditional inclusion of content based on config values" -msgstr "" - -#: sphinx/cmd/quickstart.py:65 -msgid "include links to the source code of documented Python objects" -msgstr "" - -#: sphinx/cmd/quickstart.py:67 msgid "create .nojekyll file to publish the document on GitHub pages" -msgstr "" +msgstr "buat berkas .nojekyll untuk menerbitkannya di halaman GitHub" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." -msgstr "" +msgstr "Mohon masukkan nama path yang sah." -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." -msgstr "" +msgstr "Mohon masukan teks." -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." -msgstr "" +msgstr "Mohon masukkan satu dari %s." -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." -msgstr "" +msgstr "Mohon ketik salah satu dari 'y' atau 'n'." -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." -msgstr "" +msgstr "Mohon masukkan satu suffiks berkas, contohnya '.rst' atau '.txt'." -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." -msgstr "" +msgstr "* Perhatian: karakter non-ASCII yang dimasukkan dan encoding terminal tidak diketahui -- menganggap UTF-8 atau Latin-1." -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." -msgstr "" +msgstr "Selamat datang ke alat quickstart Sphinx %s." -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." -msgstr "" +msgstr "\nMohon masukkan nilai untuk pengaturan berikut (tekan saja Enter untuk\nmenerima nilai default, jika tersedia di dalam braket)." -#: sphinx/cmd/quickstart.py:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" -msgstr "" +msgstr "\nRoot path yang dipilih: %s" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." -msgstr "" +msgstr "\nMasukkan root path dokumentasi." -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" -msgstr "" +msgstr "Root path dokumentasi" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." -msgstr "" +msgstr "Galat: berkas conf.py telah ditemukan dalam root path terpilih." -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." -msgstr "" +msgstr "sphinx-quickstart tidak akan menulis ulang proyek Sphinx yang ada." -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" -msgstr "" +msgstr "Silakan masukkan root path baru (atau tekan Enter untuk keluar)" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "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 "" +msgstr "\nAnda punya dua opsi untuk pilihan direktori build tempat output Sphinx.\nGunakan \"_build\" direktori dalam root path, atau pisahkan\ndirektori \"source\" dan \"build\" dalam root path." -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" -msgstr "" +msgstr "Pisahkan direktori source dan build (y/n)" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "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 "" +msgstr "\nDi dalam direktori root, dua direktori lainnya akan dibuat; \"_templates\"\nuntuk templat HTML custom dan \"_static\" untuk stylesheets custom dan berkas static\nlainnya. Anda dapat masukkan prefiks lainnya (seperti \".\") untuk mengganti garis bawah." -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" -msgstr "" +msgstr "Nama prefiks untuk dir templat dan static" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." -msgstr "" +msgstr "\nNama proyek akan muncul di beberapa tempat dalam dokumentasi yang dibuat." -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" -msgstr "" +msgstr "Nama proyek" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" -msgstr "" +msgstr "Nama(-nama) pembuat" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1545,17 +1433,17 @@ msgid "" "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 "" +msgstr "\nSphinx punya gagasan sebuah \"version\" dan \"release\" untuk\nperanti lunaknya. Tiap versi bisa punya beragam rilisan. Contohnya, untuk\nPython versinya kira-kira seperti 2.5 atau 3.0, sedangkan rilisannya\nkira-kira seperti 2.5.1 atau 3.0a1. Bila anda tidak memerlukan struktur dual ini,\natur saja kedua-duanya dengan nilai yang sama." -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1566,22 +1454,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1590,36 +1478,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1627,29 +1515,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1657,26 +1545,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1686,214 +1574,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "Keterangan tidak valid: %s" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Penyusun bagian:" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Penyusun modul: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Penulis kode:" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Penyusun: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parameter" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Kembali" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Return type" @@ -1922,12 +1810,12 @@ msgstr "%s (tipe C)" msgid "%s (C variable)" msgstr "%s (variabel C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "fungsi" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "anggota" @@ -1935,7 +1823,7 @@ msgstr "anggota" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "tipe" @@ -1943,297 +1831,262 @@ msgstr "tipe" msgid "variable" msgstr "variabel" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Baru pada versi %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Berubah pada versi %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Ditinggalkan sejak versi %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "Parameter Templat" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Throws" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (tipe C++)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "%s (C++ konsep)" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (anggota C++)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (fungsi C++)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (class C++)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (C++ enum)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (C++ enumerator)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "class" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "konsep" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (fungsi built-in)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (method %s)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (class)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variabel global atau konstan)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Argumen" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "method" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "duplikasi label persamaan %s, misalnya di %s" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "keyword" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "object" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "eksepsi" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "statement" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "fungsi built-in" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Variabel" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Raises" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (di modul %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabel built-in)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (di modul %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (class built-in)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (class di %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (method %s.%s)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (method static %s.%s)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (method static %s)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (method class %s.%s)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (method class %s)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atribut %s.%s)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Indeks Modul Python" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "modul" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Akan ditinggalkan" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "method class" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "method static" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (obsolet)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (direktif)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (role)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "direktif" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "role" @@ -2242,209 +2095,200 @@ msgstr "role" msgid "environment variable; %s" msgstr "variabel environment; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%sopsi command line; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "daftar istilah" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "token grammar" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "label referensi" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "variabel environment" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "opsi program" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Indeks" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Indeks Modul" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pencarian Halaman" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "lihat %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "lihat juga %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Simbol" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2456,352 +2300,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Tautan untuk persamaan ini" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(di %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[sumber]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "<<original entry>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "(<<original entry>> terletak di %s, baris %d.)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "entri asli" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Kode modul" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Kode sumber untuk %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Tinjauan: kode modul" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Semua modul dimana kode tersedia</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2809,66 +2682,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "Basis: %s" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "alias dari :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2883,106 +2775,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "Argumen Kata Kunci" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Pehatian" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Hati-hati" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Bahaya" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Kesalahan" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Hint" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Penting" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Catatan" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "lihat juga" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Peringatan" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "lanjutan dari halaman sebelumnya" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Lanjut ke halaman berikutnya" @@ -3001,7 +2893,7 @@ msgstr "Pencarian" msgid "Go" msgstr "Go" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Lihat Sumber" @@ -3150,13 +3042,13 @@ msgstr "pencarian" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Hasil Pencarian" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3198,36 +3090,36 @@ msgstr "Perubahan API C" msgid "Other changes" msgstr "Perubahan lain" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Link permanen untuk headline ini" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Link permanen untuk definisi ini" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Sembunyikan Hasil Pencarian" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Pencarian" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Penyiapkan pencarian..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Pencarian selesai, menemukan %s halaman yang cocok dengan kueri pencarian." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", di" @@ -3244,76 +3136,89 @@ msgstr "Tutup sidebar" msgid "Contents" msgstr "Konten" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "karakter sumber undecodable, menggantinya dengan \"?\": %r" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3327,140 +3232,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Link permanen untuk table ini" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Link permanen untuk kode ini" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Link permanen untuk gambar ini" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "Tautan ke daftar isi ini" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Rilis" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "laman" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Catatan kaki" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Kunci konfigurasi tak dikenal: latex_elements[%r] diabaikan." -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[gambar: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[gambar]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.js b/sphinx/locale/it/LC_MESSAGES/sphinx.js index 9a5ee28cc..78292cd9d 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "it", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", in ", "About these documents": "A proposito di questi documenti", "Automatically generated list of changes in version %(version)s": "Lista delle modifiche generata automaticamente nella versione %(version)s", "C API changes": "Modifiche nelle API C", "Changes in Version %(version)s — %(docstitle)s": "Cambiamenti nella Versione %(version)s — %(docstitle)s", "Collapse sidebar": "Comprimi la barra laterale", "Complete Table of Contents": "Tabella dei contenuti completa", "Contents": "Contenuti", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Creato con <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Espandi la barra laterale", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Puoi effettuare una ricerca in questi documenti. Immetti le parole chiave \n della tua ricerca nel riquadro sottostante \"cerca\". Nota che la funzione\n di ricerca cerca automaticamente per tutte le parole. Le pagine\n che contendono meno parole non compariranno nei risultati di ricerca.", "Full index on one page": "Indice completo in una pagina", "General Index": "Indice generale", "Global Module Index": "Indice dei moduli", "Go": "Vai", "Hide Search Matches": "Nascondi i risultati della ricerca", "Index": "Indice", "Index – %(key)s": "Indice – %(key)s", "Index pages by letter": "Indice delle pagine per lettera", "Indices and tables:": "Indici e tabelle:", "Last updated on %(last_updated)s.": "Ultimo aggiornamento %(last_updated)s.", "Library changes": "Modifiche nella libreria", "Navigation": "Navigazione", "Next topic": "Argomento successivo", "Other changes": "Altre modifiche", "Overview": "Sintesi", "Permalink to this definition": "Link a questa definizione", "Permalink to this headline": "Link a questa intestazione", "Please activate JavaScript to enable the search\n functionality.": "Attiva JavaScript per abilitare la funzione\u23ce\ndi ricerca.", "Preparing search...": "Preparo la ricerca...", "Previous topic": "Argomento precedente", "Quick search": "Ricerca veloce", "Search": "Cerca", "Search Page": "Cerca", "Search Results": "Risultati della ricerca", "Search finished, found %s page(s) matching the search query.": "Ricerca completata, trovata/e %s pagina/e corrispondenti.", "Search within %(docstitle)s": "Cerca in %(docstitle)s", "Searching": "Cerca", "Show Source": "Mostra sorgente", "Table of Contents": "", "This Page": "Questa pagina", "Welcome! This is": "Benvenuto! Questa \u00e8", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "La tua ricerca non corrisponde a nessun documento. Verifica che tutte le parole siano scritte correttamente e di aver scelto un numero sufficiente di categorie.", "all functions, classes, terms": "tutte le funzioni, classi e moduli", "can be huge": "pu\u00f2 essere enorme", "last updated": "ultimo aggiornamento", "lists all sections and subsections": "elenca l'insieme delle sezioni e sottosezioni", "next chapter": "capitolo successivo", "previous chapter": "capitolo precedente", "quick access to all modules": "accesso veloce ai moduli", "search": "cerca", "search this documentation": "cerca in questa documentazione", "the documentation for": "la documentazione per"}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "it", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", in ", "About these documents": "A proposito di questi documenti", "Automatically generated list of changes in version %(version)s": "Lista delle modifiche generata automaticamente nella versione %(version)s", "C API changes": "Modifiche nelle API C", "Changes in Version %(version)s — %(docstitle)s": "Cambiamenti nella Versione %(version)s — %(docstitle)s", "Collapse sidebar": "Comprimi la barra laterale", "Complete Table of Contents": "Tabella dei contenuti completa", "Contents": "Contenuti", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Creato con <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Espandi la barra laterale", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Puoi effettuare una ricerca in questi documenti. Immetti le parole chiave \n della tua ricerca nel riquadro sottostante e premi \"cerca\". Nota che la funzione\n di ricerca cerca automaticamente tutte le parole. Le pagine\n che contengono meno parole non compariranno nei risultati della ricerca.", "Full index on one page": "Indice completo in una pagina", "General Index": "Indice generale", "Global Module Index": "Indice dei moduli", "Go": "Vai", "Hide Search Matches": "Nascondi i risultati della ricerca", "Index": "Indice", "Index – %(key)s": "Indice – %(key)s", "Index pages by letter": "Indice delle pagine per lettera", "Indices and tables:": "Indici e tabelle:", "Last updated on %(last_updated)s.": "Ultimo aggiornamento %(last_updated)s.", "Library changes": "Modifiche nella libreria", "Navigation": "Navigazione", "Next topic": "Argomento successivo", "Other changes": "Altre modifiche", "Overview": "Sintesi", "Permalink to this definition": "Link a questa definizione", "Permalink to this headline": "Link a questa intestazione", "Please activate JavaScript to enable the search\n functionality.": "Attiva JavaScript per abilitare la funzione\u23ce\ndi ricerca.", "Preparing search...": "Preparo la ricerca...", "Previous topic": "Argomento precedente", "Quick search": "Ricerca veloce", "Search": "Cerca", "Search Page": "Cerca", "Search Results": "Risultati della ricerca", "Search finished, found %s page(s) matching the search query.": "Ricerca completata, trovata/e %s pagina/e corrispondenti.", "Search within %(docstitle)s": "Cerca in %(docstitle)s", "Searching": "Cerca", "Show Source": "Mostra sorgente", "Table of Contents": "", "This Page": "Questa pagina", "Welcome! This is": "Benvenuto! Questa \u00e8", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "La tua ricerca non corrisponde a nessun documento. Verifica che tutte le parole siano scritte correttamente e di aver scelto un numero sufficiente di categorie.", "all functions, classes, terms": "tutte le funzioni, classi e moduli", "can be huge": "pu\u00f2 essere enorme", "last updated": "ultimo aggiornamento", "lists all sections and subsections": "elenca l'insieme delle sezioni e sottosezioni", "next chapter": "capitolo successivo", "previous chapter": "capitolo precedente", "quick access to all modules": "accesso veloce ai moduli", "search": "cerca", "search this documentation": "cerca in questa documentazione", "the documentation for": "la documentazione per"}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index d42cbc3f037ab82151370493634adf08c7de79ff..edfe826f9d0461023968ff0290048bd4ddedd2e0 100644 GIT binary patch delta 14034 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 delta 16367 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 P-oN)Yc=5mWHu!%4@f@lh diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index 8c99eb726..89ea48ba3 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -1,8 +1,9 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: +# Denis Cappellin <d.cappellin@asem.it>, 2018 # Paolo Cavallini <cavallini@faunalia.it>, 2013-2017 # Roland Puntaier <roland.puntaier@chello.at>, 2013 # Sandro Dentella <sandro@e-den.it>, 2008 @@ -11,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" -"Last-Translator: Giuseppe Pignataro (Fastbyte01) <rogepix@gmail.com>\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,21 +23,21 @@ msgstr "" "Language: it\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -49,95 +50,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "il primary_domain %r non è stato trovato, tralasciato." - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "fatto" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "terminato con problemi" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -145,7 +134,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -153,60 +142,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -214,833 +197,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "Sezione %s" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "Tabella %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Listato %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "il primary_domain %r non è stato trovato, tralasciato." + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Builtins" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Al livello del modulo" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indice generale" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "indice" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "successivo" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "precedente" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s documentazione" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1054,188 +926,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (in " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Indice" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Release" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1254,253 +1148,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1508,11 +1396,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1520,25 +1408,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1548,15 +1436,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1567,22 +1455,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1591,36 +1479,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1628,29 +1516,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1658,26 +1546,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1687,214 +1575,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "Didascalia non valida: %s" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Impossibile usare contemporaneamente le opzioni \"%s\" e \"%s\"" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Autore della sezione: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Autore del modulo: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Autore del codice: " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Autore: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Ritorna" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Tipo di ritorno" @@ -1923,12 +1811,12 @@ msgstr "%s (tipo C)" msgid "%s (C variable)" msgstr "%s (variabile C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "funzione" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "membro" @@ -1936,7 +1824,7 @@ msgstr "membro" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "tipo" @@ -1944,297 +1832,262 @@ msgstr "tipo" msgid "variable" msgstr "variabile" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Nuovo nella versione %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Cambiato nella versione %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Deprecato dalla versione %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "Parametri del modello" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Solleva" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (tipo C++)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "%s (concetto C++)" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (membro C++)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (funzione C++)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (classe C++)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (enum C++)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (enumeratore C++)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "concetto" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "enumeratore" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funzione built-in)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodo)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (classe)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variabile globale o costante)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attributo)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Parametri" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (modulo)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "metodo" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "attributo" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "modulo" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "etichetta dell'equazione %s duplicata, altra istanza in %s" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "keyword" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operatore" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "oggetto" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "eccezione" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "statement" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "funzione built-in" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Variabili" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Solleva" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (nel modulo %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabile built-in)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (nel modulo %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (classe built-in)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (classe in %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metodo)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s metodo statico)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo statico)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s metodo della classe)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metodo della classe)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attributo)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Indice del modulo Python" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "moduli" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Deprecato" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "metodo della classe" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "metodo statico" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (deprecato)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (direttiva)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (ruolo)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "direttiva" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "ruolo" @@ -2243,209 +2096,200 @@ msgstr "ruolo" msgid "environment variable; %s" msgstr "variabile d'ambiente, %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%sopzione di linea di comando; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "voce del glossario" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "elemento grammaticale" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "etichetta di riferimento" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "variabile d'ambiente" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "opzione del programma" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "documento" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Indice" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Indice dei moduli" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Cerca" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "vedi %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "vedi anche %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Simboli" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2457,352 +2301,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "manca '+' or'-' nell'opzione '%s'." -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' non è un'opzione valida." -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[grafico: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[grafico]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Permalink a questa equazione" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[sorgente]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Da fare" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "<<elemento originale>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "(L'<<elemento originale>> si trova in %s, linea %d.)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "riga originale" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[documenti]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Codice del modulo" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Codice sorgente per %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Vista generale: codice del modulo" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Tutti i moduli di cui è disponibile il codice</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2810,66 +2683,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr " Basi: %s" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "alias per :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2884,106 +2776,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "Argomenti parole chiave" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "Esempi" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Attenzione" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Attenzione" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Pericolo" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Errore" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Suggerimento" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Importante" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Vedi anche" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Suggerimento" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Avvertimento" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "continua dalla pagina precedente" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Continua alla pagina successiva" @@ -3002,7 +2894,7 @@ msgstr "Cerca" msgid "Go" msgstr "Vai" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Mostra sorgente" @@ -3142,7 +3034,7 @@ msgid "" " words into the box below and click \"search\". Note that the search\n" " function will automatically search for all of the words. Pages\n" " containing fewer words won't appear in the result list." -msgstr "Puoi effettuare una ricerca in questi documenti. Immetti le parole chiave \n della tua ricerca nel riquadro sottostante \"cerca\". Nota che la funzione\n di ricerca cerca automaticamente per tutte le parole. Le pagine\n che contendono meno parole non compariranno nei risultati di ricerca." +msgstr "Puoi effettuare una ricerca in questi documenti. Immetti le parole chiave \n della tua ricerca nel riquadro sottostante e premi \"cerca\". Nota che la funzione\n di ricerca cerca automaticamente tutte le parole. Le pagine\n che contengono meno parole non compariranno nei risultati della ricerca." #: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 @@ -3151,13 +3043,13 @@ msgstr "cerca" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Risultati della ricerca" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3199,36 +3091,36 @@ msgstr "Modifiche nelle API C" msgid "Other changes" msgstr "Altre modifiche" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Link a questa intestazione" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Link a questa definizione" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Nascondi i risultati della ricerca" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Cerca" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Preparo la ricerca..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Ricerca completata, trovata/e %s pagina/e corrispondenti." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", in " @@ -3245,76 +3137,89 @@ msgstr "Comprimi la barra laterale" msgid "Contents" msgstr "Contenuti" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3328,140 +3233,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Link a questa tabella" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Link a questo codice" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Link a questa immagine" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "Link a questo indice" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Release" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "pagina" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Note a piè di pagina" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Chiave di configurazione sconosciuta: latex_elements[%r] è ignorata." -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[immagine: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[immagine]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.js b/sphinx/locale/ja/LC_MESSAGES/sphinx.js index ad8aeaf4f..6d6a53d60 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ja", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", in ", "About these documents": "\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u3064\u3044\u3066", "Automatically generated list of changes in version %(version)s": "\u30d0\u30fc\u30b8\u30e7\u30f3 %(version)s \u306e\u5909\u66f4\u70b9\uff08\u3053\u306e\u30ea\u30b9\u30c8\u306f\u81ea\u52d5\u751f\u6210\u3055\u308c\u3066\u3044\u307e\u3059\uff09", "C API changes": "C API \u306b\u95a2\u3059\u308b\u5909\u66f4", "Changes in Version %(version)s — %(docstitle)s": "\u30d0\u30fc\u30b8\u30e7\u30f3 %(version)s \u306e\u5909\u66f4\u70b9 — %(docstitle)s", "Collapse sidebar": "\u30b5\u30a4\u30c9\u30d0\u30fc\u3092\u305f\u305f\u3080", "Complete Table of Contents": "\u7dcf\u5408\u76ee\u6b21", "Contents": "\u30b3\u30f3\u30c6\u30f3\u30c4", "Copyright": "\u8457\u4f5c\u6a29", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306f <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \u3067\u751f\u6210\u3057\u307e\u3057\u305f\u3002", "Expand sidebar": "\u30b5\u30a4\u30c9\u30d0\u30fc\u3092\u5c55\u958b", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u3053\u306e\u30da\u30fc\u30b8\u304b\u3089\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u691c\u7d22\u3067\u304d\u307e\u3059\u3002\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u4e0b\u306e\u30dc\u30c3\u30af\u30b9\u306b\u5165\u529b\u3057\u3066\u3001\u300c\u691c\u7d22\u300d\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u5165\u529b\u3055\u308c\u305f\u5168\u3066\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u542b\u3080\u30da\u30fc\u30b8\u304c\u691c\u7d22\u3055\u308c\u307e\u3059\u3002\u4e00\u90e8\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3057\u304b\u542b\u307e\u306a\u3044\u30da\u30fc\u30b8\u306f\u691c\u7d22\u7d50\u679c\u306b\u8868\u793a\u3055\u308c\u306a\u3044\u306e\u3067\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Full index on one page": "\u7dcf\u7d22\u5f15", "General Index": "\u7dcf\u5408\u7d22\u5f15", "Global Module Index": "\u30e2\u30b8\u30e5\u30fc\u30eb\u7dcf\u7d22\u5f15", "Go": "\u691c\u7d22", "Hide Search Matches": "\u691c\u7d22\u7d50\u679c\u3092\u96a0\u3059", "Index": "\u7d22\u5f15", "Index – %(key)s": "\u7d22\u5f15 – %(key)s", "Index pages by letter": "\u982d\u6587\u5b57\u5225\u7d22\u5f15", "Indices and tables:": "\u7d22\u5f15\u3068\u8868\u4e00\u89a7:", "Last updated on %(last_updated)s.": "\u6700\u7d42\u66f4\u65b0: %(last_updated)s", "Library changes": "\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u95a2\u3059\u308b\u5909\u66f4", "Navigation": "\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3", "Next topic": "\u6b21\u306e\u30c8\u30d4\u30c3\u30af\u3078", "Other changes": "\u305d\u306e\u4ed6\u306e\u5909\u66f4", "Overview": "\u6982\u8981", "Permalink to this definition": "\u3053\u306e\u5b9a\u7fa9\u3078\u306e\u30d1\u30fc\u30de\u30ea\u30f3\u30af", "Permalink to this headline": "\u3053\u306e\u30d8\u30c3\u30c9\u30e9\u30a4\u30f3\u3078\u306e\u30d1\u30fc\u30de\u30ea\u30f3\u30af", "Please activate JavaScript to enable the search\n functionality.": "\u691c\u7d22\u6a5f\u80fd\u3092\u4f7f\u3046\u306b\u306f JavaScript \u3092\u6709\u52b9\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Preparing search...": "\u691c\u7d22\u3092\u6e96\u5099\u3057\u3066\u3044\u307e\u3059...", "Previous topic": "\u524d\u306e\u30c8\u30d4\u30c3\u30af\u3078", "Quick search": "\u30af\u30a4\u30c3\u30af\u691c\u7d22", "Search": "\u691c\u7d22", "Search Page": "\u691c\u7d22\u30da\u30fc\u30b8", "Search Results": "\u691c\u7d22\u7d50\u679c", "Search finished, found %s page(s) matching the search query.": "\u691c\u7d22\u304c\u5b8c\u4e86\u3057\u3001 %s \u30da\u30fc\u30b8\u898b\u3064\u3051\u307e\u3057\u305f\u3002", "Search within %(docstitle)s": "%(docstitle)s \u5185\u3092\u691c\u7d22", "Searching": "\u691c\u7d22\u4e2d", "Show Source": "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u8868\u793a", "Table of Contents": "", "This Page": "\u3053\u306e\u30da\u30fc\u30b8", "Welcome! This is": "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.": "\u691c\u7d22\u3057\u305f\u6587\u5b57\u5217\u306f\u3069\u306e\u6587\u66f8\u306b\u3082\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u3059\u3079\u3066\u306e\u5358\u8a9e\u304c\u6b63\u78ba\u306b\u8a18\u8ff0\u3055\u308c\u3066\u3044\u308b\u304b\u3001\u3042\u308b\u3044\u306f\u3001\u5341\u5206\u306a\u30ab\u30c6\u30b4\u30ea\u30fc\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u308b\u304b\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "all functions, classes, terms": "\u95a2\u6570\u3001\u30af\u30e9\u30b9\u304a\u3088\u3073\u7528\u8a9e\u7dcf\u89a7", "can be huge": "\u5927\u304d\u3044\u5834\u5408\u304c\u3042\u308b\u306e\u3067\u6ce8\u610f", "last updated": "\u6700\u7d42\u66f4\u65b0", "lists all sections and subsections": "\u7ae0\uff0f\u7bc0\u4e00\u89a7", "next chapter": "\u6b21\u306e\u7ae0\u3078", "previous chapter": "\u524d\u306e\u7ae0\u3078", "quick access to all modules": "\u5168\u30e2\u30b8\u30e5\u30fc\u30eb\u65e9\u898b\u8868", "search": "\u691c\u7d22", "search this documentation": "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u691c\u7d22", "the documentation for": "the documentation for"}, "plural_expr": "0"}); +Documentation.addTranslations({"locale": "ja", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", in ", "About these documents": "\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u3064\u3044\u3066", "Automatically generated list of changes in version %(version)s": "\u30d0\u30fc\u30b8\u30e7\u30f3 %(version)s \u306e\u5909\u66f4\u70b9\uff08\u3053\u306e\u30ea\u30b9\u30c8\u306f\u81ea\u52d5\u751f\u6210\u3055\u308c\u3066\u3044\u307e\u3059\uff09", "C API changes": "C API \u306b\u95a2\u3059\u308b\u5909\u66f4", "Changes in Version %(version)s — %(docstitle)s": "\u30d0\u30fc\u30b8\u30e7\u30f3 %(version)s \u306e\u5909\u66f4\u70b9 — %(docstitle)s", "Collapse sidebar": "\u30b5\u30a4\u30c9\u30d0\u30fc\u3092\u305f\u305f\u3080", "Complete Table of Contents": "\u7dcf\u5408\u76ee\u6b21", "Contents": "\u30b3\u30f3\u30c6\u30f3\u30c4", "Copyright": "\u8457\u4f5c\u6a29", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306f <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \u3067\u751f\u6210\u3057\u307e\u3057\u305f\u3002", "Expand sidebar": "\u30b5\u30a4\u30c9\u30d0\u30fc\u3092\u5c55\u958b", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u3053\u306e\u30da\u30fc\u30b8\u304b\u3089\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u691c\u7d22\u3067\u304d\u307e\u3059\u3002\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u4e0b\u306e\u30dc\u30c3\u30af\u30b9\u306b\u5165\u529b\u3057\u3066\u3001\u300c\u691c\u7d22\u300d\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u5165\u529b\u3055\u308c\u305f\u5168\u3066\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u542b\u3080\u30da\u30fc\u30b8\u304c\u691c\u7d22\u3055\u308c\u307e\u3059\u3002\u4e00\u90e8\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3057\u304b\u542b\u307e\u306a\u3044\u30da\u30fc\u30b8\u306f\u691c\u7d22\u7d50\u679c\u306b\u8868\u793a\u3055\u308c\u306a\u3044\u306e\u3067\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Full index on one page": "\u7dcf\u7d22\u5f15", "General Index": "\u7dcf\u5408\u7d22\u5f15", "Global Module Index": "\u30e2\u30b8\u30e5\u30fc\u30eb\u7dcf\u7d22\u5f15", "Go": "\u691c\u7d22", "Hide Search Matches": "\u691c\u7d22\u7d50\u679c\u3092\u96a0\u3059", "Index": "\u7d22\u5f15", "Index – %(key)s": "\u7d22\u5f15 – %(key)s", "Index pages by letter": "\u982d\u6587\u5b57\u5225\u7d22\u5f15", "Indices and tables:": "\u7d22\u5f15\u3068\u8868\u4e00\u89a7:", "Last updated on %(last_updated)s.": "\u6700\u7d42\u66f4\u65b0: %(last_updated)s", "Library changes": "\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u95a2\u3059\u308b\u5909\u66f4", "Navigation": "\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3", "Next topic": "\u6b21\u306e\u30c8\u30d4\u30c3\u30af\u3078", "Other changes": "\u305d\u306e\u4ed6\u306e\u5909\u66f4", "Overview": "\u6982\u8981", "Permalink to this definition": "\u3053\u306e\u5b9a\u7fa9\u3078\u306e\u30d1\u30fc\u30de\u30ea\u30f3\u30af", "Permalink to this headline": "\u3053\u306e\u30d8\u30c3\u30c9\u30e9\u30a4\u30f3\u3078\u306e\u30d1\u30fc\u30de\u30ea\u30f3\u30af", "Please activate JavaScript to enable the search\n functionality.": "\u691c\u7d22\u6a5f\u80fd\u3092\u4f7f\u3046\u306b\u306f JavaScript \u3092\u6709\u52b9\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Preparing search...": "\u691c\u7d22\u3092\u6e96\u5099\u3057\u3066\u3044\u307e\u3059...", "Previous topic": "\u524d\u306e\u30c8\u30d4\u30c3\u30af\u3078", "Quick search": "\u30af\u30a4\u30c3\u30af\u691c\u7d22", "Search": "\u691c\u7d22", "Search Page": "\u691c\u7d22\u30da\u30fc\u30b8", "Search Results": "\u691c\u7d22\u7d50\u679c", "Search finished, found %s page(s) matching the search query.": "\u691c\u7d22\u304c\u5b8c\u4e86\u3057\u3001 %s \u30da\u30fc\u30b8\u898b\u3064\u3051\u307e\u3057\u305f\u3002", "Search within %(docstitle)s": "%(docstitle)s \u5185\u3092\u691c\u7d22", "Searching": "\u691c\u7d22\u4e2d", "Show Source": "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u8868\u793a", "Table of Contents": "\u76ee\u6b21", "This Page": "\u3053\u306e\u30da\u30fc\u30b8", "Welcome! This is": "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.": "\u691c\u7d22\u3057\u305f\u6587\u5b57\u5217\u306f\u3069\u306e\u6587\u66f8\u306b\u3082\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u3059\u3079\u3066\u306e\u5358\u8a9e\u304c\u6b63\u78ba\u306b\u8a18\u8ff0\u3055\u308c\u3066\u3044\u308b\u304b\u3001\u3042\u308b\u3044\u306f\u3001\u5341\u5206\u306a\u30ab\u30c6\u30b4\u30ea\u30fc\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u308b\u304b\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "all functions, classes, terms": "\u95a2\u6570\u3001\u30af\u30e9\u30b9\u304a\u3088\u3073\u7528\u8a9e\u7dcf\u89a7", "can be huge": "\u5927\u304d\u3044\u5834\u5408\u304c\u3042\u308b\u306e\u3067\u6ce8\u610f", "last updated": "\u6700\u7d42\u66f4\u65b0", "lists all sections and subsections": "\u7ae0\uff0f\u7bc0\u4e00\u89a7", "next chapter": "\u6b21\u306e\u7ae0\u3078", "previous chapter": "\u524d\u306e\u7ae0\u3078", "quick access to all modules": "\u5168\u30e2\u30b8\u30e5\u30fc\u30eb\u65e9\u898b\u8868", "search": "\u691c\u7d22", "search this documentation": "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u691c\u7d22", "the documentation for": "the documentation for"}, "plural_expr": "0"}); \ No newline at end of file diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 0fc58b8b364623e6a3fd354174731f0744bfc768..df1ffb580c9d4c99d8ad09e9a36e200c8b13f376 100644 GIT binary patch literal 82380 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¥K&<Zzb>h3UF}%d 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 a58@s5f<HcXYu8ydCgo#UEbc;h@BaWUv4Fe) delta 17484 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 Z2RfEA>jtVMv7P@rf3VK~zxspq-vI)E^V|Rc diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index c1c341813..d6517d053 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -1,25 +1,27 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: # shirou - しろう <shirou.faw@gmail.com>, 2013 # Akitoshi Ohta <fire.kuma8@gmail.com>, 2011 -# tomo🐧, 2018 +# tomo, 2018 # Hisahiro Ohmura, 2017 # Kouhei Sutou <kou@clear-code.com>, 2011 +# sutefu7, 2019 # shirou - しろう <shirou.faw@gmail.com>, 2017 +# Taizo Ito <taizo.ito@hennge.com>, 2019 # Takayuki SHIMIZUKAWA <shimizukawa@gmail.com>, 2013-2016 -# Takayuki SHIMIZUKAWA <shimizukawa@gmail.com>, 2016-2017 -# Takeshi KOMIYA <i.tkomiya@gmail.com>, 2016-2017 +# Takayuki SHIMIZUKAWA <shimizukawa@gmail.com>, 2016-2017,2019 +# Takeshi KOMIYA <i.tkomiya@gmail.com>, 2016-2017,2019 # shirou - しろう <shirou.faw@gmail.com>, 2014 # Yasushi Masuda <whosaysni@gmail.com>, 2008 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-25 14:52+0000\n" "Last-Translator: Takayuki SHIMIZUKAWA <shimizukawa@gmail.com>\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" "MIME-Version: 1.0\n" @@ -29,24 +31,24 @@ msgstr "" "Language: ja\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" +msgstr "conf.py が設定ディレクトリに存在しません (%s)" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" -msgstr "" +msgstr "ソースディレクトリが存在しません (%s)" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" -msgstr "" +msgstr "出力先ディレクトリにはソースディレクトリと異なるディレクトリを指定してください" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" -msgstr "" +msgstr "Sphinx v%s を実行中" #: sphinx/application.py:214 #, python-format @@ -56,95 +58,83 @@ msgid "" msgstr "このプロジェクトはSphinx v%s以降のバージョンでなければビルドできません。" #: sphinx/application.py:234 -msgid "making output directory..." -msgstr "" +msgid "making output directory" +msgstr "出力先ディレクトリを作成しています" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "拡張機能のセットアップ中 %s:" + +#: sphinx/application.py:245 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "conf.pyにある'setup'はPythonのcallableではありません。定義を修正してcallableである関数にしてください。これはconf.pyがSphinx拡張として動作するのに必要です。" -#: sphinx/application.py:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "primary_domain %r が見つかりません。無視します。" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " -msgstr "" +msgstr "翻訳カタログをロードしています [%s]... " -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "完了" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" -msgstr "" +msgstr "翻訳が用意されていません" -#: sphinx/application.py:300 -msgid "loading pickled environment... " -msgstr "保存された環境データを読み込み中..." +#: sphinx/application.py:298 +msgid "loading pickled environment" +msgstr "保存された環境データを読み込み中" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "失敗: %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "ビルダーが選択されていないので、デフォルトの html を使用します" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "完了(問題あり)" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "ビルド %s, %s warning." -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "ビルド %s." -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" -msgstr "拡張 %s のセットアップ中: nodeクラス %r は既に登録されています。visitor関数は上書きされます" +msgid "node class %r is already registered, its visitors will be overridden" +msgstr "nodeクラス %r は既に登録されています。visitor関数は上書きされます" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" -msgstr "拡張 %s のセットアップ中: ディレクティブ %r は既に登録されています。ディレクティブは上書きされます" +msgid "directive %r is already registered, it will be overridden" +msgstr "ディレクティブ %r は既に登録されています。ディレクティブは上書きされます" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" -msgstr "拡張 %s のセットアップ中: ロール %r は既に登録されています。ロールは上書きされます" +msgid "role %r is already registered, it will be overridden" +msgstr "ロール %r は既に登録されています。ロールは上書きされます" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -152,7 +142,7 @@ msgid "" "explicit" msgstr "拡張 %s は並列読み込みが可能かどうかを宣言していないため、おそらく並列読み込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -160,1089 +150,994 @@ msgid "" "explicit" msgstr "拡張 %s は並列書き込みが可能かどうかを宣言していないため、おそらく並列書き込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" -msgstr "" +msgstr "直列で %sします" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "設定値の辞書 %r は上書きないため無視されました (%r を使って個別に設定してください)" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "%r は設定値 %r の正しい値ではないため無視されました" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "%r は正しい型ではないため無視されました" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "不明な設定値 %r による上書きは無視されました" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "%s という設定値はありません" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "設定値 %r は既に登録済みです" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" -msgstr "" +msgid "There is a syntax error in your configuration file: %s\n" +msgstr "設定ファイルに文法エラーが見つかりました: %s\n" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" -msgstr "" +msgstr "設定ファイル(あるいはインポートしたどれかのモジュール)がsys.exit()を呼びました" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" "\n" "%s" -msgstr "" +msgstr "設定ファイルにプログラム上のエラーがあります:\n\n%s" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." -msgstr "" +msgstr "設定値 `source_suffix' に `%r' が指定されましたが、文字列、文字列のリスト、辞書、のいずれかを指定してください。" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "%s 章" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "図 %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "表 %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "リスト %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." -msgstr "" - -#: sphinx/config.py:459 -msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " -"{permitted}." -msgstr "" +msgstr " 設定値 `{name}` に `{current}` が指定されましたが、 {candidates} のいずれかを指定してください。" #: sphinx/config.py:465 msgid "" +"The config value `{name}' has type `{current.__name__}'; expected " +"{permitted}." +msgstr "設定値 `{name}' に `{current.__name__}' 型が指定されていますが、 {permitted} 型を指定してください。" + +#: sphinx/config.py:478 +msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." -msgstr "" +msgstr "設定値 `{name}' に `{current.__name__}' 型が指定されています。デフォルト値は `{default.__name__}' です。" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." -msgstr "" +msgstr "設定値 %r にstr型で非アスキー文字列が設定されました。これはUnicodeエラーを引き起こす可能性があります。 %r のようにUnicode型を使って下さい。" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "primary_domain %r が見つかりません。無視します。" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "Sphinx-2.0から、 master_doc のデフォルト値として \"index\" を使用します。 \"master_doc = 'contents'\" をconf.pyに設定してください。" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "イベント %r はすでに登録されています" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "不明なイベント名: %s" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." -msgstr "" +msgstr "needs_extensions設定で %s 拡張が要求されていますが、その拡張がありません。" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "このプロジェクトは拡張 %s の %s 以降のバージョンが必要なため、現在のバージョン(%s)ではビルドできません。" -#: sphinx/highlighting.py:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" -msgstr "" +msgstr "Pygments に %r というlexerがありません" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." -msgstr "" +msgstr "リテラルブロックを \"%s\" として解釈できませんでした。ハイライト処理をスキップします。" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" -msgstr "" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." +msgstr "ドキュメントを読めません。無視します。" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "ビルダークラス %s には\"name\"属性がありません" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "ビルダー %r (モジュール %s) がすでに登録されています" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" -msgstr "ビルダー名 %s は登録されておらず、entry pointnにもありません" +msgstr "ビルダー名 %s は登録されておらず、entry pointにもありません" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "ビルダー名 %s は登録されていません" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "ドメイン %s はすでに登録されています" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "ドメイン %s はまだ登録されていません" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" -msgstr "" +msgid "The %r directive is already registered to domain %s" +msgstr "ディレクティブ %r は既に%sドメインに登録されています" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" -msgstr "" +msgid "The %r role is already registered to domain %s" +msgstr "ロール %r は既にドメイン%sに登録されています" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" -msgstr "" +msgid "The %r index is already registered to domain %s" +msgstr "インデックス %r はすでに%sドメインに登録されています" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" -msgstr "" +msgstr "object_type %r はすでに登録されています" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" -msgstr "" +msgstr "classref_type %r はすでに登録されています" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" -msgstr "" +msgstr "source_suffix %r はすでに登録されています" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "%r のsource_parserはすでに登録されています" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "%s のsource_parserは登録されていません" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "%r のsource_inputはすでに登録されています" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" -msgstr "%s のsource_inputは登録されていません" +msgid "Translator for %r already exists" +msgstr "%r のTranslatorはすでに登録されています" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" -msgstr "" +msgstr "add_node() のキーワード引数は (visit, depart) の形式で関数をタプルで指定してください: %r=%r" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" -msgstr "" +msgstr "enumerable_node %r はすでに登録されています" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" -msgstr "" +msgstr "数式レンダラー %s はすでに登録されています" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "拡張 %r はSphinxのバージョン%sでSphinxに統合されています。この拡張は無視されます。" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "元の例外:\n" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "拡張 %s をimportできません" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "拡張 %r には setup() 関数がありません。これは本当にSphinx拡張ですか?" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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 "このプロジェクトで使われている拡張 %s はSphinx v%s 以降が必要なため、現在のバージョンではビルドできません。" -#: sphinx/registry.py:495 +#: sphinx/registry.py:496 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "拡張 %r のsetup()関数が、対応していないオブジェクトを返しました。Noneまたはメタデータ辞書を返してください" -#: sphinx/roles.py:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "テーマ %r に \"theme\" 設定がありません" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "テーマ %r に \"inherit\" 設定がありません" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "テーマ %r が %r から継承されていますが、見つかりませんでした" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "設定 %s.%s がテーマ設定にありません" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" -msgstr "" +msgstr "サポートされていないテーマオプション %r が指定されました" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "テーマ拡張 %r が正しく応答しませんでした。" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "テーマパス上のファイル %r は正しいzipファイルではないか、テーマを含んでいません" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "sphinx_rtd_theme への依存はバージョン1.4.0で解除されました。手動でインストールを行ってください(pip install sphinx_rtd_theme)" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "テーマ %r がありません(theme.confが見つからない?)" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" -msgstr "" +msgstr "%sビルダー向けの画像形式が見つかりません: %s (%s)" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" -msgstr "" +msgstr "%sビルダー向けの画像形式が見つかりません: %s" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " -msgstr "" +msgstr "ビルド中 [mo]: " -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " -msgstr "" +msgstr "出力中..." -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" -msgstr "" +msgstr "全%d件のpoファイル" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" -msgstr "" +msgstr "指定された %d 件のpoファイル" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" -msgstr "" +msgstr "更新された %d 件のpoファイル" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" -msgstr "" +msgstr "全てのソースファイル" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" -msgstr "" +msgstr "コマンドラインに指定されたファイル %r はソースディレクトリ以下にないため無視されます" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" -msgstr "" +msgstr "コマンドラインに指定されたファイル %r がないため無視されます" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" -msgstr "" +msgstr "コマンドラインで指定された%d件のソースファイル" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" -msgstr "" +msgstr "更新された %d 件のソースファイル" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" -msgstr "" +msgstr "ビルド中 [%s]" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " -msgstr "" +msgstr "更新されたファイルを探しています... " -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" -msgstr "" +msgstr "%d 件見つかりました" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" -msgstr "" +msgstr "見つかりませんでした" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " -msgstr "" +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" +msgstr "環境データを保存中" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " -msgstr "" +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" +msgstr "整合性をチェック中" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." -msgstr "" +msgstr "更新が必要な対象はありませんでした" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "環境データを更新中" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "%s 件追加, %s 件更新, %s 件削除" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "ソースを読み込み中..." + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "ワーカーの終了を待っています..." + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" -msgstr "" +msgstr "書き込むdocname: %s" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " -msgstr "" +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" +msgstr "preparing documents" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." -msgstr "" +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" +msgstr "Tocエントリーが重複しています: %s" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "画像をコピー中... " + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" -msgstr "" +msgstr "画像ファイル %r をPILで読み込めないため、そのままコピーします" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" -msgstr "" +msgstr "画像ファイル %r をコピーできません: %s" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" -msgstr "" +msgstr "画像ファイル %r を書き込めません: %s" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" -msgstr "" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" +msgstr "Pillowがインストールされていません。代わりに画像をコピーします" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." -msgstr "" +msgstr "ファイル %s を書き込み中..." -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" -msgstr "" +msgstr "不明なmimetype %sのため無視します" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." -msgstr "" +msgstr "ファイルは%(outdir)sにあります" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." -msgstr "" +msgstr "バージョン %s での変更はありません" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "概要ファイルを書き出し中..." + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "組み込み" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "モジュールレベル" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." -msgstr "" +msgstr "ソースファイルをコピー中..." -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" -msgstr "" +msgstr "Changelog作成中に %r を読み込めませんでした" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." -msgstr "" +msgstr "dummyビルダーはファイルを出力しません" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." -msgstr "" +msgstr "ePubファイルは%(outdir)sにあります。" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" -msgstr "" +msgstr "EPUB3出力では設定値 \"epub_language\" (あるいは \"language\") の指定が必要です" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" -msgstr "" +msgstr "EPUB3では設定値 \"epub_uid\" はXML NAMEにするべきです" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" -msgstr "" +msgstr "EPUB3出力では設定値 \"epub_title\" (あるいは \"html_title\") の指定が必要です" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" -msgstr "" +msgstr "EPUB3出力では設定値 \"epub_author\" の指定が必要です" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" -msgstr "" +msgstr "EPUB3出力では設定値 \"epub_contributor\" が必要です" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" -msgstr "" +msgstr "EPUB3出力では設定値 \"epub_description\" が必要です" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" -msgstr "" +msgstr "EPUB3出力では設定値 \"epub_publisher\" の指定が必要です" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" -msgstr "" +msgstr "EPUB3出力では設定値 \"epub_copyright\" (あるいは \"copyright\") の指定が必要です" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" -msgstr "" +msgstr "EPUB3出力では設定値 \"epub_identifier\" の指定が必要です" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" -msgstr "" +msgstr "EPUB3出力では設定値 \"version\" が必要です" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" -msgstr "" +msgstr "無効な css_file %r は無視されました" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." -msgstr "" +msgstr "メッセージカタログは%(outdir)sにあります。" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " -msgstr "" +msgstr "ビルド中 [%s]:" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" -msgstr "" +msgstr "指定された %d 件のテンプレートファイル" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " -msgstr "" +msgstr "テンプレートの読み込み中..." -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " -msgstr "" +msgstr "メッセージカタログを出力中... " -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" -msgstr "" +msgstr "build info ファイルが壊れています: %r" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." -msgstr "" +msgstr "HTMLページは%(outdir)sにあります。" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" -msgstr "" +msgstr "build info ファイルの読み込みに失敗しました: %r" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%Y年%m月%d日" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" -msgstr "" +msgstr "html_use_opensearch 設定値は文字列で指定してください" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "総合索引" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "索引" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "次へ" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "前へ" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." -msgstr "" +msgstr "索引を生成中..." -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." -msgstr "" +msgstr "追加のページを出力中..." -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " -msgstr "" +msgstr "ダウンロードファイルをコピー中..." + +#: sphinx/builders/html.py:788 +#, python-format +msgid "cannot copy downloadable file %r: %s" +msgstr "ダウンロードファイル %r をコピーできません: %s" + +#: sphinx/builders/html.py:795 +msgid "copying static files... " +msgstr "静的ファイルをコピー中... " + +#: sphinx/builders/html.py:830 +#, python-format +msgid "html_static_path entry %r does not exist" +msgstr "html_static_path %r が見つかりません" + +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#, python-format +msgid "logo file %r does not exist" +msgstr "ロゴファイル %r がありません" + +#: sphinx/builders/html.py:847 +#, python-format +msgid "favicon file %r does not exist" +msgstr "favicon ファイル %r がありません" + +#: sphinx/builders/html.py:854 +#, python-format +msgid "cannot copy static file %r" +msgstr "静的ファイル %r をコピーできません" + +#: sphinx/builders/html.py:860 +msgid "copying extra files... " +msgstr "extraファイルをコピー中..." + +#: sphinx/builders/html.py:866 +#, python-format +msgid "html_extra_path entry %r does not exist" +msgstr "html_extra_path %r が見つかりません" #: sphinx/builders/html.py:872 #, python-format -msgid "cannot copy downloadable file %r: %s" -msgstr "" - -#: sphinx/builders/html.py:879 -msgid "copying static files... " -msgstr "" - -#: sphinx/builders/html.py:914 -#, python-format -msgid "html_static_path entry %r does not exist" -msgstr "" - -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 -#, python-format -msgid "logo file %r does not exist" -msgstr "" - -#: sphinx/builders/html.py:931 -#, python-format -msgid "favicon file %r does not exist" -msgstr "" - -#: sphinx/builders/html.py:940 -#, python-format -msgid "cannot copy static file %r" -msgstr "" - -#: sphinx/builders/html.py:946 -msgid "copying extra files... " -msgstr "" - -#: sphinx/builders/html.py:952 -#, python-format -msgid "html_extra_path entry %r does not exist" -msgstr "" - -#: sphinx/builders/html.py:958 -#, python-format msgid "cannot copy extra file %r" -msgstr "" +msgstr "extraファイル %r をコピーできませんでした" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" -msgstr "" +msgstr "build info ファイル %r の出力に失敗しました" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." -msgstr "" +msgstr "検索インデックスを読み込めず、ドキュメントビルドの一部が不完全です。" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" -msgstr "" +msgstr "ページ %s がhtml_sidebarsの複数のパターンに一致しました: %r と %r" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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 "" +msgstr "ページ%sの読み込み中にUnicodeエラーが発生しました。非アスキー文字を含む設定値は全てUnicode文字列にしてください。" -#: sphinx/builders/html.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" -msgstr "" +msgstr "%sページのレンダリング中にエラーが発生しました。\n理由: %r " -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" -msgstr "" +msgstr "ファイル書き込みエラー %s: %s" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " -msgstr "" +msgstr "オブジェクト インベントリを出力..." -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " -msgstr "" +msgstr "%s の検索インデックスを出力..." -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" -msgstr "" +msgstr "無効な js_file %r は無視されました" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." -msgstr "" +msgstr "複数の math_renderer が登録されています。しかし math_renderer は選択されていません。" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." -msgstr "" +msgstr "不明な math_renderer %r が指定されました。" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s ドキュメント" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" -msgstr "" +msgstr "上記の出力結果、または %(outdir)s /output.txt を見てエラーを確認してください" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" -msgstr "" +msgstr "アンカー '%s' が見つかりません" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" -msgstr "" +msgstr "リンクが切れています: %s (%s)" #: sphinx/builders/manpage.py:43 #, python-format msgid "The manual pages are in %(outdir)s." -msgstr "" +msgstr "マニュアルページは %(outdir)s にあります。" #: sphinx/builders/manpage.py:51 msgid "no \"man_pages\" config value found; no manual pages will be written" -msgstr "" +msgstr "設定値 \"man_pages\" が見つかりません。マニュアルページは書かれません" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "書き込み中" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" -msgstr "" +msgid "\"man_pages\" config value references unknown document %s" +msgstr "設定値 \"man_pages\" が不明なドキュメント %s を参照しています" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." -msgstr "" +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." +msgstr "HTML ページは%(outdir)sにあります。" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "ドキュメントを1ページにまとめています" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "追加のファイルを出力" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." -msgstr "" +msgstr "Texinfoファイルは%(outdir)sにあります。" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." -msgstr "" +msgstr "\nmakeinfo コマンドで処理するため、そのディレクトリで 'make' を実行してください。\n(これを自動的に行うには、ここで 'make info' を使用してください)。" -#: sphinx/builders/texinfo.py:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" -msgstr "" +msgstr "設定値 \"texinfo_documents\" が見つかりません。ドキュメントは書き込まれません" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" -msgstr "" +msgstr "設定値 \"texinfo_documents\" は、不明なドキュメント %s を参照しています" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." -msgstr "" +msgid "processing %s" +msgstr "処理中 %s" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." -msgstr "" +msgstr "参照を解決しています..." -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (in " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " -msgstr "" +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" +msgstr "Texinfo 関連ファイルをコピーしています" -#: sphinx/builders/texinfo.py:246 -msgid " done" -msgstr "" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" +msgstr "Makefile の書き込みエラー: %s" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." -msgstr "" +msgstr "テキストファイルは%(outdir)sにあります。" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." -msgstr "" +msgstr "XMLファイルは%(outdir)sにあります。" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." -msgstr "" +msgstr "pseudo-XMLファイルは%(outdir)sにあります。" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." -msgstr "" +msgstr "LaTeXファイルは%(outdir)sにあります。" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." -msgstr "" +msgstr "\n(pdf)latex コマンドで処理するために、そのディレクトリで 'make' を実行してください。\n(これを自動的に行うには、ここで 'make latexpdf' を使用してください)。" -#: sphinx/builders/latex/__init__.py:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" -msgstr "" +msgstr "設定値 \"latex_documents\" が見つかりません。ドキュメントは書き込まれません" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" -msgstr "" +msgstr "設定値 \"latex_documents\" は、不明なドキュメント %s を参照しています" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "索引" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "リリース" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "%r 言語向けの 既知の Babel オプションはありません" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "TeX 関連ファイルをコピーしています" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." -msgstr "" +msgstr "Tex 関連ファイルをコピー中..." -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." -msgstr "" +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" +msgstr "追加のファイルをコピーしています" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." -msgstr "" +msgstr "不明な設定値 latex_elements[%r] は無視されました。" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" -msgstr "" +msgstr "ビルド中に例外が発生しました。デバッガを起動します:" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" -msgstr "" +msgstr "割り込まれました!" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" -msgstr "" +msgstr "reST マークアップエラー:" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" -msgstr "" +msgstr "エンコードエラー:" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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 "" +msgstr "完全なトレースバックを%sに保存しました。問題を開発者に報告するときに添付してください。" -#: sphinx/cmd/build.py:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" -msgstr "" +msgstr "再起呼び出しエラー:" -#: sphinx/cmd/build.py:70 +#: 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 "" +msgstr "この例外エラーは、非常に大きな、または深くネストされたソースファイルで発生する可能性があります。再帰処理の呼び出しの上限値 1000 は conf.py で変更できますが、慎重に行ってください。" -#: sphinx/cmd/build.py:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" -msgstr "" +msgstr " import sys; sys.setrecursionlimit(1500)" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" -msgstr "" +msgstr "例外が発生しました" -#: sphinx/cmd/build.py:81 +#: 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 "" +msgstr "次期バージョンでのエラーメッセージ改善のために、ユーザーエラーの場合にも報告してください。" -#: sphinx/cmd/build.py:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" -msgstr "" +msgstr "バグ報告はこちらにお願いします <https://github.com/sphinx-doc/sphinx/issues> 。ご協力ありがとうございます!" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" -msgstr "" +msgstr "ジョブ番号は正数でなければなりません" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." -msgstr "" +msgstr "詳細は <http://sphinx-doc.org/> をご覧ください。" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1259,293 +1154,287 @@ msgid "" "\n" "By default, everything that is outdated is built. Output only for selected\n" "files can be built by specifying individual filenames.\n" -msgstr "" +msgstr "\nソースファイルからドキュメントを生成します。\n\nsphinx-build は、SOURCEDIR 内のファイルをもとにドキュメントを生成し、\nOUTPUTDIR 内に配置します。またコンフィグ\n設定用に SOURCEDIR 内から\n 'conf.py' を探します。'sphinx-quickstart' ツールを使うと\n 'conf.py' を含むテンプレートファイルを生成することができます。\n\nsphinx-build は、さまざまな形式のドキュメントを作成することができます。フォーマットは、\nコマンドラインでビルダー名を指定して選択します。デフォルトは\nHTML です。ビルダーはドキュメント化処理に関連した他のタスクも実行できます。\n\nデフォルトでは、古いものはすべてビルドされています。個別にファイル名を指定することで、\n選択したファイルのみ出力することもできます。\n" + +#: sphinx/cmd/build.py:128 +msgid "path to documentation source files" +msgstr "ドキュメントソースファイルへのパス" + +#: sphinx/cmd/build.py:130 +msgid "path to output directory" +msgstr "出力先ディレクトリへのパス" #: sphinx/cmd/build.py:132 -msgid "path to documentation source files" -msgstr "" - -#: sphinx/cmd/build.py:134 -msgid "path to output directory" -msgstr "" - -#: sphinx/cmd/build.py:136 msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "" +msgstr "再構築するための設定ファイルのリスト。 -a が指定されている場合は無視されます" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" -msgstr "" +msgstr "一般的なオプション" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" -msgstr "" +msgstr "使用するビルダー(デフォルト:html)" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" -msgstr "" +msgstr "すべてのファイルに書き込む(デフォルト: 新規ファイルまたは変更されたファイルのみ)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" -msgstr "" +msgstr "保存された環境は使わず、常に全てのファイルを読み込む" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" -msgstr "" +msgstr "キャッシュされた環境とDoctreeファイルへのパス(デフォルト:OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" -msgstr "" +msgstr "可能な場合、ビルドを N 個のプロセスで並列実行する(特別な値 \"auto\" は N を cpu-count に設定する)" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" -msgstr "" +msgstr "設定ファイル(conf.py)がある場所のパス(デフォルト:SOURCEDIRと同じ場所)" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" -msgstr "" +msgstr "設定ファイルを使用せず、-Dオプションのみを使用" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" -msgstr "" +msgstr "設定ファイルの設定を上書きする" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" -msgstr "" +msgstr "HTMLテンプレートに値を渡す" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" -msgstr "" +msgstr "定義タグ: TAG ブロック\"のみ\"含む" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" -msgstr "" +msgstr "nit-picky モード。不足しているすべての参照について警告する" + +#: sphinx/cmd/build.py:170 +msgid "console output options" +msgstr "コンソール出力オプション" + +#: sphinx/cmd/build.py:172 +msgid "increase verbosity (can be repeated)" +msgstr "精度の増加(繰り返し可能)" #: sphinx/cmd/build.py:174 -msgid "console output options" -msgstr "" +msgid "no output on stdout, just warnings on stderr" +msgstr "標準出力には出力せず、標準エラー出力に警告を出すのみ" #: sphinx/cmd/build.py:176 -msgid "increase verbosity (can be repeated)" -msgstr "" - -#: sphinx/cmd/build.py:178 -msgid "no output on stdout, just warnings on stderr" -msgstr "" - -#: sphinx/cmd/build.py:180 msgid "no output at all, not even warnings" -msgstr "" +msgstr "何も出力せず、警告もしない" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" -msgstr "" +msgstr "色分けで出力する(デフォルト:自動検出)" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" -msgstr "" +msgstr "色分けの出力をしない(デフォルト:自動検出)" + +#: sphinx/cmd/build.py:185 +msgid "write warnings (and errors) to given file" +msgstr "指定ファイルに警告(およびエラー)を書き込む" + +#: sphinx/cmd/build.py:187 +msgid "turn warnings into errors" +msgstr "警告をエラーとして扱う" #: sphinx/cmd/build.py:189 -msgid "write warnings (and errors) to given file" -msgstr "" +msgid "With -W, Keep going when getting warnings" +msgstr "-Wを指定すると、警告が表示されたときは実行を続ける" #: sphinx/cmd/build.py:191 -msgid "turn warnings into errors" -msgstr "" +msgid "show full traceback on exception" +msgstr "例外時にフルトレースバックを表示する" #: sphinx/cmd/build.py:193 -msgid "With -W, Keep going when getting warnings" -msgstr "" - -#: sphinx/cmd/build.py:195 -msgid "show full traceback on exception" -msgstr "" - -#: sphinx/cmd/build.py:197 msgid "run Pdb on exception" -msgstr "" +msgstr "例外が発生したときにPdbを実行する" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" -msgstr "" +msgstr "ファイル %r が見つかりません" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" -msgstr "" +msgstr "-aオプションとファイル名を組み合わせることはできません" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" -msgstr "" +msgstr "警告ファイル %r を開けません: %s" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" -msgstr "" +msgstr "-Dオプション引数は name = value の形式でなければなりません" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" -msgstr "" +msgstr "-Aオプション引数は name = value の形式でなければなりません" + +#: sphinx/cmd/quickstart.py:52 +msgid "automatically insert docstrings from modules" +msgstr "モジュールから自動的に docstring を挿入する" + +#: sphinx/cmd/quickstart.py:53 +msgid "automatically test code snippets in doctest blocks" +msgstr "doctest ブロック内のコードスニペットを自動的にテストする" + +#: sphinx/cmd/quickstart.py:54 +msgid "link between Sphinx documentation of different projects" +msgstr "異なるプロジェクトのSphinxドキュメント間のリンク" + +#: sphinx/cmd/quickstart.py:55 +msgid "write \"todo\" entries that can be shown or hidden on build" +msgstr "ビルド時に表示または非表示にできる \"todo\" エントリを書く" #: sphinx/cmd/quickstart.py:56 -msgid "automatically insert docstrings from modules" -msgstr "" +msgid "checks for documentation coverage" +msgstr "ドキュメントの適用範囲を確認する" #: sphinx/cmd/quickstart.py:57 -msgid "automatically test code snippets in doctest blocks" -msgstr "" +msgid "include math, rendered as PNG or SVG images" +msgstr "PNG または SVG 画像としてレンダリングされた数学を含む" #: sphinx/cmd/quickstart.py:58 -msgid "link between Sphinx documentation of different projects" -msgstr "" +msgid "include math, rendered in the browser by MathJax" +msgstr "MathJax によってブラウザにレンダリングされた数学を含む" #: sphinx/cmd/quickstart.py:59 -msgid "write \"todo\" entries that can be shown or hidden on build" -msgstr "" - -#: sphinx/cmd/quickstart.py:60 -msgid "checks for documentation coverage" -msgstr "" +msgid "conditional inclusion of content based on config values" +msgstr "設定値に基づくコンテンツの条件付き包含" #: sphinx/cmd/quickstart.py:61 -msgid "include math, rendered as PNG or SVG images" -msgstr "" - -#: sphinx/cmd/quickstart.py:62 -msgid "include math, rendered in the browser by MathJax" -msgstr "" +msgid "include links to the source code of documented Python objects" +msgstr "文書化された Python オブジェクトのソースコードへのリンクを含める" #: sphinx/cmd/quickstart.py:63 -msgid "conditional inclusion of content based on config values" -msgstr "" - -#: sphinx/cmd/quickstart.py:65 -msgid "include links to the source code of documented Python objects" -msgstr "" - -#: sphinx/cmd/quickstart.py:67 msgid "create .nojekyll file to publish the document on GitHub pages" -msgstr "" +msgstr "GitHub ページにドキュメントを公開するための .nojekyll ファイルを作成する" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." -msgstr "" +msgstr "有効なパス名を入力してください。" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." -msgstr "" +msgstr "何か入力してください。" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." -msgstr "" +msgstr "%sのいずれかを入力してください。 " -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." -msgstr "" +msgstr "'y' または 'n' を入力してください。" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." -msgstr "" +msgstr "ファイルの拡張子を入力してください。例: '.rst' または '.txt'。" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." -msgstr "" +msgstr "*注:ASCII 以外の文字が入力され、端末のエンコードが不明です -- UTF-8またはLatin-1 を想定しています。" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." -msgstr "" +msgstr "Sphinx %s クイックスタートユーティリティへようこそ。" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." -msgstr "" +msgstr "\n以下の設定値を入力してください(Enter キーのみ押した場合、\nかっこで囲まれた値をデフォルト値として受け入れます)。" -#: sphinx/cmd/quickstart.py:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" -msgstr "" +msgstr "\n選択されたルートパス: %s" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." -msgstr "" +msgstr "\nドキュメントのルートパスを入力してください。" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" -msgstr "" +msgstr "ドキュメントのルートパス" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." -msgstr "" +msgstr "エラー:選択されたルートパスに既存の conf.py が見つかりました。" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." -msgstr "" +msgstr "sphinx-quickstart は、既存の Sphinx プロジェクトを上書きしません。" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" -msgstr "" +msgstr "新しいルートパスを入力してください(または Enter を押すことで終了します)。" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "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 "" +msgstr "\nSphinx 出力用のビルドディレクトリを配置する方法は2つあります。\nルートパス内にある \"_build\" ディレクトリを使うか、\nルートパス内に \"source\" と \"build\" ディレクトリを分ける方法です。" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" -msgstr "" +msgstr "ソースディレクトリとビルドディレクトリを分ける(y / n)" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "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 "" +msgstr "\nプロジェクトのルートディレクトリに 2つ以上のディレクトリが作成されます。\nカスタマイズしたHTMLテンプレート用の\"_templates\"ディレクトリと、カスタマイズしたスタイルシート等を置く\"_static\"ディレクトリがあります。\nこれらのディレクトリは \"_\" で始まっていますが、別の文字(\".\"など)で始まるように指定できます。" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" -msgstr "" +msgstr "テンプレートと静的ディレクトリの名前プレフィックス" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." -msgstr "" +msgstr "\nプロジェクト名は、ビルドされたドキュメントのいくつかの場所にあります。" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" -msgstr "" +msgstr "プロジェクト名" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" -msgstr "" +msgstr "著者名(複数可)" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1553,17 +1442,17 @@ msgid "" "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 "" +msgstr "\nSphinx には、ソフトウェアに対して \"バージョン\" と \"リリース\" という概念が\nあります。各バージョンは複数のリリースを持つことができます。\n例えば、Python だとバージョンが 2.5 や 3.0 のように分かれているように、\nリリースも 2.5.1 や 3.0a1 のように分けて持つことができます。もしこのような多重構成が必要ない場合は、\n両方を同じ値に設定するだけです。" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" -msgstr "" +msgstr "プロジェクトのバージョン" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" -msgstr "" +msgstr "プロジェクトのリリース" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1572,119 +1461,119 @@ msgid "" "\n" "For a list of supported codes, see\n" "http://sphinx-doc.org/config.html#confval-language." -msgstr "" +msgstr "\nドキュメントを英語以外の言語で書く場合は、\n 言語コードで言語を選択できます。Sphinx は生成したテキストをその言語に翻訳します。\n\nサポートされているコードのリストについては、\nhttp://sphinx-doc.org/config.html#confval-language を参照してください。" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" -msgstr "" +msgstr "プロジェクトの言語" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." -msgstr "" +msgstr "\n拡張子の名前はソースファイルに使います。\n通常は \".txt\" または \".rst\" です。これらの拡張子を持つファイルのみがドキュメントと見なされます。" -#: sphinx/cmd/quickstart.py:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" -msgstr "" +msgstr "ソース・ファイルサフィックス" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "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 "" +msgstr "\n1つのドキュメントは、\"コンテンツツリー\"の最上位ノードと\n見なされるという点で特別です。つまり、それはドキュメントにおける階層構造のルートである\nということです。通常、これは \"index\" ですが、\n\"index\" ドキュメントがカスタムテンプレートの場合、これを別のファイル名に設定することもできます。" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" -msgstr "" +msgstr "マスター文書の名前(拡張子を除く)" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." -msgstr "" +msgstr "エラー:マスタファイル %s は、選択されたルートパス上で既に存在します。" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." -msgstr "" +msgstr "sphinx-quickstart は既存のファイルを上書きしません。" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" -msgstr "" +msgstr "新しいファイル名を入力するか、既存のファイルの名前を変更してEnterキーを押してください。" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" -msgstr "" +msgstr "次の Sphinx 拡張機能のうちどれを有効にするかを指定します。" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." -msgstr "" +msgstr "注:imgmath と mathjax を同時に有効にすることはできません。 imgmath は未選択になります。" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "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 "" +msgstr "\nMakefile と Windows コマンドファイルは生成することができるので、\n後は実行するだけです。例えば、直接 sphinx-build を実行する代わりに `make html` を\n実行します。" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" -msgstr "" +msgstr "Makefile を作成しますか? (y/n)" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" -msgstr "" +msgstr "Windows コマンドファイルを作成しますか?(y/n)" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." -msgstr "" +msgstr "ファイル %s を作成しています。" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." -msgstr "" +msgstr "ファイル %s は既に存在しますのでスキップします。" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." -msgstr "" +msgstr "終了:初期ディレクトリ構造が作成されました。" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" "You should now populate your master file %s and create other documentation\n" "source files. " -msgstr "" +msgstr "\nマスターファイル %s を作成して\n他のドキュメントソースファイルを作成します。" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" -msgstr "" +msgstr "次のように Makefile を使ってドキュメントを作成します。\n make builder\n" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" -msgstr "" +msgstr "次のように、ドキュメントを構築するには sphinx-build コマンドを使用してください。\n sphinx-build -b builder %s %s\n" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" -msgstr "" +msgstr "\"builder\" はサポートされているビルダーの 1 つです。 例: html, latex, または linkcheck。\n" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1692,216 +1581,216 @@ msgid "" "sphinx-quickstart is an interactive tool that asks some questions about your\n" "project and then generates a complete documentation directory and sample\n" "Makefile to be used with sphinx-build.\n" -msgstr "" +msgstr "\nSphinx プロジェクトに必要なファイルを生成します。\n\nsphinx-quickstart は、いくつかの質問であなたの\nプロジェクトを生成するためのディレクトリと、sphinx-build と一緒に使える\nサンプルのMakefileを作成してくれるインタラクティブなツールです。\n" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" -msgstr "" +msgstr "Quiet モード" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" -msgstr "" +msgstr "出力ディレクトリ" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "構成オプション" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" -msgstr "" +msgstr "記述した場合、ソースとビルドのディレクトリを分割します。" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." -msgstr "" +msgstr "_templates などのドットの置き換え" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "プロジェクトの基本オプション" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" -msgstr "" +msgstr "プロジェクト名" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" -msgstr "" +msgstr "著者名" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" -msgstr "" +msgstr "プロジェクトのバージョン" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" -msgstr "" +msgstr "プロジェクトのリリース" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" -msgstr "" +msgstr "ドキュメント言語" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" -msgstr "" +msgstr "ソース・ファイルサフィックス" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" -msgstr "" +msgstr "マスタードキュメント名" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" -msgstr "" +msgstr "epubを利用する" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "拡張オプション" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" -msgstr "" +msgstr "%s 拡張を有効にする" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" -msgstr "" +msgstr "任意の拡張を有効にする" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" -msgstr "" +msgstr "Makefileとbatファイルの生成オプション" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" -msgstr "" +msgstr "makefileを作成する" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" -msgstr "" +msgstr "makefileを作成しない" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" -msgstr "" +msgstr "batファイルを作成する" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" -msgstr "" +msgstr "batファイルを作成しない" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" -msgstr "" +msgstr "Makefile / make.bat 向けに make-mode を使う" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" -msgstr "" +msgstr "Makefile / make.bat 向けに make-mode を使わないでください。" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" -msgstr "" +msgstr "プロジェクトテンプレート" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" -msgstr "" +msgstr "テンプレートファイルのテンプレートディレクトリ" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" -msgstr "" +msgstr "テンプレート変数の定義" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." -msgstr "" +msgstr "\"quiet\" が指定されていますが、 \"project\" または \"author\" のいずれも指定されていません。" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." -msgstr "" +msgstr "エラー:指定されたパスはディレクトリではないか、または sphinx ファイルが既に存在します。" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." -msgstr "" +msgstr "sphinx-quickstart は空のディレクトリにのみ生成します。新しいルートパスを指定してください。" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" -msgstr "" +msgstr "無効なテンプレート変数: %s" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "過度なインデント解除が検出されました" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "不正な caption です: %s" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" -msgstr "" +msgstr "行番号の指定が範囲外です (1-%d): %r" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "\"%s\" と \"%s\" のオプションは同時に使用できません" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "インクルードファイル %r が見つからないか読み込めません" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "エンコーディング %r はインクルードファイル %r の読み込みに適さないようです。:encoding: オプションを追加してみてください" -#: sphinx/directives/code.py:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "%r という名前のオブジェクトがインクルードファイル %r 内に見つかりません" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr " \"lineno-match\" は不連続な \"lines\" に対して使用できません" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "指定された %r に一致する行がインクルードファイル %r にありませんでした" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "この節の作者: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "モジュールの作者: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "コードの作者: " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "作者: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "パラメータ" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "戻り値" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "戻り値の型" @@ -1930,12 +1819,12 @@ msgstr "%s (C のデータ型)" msgid "%s (C variable)" msgstr "%s (C の変数)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "の関数" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "のメンバ変数" @@ -1943,7 +1832,7 @@ msgstr "のメンバ変数" msgid "macro" msgstr "のマクロ" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "のデータ型" @@ -1951,297 +1840,262 @@ msgstr "のデータ型" msgid "variable" msgstr "変数" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "バージョン %s で追加" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "バージョン %s で変更" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "バージョン %s で非推奨" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." -msgstr "" +msgstr "'%s' 内で定義されている宣言が重複しています。\n宣言場所は '%s' です。" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "テンプレートパラメータ" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "例外" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ のデータ型)" +msgid "%s (C++ %s)" +msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "%s (C++ のコンセプト)" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++ のメンバ変数)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++ の関数)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++ のクラス)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (C++ の列挙型)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (C++の enumerator)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "クラス" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" -msgstr "" +msgstr "union" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "コンセプト" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "列挙型" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." -msgstr "" +msgstr "'%s' 内で定義されている宣言が重複しています。\n宣言名は '%s' です。" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (組み込み関数)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s のメソッド)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (クラス)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (グローバル変数または定数)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s の属性)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "引数" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (モジュール)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "メソッド" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "データ" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "の属性" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "モジュール" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" -msgstr "" +msgstr "無効な math_eqref_format: %r" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "数式 %s のラベルはすでに %s で使われています" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "キーワード" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "演算子" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "オブジェクト" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "例外" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "文" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "組み込み関数" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "変数" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "例外" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s モジュール)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (組み込み変数)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (%s モジュール)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (組み込みクラス)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (%s のクラス)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s のメソッド)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s の静的メソッド)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s の静的メソッド)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s のクラスメソッド)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s のクラスメソッド)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s の属性)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Pythonモジュール索引" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "モジュール" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "非推奨" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "クラスメソッド" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "の静的メソッド" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" -msgstr "" +msgstr "相互参照 %r に複数のターゲットが見つかりました: %s" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (非推奨)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (ディレクティブ)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (ロール)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "ディレクティブ" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "ロール" @@ -2250,209 +2104,200 @@ msgstr "ロール" msgid "environment variable; %s" msgstr "環境変数; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" -msgstr "" +msgstr "不正なオプションの説明 %r は、\"opt\"、\"-opt args\"、\"--opt args\"、\"/opt args\" または \"+opt args\" のようになります。" -#: sphinx/domains/std.py:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%sコマンドラインオプション; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "用語集の項目" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "文法トークン" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "参照ラベル" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "環境変数" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "プログラムオプション" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "document" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "索引" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "モジュール索引" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "検索ページ" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" -msgstr "" +msgstr "引用 %s はすでに %s で使われています" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" -msgstr "" +msgstr "ラベル %s はすでに %s で使われています" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." -msgstr "" +msgstr "引用 [%s] は参照されていません。" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." -msgstr "" +msgstr "numfig は無効です。:numref: は無視されます。" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" -msgstr "" +msgstr "%s に番号が割り当てられていません: %s" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" -msgstr "" +msgstr "リンクにキャプションがありません: %s" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" -msgstr "" +msgstr "無効な numfig_format: %s (%r)" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" -msgstr "" +msgstr "無効な numfig_format: %s" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" -msgstr "" +msgstr "新しい設定" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" -msgstr "" +msgstr "変更された設定" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" -msgstr "" +msgstr "変更された拡張" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" -msgstr "" +msgstr "ビルド環境のバージョンが最新ではありません" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" -msgstr "" +msgstr "ソースディレクトリが変更されました" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." -msgstr "" +msgstr "この環境は選択したビルダーと互換性がありません。別の doctree ディレクトリーを選択してください。" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" -msgstr "" +msgstr "%s のドキュメントをスキャンできませんでした: %r " -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" -msgstr "" +msgstr "ドメイン %r はまだ登録されていません" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." -msgstr "" +msgstr "自己参照している toctree が見つかりました。無視します。" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" -msgstr "" +msgstr "ドキュメントはどの toctree にも含まれていません" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "%sを参照" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "%sも参照" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" -msgstr "" +msgstr "不明なインデックスエントリタイプ %r" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "記号" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" -msgstr "" +msgstr "循環参照している toctree が検出されましたので無視します: %s <- %s" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" -msgstr "" +msgstr "toctree にはタイトルのないドキュメント %r への参照が含まれています: リンクは生成されません" -#: sphinx/environment/adapters/toctree.py:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "toctree に除外したドキュメントへの参照が含まれています %r" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" -msgstr "" +msgstr "toctree に存在しないドキュメントへの参照が含まれています %r" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" -msgstr "" +msgstr "画像ファイルが読み込めません: %s" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" -msgstr "" +msgstr "画像ファイル %s が読み込めません: %s" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" -msgstr "" +msgstr "ダウンロードファイルが読み込めません: %s" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" -msgstr "" +msgstr "%s はすでにセクション番号が割り当てられています (入れ子になった番号の toctree ?)" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." -msgstr "" +msgstr "ファイル %s を作成したものとします。" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2462,421 +2307,469 @@ msgid "" "excluded from generation.\n" "\n" "Note: By default this script will not overwrite already created files." -msgstr "" +msgstr "\n<MODULE_PATH> 内を再帰的に調べてPython のモジュールとパッケージ、\n後は1つのreST ファイルを <OUTPUT_PATH> 内にあるパッケージ毎の automodule ディレクティブに作成します。\n\n<EXCLUDE_PATTERN> は、ファイル、またはディレクトリ、または両方のパターンを\n生成処理から除外することができます。\n\n注:デフォルトでは、このスクリプトはすでに作成されているファイルを上書きしません。" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" -msgstr "" +msgstr "ドキュメントへのモジュールパス" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" -msgstr "" +msgstr "生成処理から除外するための、ファイル、ディレクトリ、または両方のパターンを記した fnmatch-style 形式" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" -msgstr "" +msgstr "すべての生成データを配置するディレクトリ" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" -msgstr "" +msgstr "目次に表示するサブモジュールの最大深度 (デフォルト: 4)" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" -msgstr "" +msgstr "存在するファイルは上書きする" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." -msgstr "" +msgstr "シンボリックリンクをたどります。collective.recipe.omeletteと組み合わせると強力です。" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" -msgstr "" +msgstr "ファイルを作成せずにスクリプトを実行する" + +#: sphinx/ext/apidoc.py:334 +msgid "put documentation for each module on its own page" +msgstr "各モジュールのドキュメントをそれぞれのページに配置する" + +#: sphinx/ext/apidoc.py:337 +msgid "include \"_private\" modules" +msgstr "\"_private\" モジュールを含めます。" #: sphinx/ext/apidoc.py:339 -msgid "put documentation for each module on its own page" -msgstr "" +msgid "filename of table of contents (default: modules)" +msgstr "目次のファイル名 (デフォルト: モジュール)" -#: sphinx/ext/apidoc.py:342 -msgid "include \"_private\" modules" -msgstr "" +#: sphinx/ext/apidoc.py:341 +msgid "don't create a table of contents file" +msgstr "目次ファイルを生成しない" #: sphinx/ext/apidoc.py:344 -msgid "don't create a table of contents file" -msgstr "" - -#: sphinx/ext/apidoc.py:347 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" -msgstr "" +msgstr "module/package パッケージの見出しを生成しない (例: docstring にすでにそれらが含まれている場合など)" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" -msgstr "" +msgstr "サブモジュールのドキュメントの前に、モジュールのドキュメントを置く" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" -msgstr "" +msgstr "PEP-0420 暗黙の名前空間の指定に従って、モジュールパスを解釈する" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" -msgstr "" +msgstr "ファイルの拡張子 (デフォルト: rst)" + +#: sphinx/ext/apidoc.py:359 +msgid "generate a full project with sphinx-quickstart" +msgstr "sphinx-quickstart を使って完全なプロジェクトを生成する" #: sphinx/ext/apidoc.py:362 -msgid "generate a full project with sphinx-quickstart" -msgstr "" - -#: sphinx/ext/apidoc.py:365 msgid "append module_path to sys.path, used when --full is given" -msgstr "" +msgstr "module_pathを sys.path に追加します。--full が与えられたときに使用されます。" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" -msgstr "" +msgstr "プロジェクト名 (デフォルト: ルートモジュール名)" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" -msgstr "" +msgstr "プロジェクト著者名(複数可)。--full が与えられたときに使用されます。" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" -msgstr "" +msgstr "プロジェクトバージョン。--full が与えられたときに使用されます。" + +#: sphinx/ext/apidoc.py:370 +msgid "project release, used when --full is given, defaults to --doc-version" +msgstr "プロジェクトのリリースバージョン。--full が与えられたときに使用されます。デフォルトは --doc-version" #: sphinx/ext/apidoc.py:373 -msgid "project release, used when --full is given, defaults to --doc-version" -msgstr "" - -#: sphinx/ext/apidoc.py:376 msgid "extension options" -msgstr "" +msgstr "拡張オプション" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." -msgstr "" +msgstr "%s はディレクトリではありません。" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" -msgstr "" +msgstr "invalid regex %r in %s" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." -msgstr "" +msgstr "ソース内のカバレッジのテストが終了したら、%(outdir)spython.txt の結果を確認してください。" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" -msgstr "" +msgstr "coverage_c_regexes 内に無効な正規表現 %r があります" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" -msgstr "" +msgstr "モジュール %s をインポートできませんでした: %s" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "'%s' オプション内に '+' または '-' が不足しています" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' は正しいオプションではありません" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' は正しい pyversion オプションではありません" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" -msgstr "" +msgstr "無効な TestCode タイプ" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." -msgstr "" +msgstr "ソース内の doctests のテストが終了したら、%(outdir)s/output.txt の結果を確認してください。" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" -msgstr "" +msgstr "%sブロックにあるコード/出力 が %s にありません: %s" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" -msgstr "" +msgstr "無効な doctest コードは無視されます: %r" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz ディレクティブはコンテンツとファイル名の両方の引数を持つことは出来ません" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "外部の Graphviz ファイル %r が見つからないか読み込めません" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "コンテンツのない \"graphviz\" ディレクティブを無視します" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "dotは出力ファイルを生成しませんでした:\n[stderr]\n%r\n[stdout]\n%r" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "dot コマンド %r は実行できません (graphviz 出力のために必要です)。graphviz_dot の設定を確認してください" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "dot はエラー終了しました:\n[stderr]\n%s\n[stdout]\n%s" +"%r" +msgstr "dot はエラー終了しました:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "dot はファイルを出力しませんでした:\n[stderr]\n%s\n[stdout]\n%s" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format は %r ではなく 'png' か 'svg' でなければなりません" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" -msgstr "" +msgstr "dot コード %r: %s" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[グラフ: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[グラフ]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "convert コマンド %r は実行できません。image_converter の設定を確認してください" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "convert はエラー終了しました:\n[stderr]\n%s\n[stdout]\n%s" +"%r" +msgstr "変換処理はエラー終了しました:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" -msgstr "" +msgstr "LaTeX コマンド %r を実行できません (数式表示のために必要です)。imgmath_latex の設定を確認してください" -#: sphinx/ext/imgmath.py:163 +#: sphinx/ext/imgmath.py:155 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" -msgstr "" +msgstr "%s コマンド %r を実行できません (数式表示のために必要です)。imgmath_%s の設定を確認してください" -#: sphinx/ext/imgmath.py:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" -msgstr "" +msgstr "latex の表示 %r: %s" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" -msgstr "" +msgstr "latex のインライン表示 %r: %s" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "この数式へのパーマリンク" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" -msgstr "" +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "intersphinx インベントリは移動しました: %s -> %s" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "%s から intersphinx インベントリをロード中..." + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "いくつかのインベントリでいくつかの問題に遭遇しましたが、代替手段を持っていました:" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" -msgstr "" +msgstr "以下の問題があるため、いくつかのインベントリは到達できませんでした:" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "(in %s)" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "intersphinx 識別子 %r は文字列ではありません。無視します" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "intersphinx_mapping [%s] の読み取りに失敗しました。無視します: %r" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[ソース]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "課題" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" -msgstr "" +msgstr "TODO エントリーが見つかりました: %s" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "<<original entry>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "(<<original entry>> は、 %s の %d 行目です)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "元のエントリ" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "モジュールコードをハイライトしています..." + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[ドキュメント]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "モジュールコード" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>%s のソースコード</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "概要: モジュールコード" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>全モジュールのうち、コードを読めるもの</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" -msgstr "" +msgstr "auto%s (%r) の署名が無効です" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" -msgstr "" +msgstr "%sの引数のフォーマット中にエラーが発生しました: %s " -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" -msgstr "" +msgstr "オブジェクト %s に属性 %s がありません" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" -msgstr "" +msgstr "autodoc: ドキュメント化する %r の決定に失敗しました。次の例外が発生しました:\n%s" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, 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 "" +msgstr "ドキュメントの自動生成 %r のためにどのモジュールをインポートするのか分かりません (ドキュメントに \"module\"または \"currentmodule\"ディレクティブを配置するか、明示的なモジュール名を指定してください)" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" -msgstr "" +msgstr "automodule 名の \"::\" は意味がありません" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" -msgstr "" +msgstr "automodule に与えられた署名引数、または戻り値となるアノテーション %s" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" -msgstr "" +msgstr "__all__ は文字列のリストでなければなりません。%r (%s モジュールの中) ではないです -- ignoring __all__" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" -msgstr "" +msgstr ":members: または __all__ に記載されている属性がありません: モジュール %s、属性 %s" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "ベースクラス: %s" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` のエイリアス" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" -msgstr "" +msgstr "autodoc_default_flags の無効なオプションは無視されます: %r" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "toctree は除外したドキュメント %r を参照しています" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "toctree は未知のドキュメント %r を参照しています" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "%s のインポートに失敗しました" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "%sの名前を解析できませんでした " + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "%sオブジェクトをインポートできませんでした " + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." -msgstr "" +msgstr "autosummary は内部的に rst ファイルを生成します。しかしあなたの source_suffix は rst ファイルに含まれていませんでした。スキップします。" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" -msgstr "" +msgstr "[autosummary] %s の autosummary を生成中" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" -msgstr "" +msgstr "[autosummary] %s に書き込み中" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2889,115 +2782,115 @@ msgid "" "``sphinx.ext.autosummary`` Python module and can be read using::\n" "\n" " pydoc sphinx.ext.autosummary\n" -msgstr "" +msgstr "\nautosummary ディレクティブを使って ReStructuredText を生成します。\n\nsphinx-autogen は sphinx.ext.autosummary.generate のフロントエンドです。\n入力されたファイルを含む autosummary ディレクティブから reStructuredText ファイルを\n生成します。\n\nautosummary ディレクティブのフォーマットは\n``sphinx.ext.autosummary`` に記載されています。Pythonモジュールと :: を使って読むことができます。\n\npydoc sphinx.ext.autosummary\n" + +#: sphinx/ext/autosummary/generate.py:383 +msgid "source files to generate rST files for" +msgstr "rST ファイルを生成するためのソースファイル" #: sphinx/ext/autosummary/generate.py:387 -msgid "source files to generate rST files for" -msgstr "" - -#: sphinx/ext/autosummary/generate.py:391 msgid "directory to place all output in" -msgstr "" +msgstr "すべての生成データを配置するディレクトリ" + +#: sphinx/ext/autosummary/generate.py:390 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "ファイルのデフォルト拡張子 (デフォルト: %(default)s)" #: sphinx/ext/autosummary/generate.py:394 #, python-format -msgid "default suffix for files (default: %(default)s)" -msgstr "" +msgid "custom template directory (default: %(default)s)" +msgstr "カスタムテンプレートディレクトリ (デフォルト: %(default)s)" #: sphinx/ext/autosummary/generate.py:398 #, python-format -msgid "custom template directory (default: %(default)s)" -msgstr "" - -#: sphinx/ext/autosummary/generate.py:402 -#, python-format msgid "document imported members (default: %(default)s)" -msgstr "" +msgstr "インポートしたメンバーのドキュメント (デフォルト: %(default)s)" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "キーワード引数" -#: sphinx/ext/napoleon/docstring.py:626 -msgid "Example" -msgstr "" - #: sphinx/ext/napoleon/docstring.py:627 +msgid "Example" +msgstr "サンプル" + +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "サンプル" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "メモ" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" -msgstr "" +msgstr "その他のパラメータ" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" -msgstr "" +msgstr "参照" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" -msgstr "" +msgstr "警告" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" -msgstr "" +msgstr "列挙" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "注意" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "ご用心" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "危険" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "エラー" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "ヒント" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "重要" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "注釈" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "参考" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "ちなみに" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "警告" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "前のページからの続き" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "次のページに続く" #: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 @@ -3009,7 +2902,7 @@ msgstr "検索" msgid "Go" msgstr "検索" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "ソースコードを表示" @@ -3158,13 +3051,13 @@ msgstr "検索" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "検索結果" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3206,36 +3099,36 @@ msgstr "C API に関する変更" msgid "Other changes" msgstr "その他の変更" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "このヘッドラインへのパーマリンク" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "この定義へのパーマリンク" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "検索結果を隠す" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "検索中" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "検索を準備しています..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "検索が完了し、 %s ページ見つけました。" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", in " @@ -3252,223 +3145,223 @@ msgstr "サイドバーをたたむ" msgid "Contents" msgstr "コンテンツ" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" -msgstr "" +msgstr "4列ベースのインデックスが見つかりました。あなたが使っている拡張子のバグかもしれません: %r" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." -msgstr "" +msgstr "Footnote [%s] は参照されていません。" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." -msgstr "" +msgstr "Footnote [#] は参照されていません。" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" -msgstr "" +msgstr "翻訳されたメッセージの footnote 参照が矛盾しています。原文: {0}、翻訳: {1}" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" -msgstr "" +msgstr "翻訳されたメッセージの参照が矛盾しています。原文: {0}、翻訳: {1}" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" -msgstr "" +msgstr "翻訳されたメッセージの引用参照が矛盾しています。原文: {0}、翻訳: {1}" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" -msgstr "" +msgstr "翻訳されたメッセージの用語参照が矛盾しています。原文: {0}、翻訳: {1}" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "'any' クロスリファレンス %r のターゲットが1つ以上みつかりました。 %s に参照を設定します。" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "%s:%s の参照ターゲットが見つかりません: %%(target)s" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "%r の参照ターゲットが見つかりません: %%(target)s" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" -msgstr "" +msgstr "リモート画像を取得できませんでした: %s [%d]" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" -msgstr "" +msgstr "リモート画像を取得できませんでした: %s [%s]" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." -msgstr "" +msgstr "不明な画像フォーマット: %s..." -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "デコードできないソース文字です。\"?\" に置き換えます: %r" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "スキップしました" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "失敗しました" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "ディレクティブのクラスを追加した際に、おそらく追加の引数が指定されまえんでした" #: sphinx/util/i18n.py:74 #, python-format msgid "reading error: %s, %s" -msgstr "" +msgstr "読み取りエラー: %s, %s" #: sphinx/util/i18n.py:81 #, python-format msgid "writing error: %s, %s" -msgstr "" +msgstr "書き込みエラー: %s, %s" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" -msgstr "" +msgstr "日付形式が無効です。直接出力したい場合は、文字列を一重引用符で囲みます: %s" -#: sphinx/util/nodes.py:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" -msgstr "" +msgstr "toctree に存在しないファイルへの参照が含まれています %r" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" -msgstr "" +msgstr "ディレクティブ式のみ評価中に例外が発生しました: %s" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "Python2 構文の評価のサポートは廃止予定であり、Sphinx 4.0 では削除される予定です。%s を Python3 の構文に変換します。" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" -msgstr "" +msgstr "デフォルトのロール %s が見つかりません" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" -msgstr "" +msgstr "%s に numfig_format は定義されていません" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" -msgstr "" +msgstr "いくつかの ID が %s ノードに割り当てられていません" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "このテーブルへのパーマリンク" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "このコードへのパーマリンク" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "この画像へのパーマリンク" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "この目次へのパーマリンク" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." -msgstr "" +msgstr "画像サイズを取得できませんでした。:scale: オプションは無視されます。" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "リリース" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" -msgstr "" +msgstr "不明なクラス %r の toplevel_sectioning %r" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." -msgstr "" +msgstr ":maxdepth: が大きすぎるので無視されます。" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "次のページに続く" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "ページ" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" -msgstr "" +msgstr "ドキュメントのタイトルは、単一の Text ノードではありません" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" -msgstr "" +msgstr "セクション、トピック、表、訓戒またはサイドバーにないタイトルノードが見つかりました。" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "注記" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "tabularcolumns と :widths: オプションの両方が設定されています。:widths: は無視されます。" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." -msgstr "" +msgstr "ディメンション単位 %s が無効です。無視されます。" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" -msgstr "" +msgstr "不明なインデックスエントリタイプ %s が見つかりました" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "不明な設定値 latex_elements[%r] はスキップされました。" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[画像: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[画像]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." -msgstr "" +msgstr "キャプションは図の中にはありません。" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" -msgstr "" +msgstr "未実装のノードタイプ: %r" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" -msgstr "" +msgstr "不明なノードタイプ: %r" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.js b/sphinx/locale/ko/LC_MESSAGES/sphinx.js index 5ded98f90..67c55f218 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ko", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\uc774 \ubb38\uc11c \uc815\ubcf4", "Automatically generated list of changes in version %(version)s": "\ubc84\uc804 %(version)s\uc758 \ubcc0\uacbd \uc0ac\ud56d (\uc774 \ubaa9\ub85d\uc740 \uc790\ub3d9\uc73c\ub85c \uc0dd\uc131\ud569\ub2c8\ub2e4)", "C API changes": "C API\uc5d0 \ub300\ud55c \ubcc0\uacbd", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "\uc0ac\uc774\ub4dc\ubc14 \ub2eb\uae30", "Complete Table of Contents": "\uc885\ud569 \ubaa9\ucc28", "Contents": "\ub0b4\uc6a9", "Copyright": "\uc800\uc791\uad8c", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "\uc0ac\uc774\ub4dc\ubc14 \uc5f4\uae30", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "Full index on one page": "\uc77c\ubc18 \uc0c9\uc778", "General Index": "\uc804\uccb4 \uc0c9\uc778", "Global Module Index": "\ubaa8\ub4c8 \ucd1d \uc0c9\uc778", "Go": "\ubc14\ub85c \uac00\uae30", "Hide Search Matches": "\uac80\uc0c9 \uacb0\uacfc \uc228\uae30\uae30", "Index": "\uc0c9\uc778", "Index – %(key)s": "", "Index pages by letter": "\uc54c\ud30c\ubcb3\ubcc4 \uc0c9\uc778", "Indices and tables:": "\uc0c9\uc778 \ubc0f \ud45c \ubaa9\ub85d:", "Last updated on %(last_updated)s.": "\ucd5c\uc885 \uc5c5\ub370\uc774\ud2b8: %(last_updated)s", "Library changes": "\ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0 \ub300\ud55c \ubcc0\uacbd", "Navigation": "\ud0d0\uc0c9", "Next topic": "\ub2e4\uc74c \ud56d\ubaa9", "Other changes": "\ub2e4\ub978 \ubcc0\uacbd \uc0ac\ud56d", "Overview": "\uac1c\uc694", "Permalink to this definition": "\uc815\uc758 \uc8fc\uc18c", "Permalink to this headline": "\uc81c\ubaa9 \uc8fc\uc18c", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "\uc774\uc804 \ud56d\ubaa9", "Quick search": "\ube60\ub978 \uac80\uc0c9", "Search": "\uac80\uc0c9", "Search Page": "\uac80\uc0c9 \ud398\uc774\uc9c0", "Search Results": "\uac80\uc0c9 \uacb0\uacfc", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "%(docstitle)s\uc5d0\uc11c \ucc3e\uae30", "Searching": "", "Show Source": "\uc18c\uc2a4 \ucf54\ub4dc\ub97c \ubcf4\ub824\uba74", "Table of Contents": "", "This Page": "\ud604\uc7ac \ubb38\uc11c", "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": "\ud568\uc218, \ud074\ub798\uc2a4 \ubc0f \uc6a9\uc5b4 \uac1c\uad00", "can be huge": "\ud070 \uacbd\uc6b0\uac00 \uc788\uc73c\ubbc0\ub85c \uc8fc\uc758", "last updated": "", "lists all sections and subsections": "\uc601\uc5ed\ubcc4 \ubaa9\ucc28", "next chapter": "\ub2e4\uc74c \uc7a5", "previous chapter": "\uc774\uc804 \uc7a5", "quick access to all modules": "\ubaa8\ub4e0 \ubaa8\ub4c8 \uc870\uacac\ud45c", "search": "\uac80\uc0c9", "search this documentation": "\ubb38\uc11c \uac80\uc0c9", "the documentation for": ""}, "plural_expr": "0"}); +Documentation.addTranslations({"locale": "ko", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", \ubb38\uc11c - ", "About these documents": "\uc774 \ubb38\uc11c \uc815\ubcf4", "Automatically generated list of changes in version %(version)s": "\ubc84\uc804 %(version)s\uc758 \ubcc0\uacbd \uc0ac\ud56d (\uc774 \ubaa9\ub85d\uc740 \uc790\ub3d9\uc73c\ub85c \uc0dd\uc131\ud569\ub2c8\ub2e4)", "C API changes": "C API\uc5d0 \ub300\ud55c \ubcc0\uacbd", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "\uc0ac\uc774\ub4dc\ubc14 \ub2eb\uae30", "Complete Table of Contents": "\uc885\ud569 \ubaa9\ucc28", "Contents": "\ub0b4\uc6a9", "Copyright": "\uc800\uc791\uad8c", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \ubc84\uc804\uc73c\ub85c \uc0dd\uc131\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", "Expand sidebar": "\uc0ac\uc774\ub4dc\ubc14 \uc5f4\uae30", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\uc5ec\uae30\uc5d0\uc11c \ubb38\uc11c\ub4e4\uc744 \uac80\uc0c9 \ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc544\ub798 \uc0c1\uc790\uc5d0 \uac80\uc0c9 \ub2e8\uc5b4\ub97c \uc785\ub825\ud558\uace0 \"\uac80\uc0c9\"\uc744 \ud074\ub9ad\ud558\uc2ed\uc2dc\uc624.\n\uac80\uc0c9 \uae30\ub2a5\uc740 \uc790\ub3d9\uc73c\ub85c \ubaa8\ub4e0 \ub2e8\uc5b4\ub97c \uac80\uc0c9\ud569\ub2c8\ub2e4. \ub2e8\uc5b4 \uc218\uac00 \uc801\uc740 \ud398\uc774\uc9c0\ub294 \uacb0\uacfc \ubaa9\ub85d\uc5d0 \ud45c\uc2dc\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.", "Full index on one page": "\ud55c \ud398\uc774\uc9c0\uc5d0 \uc804\uccb4 \uc0c9\uc778 \ubcf4\uae30", "General Index": "\uc804\uccb4 \uc0c9\uc778", "Global Module Index": "\ubaa8\ub4c8 \ucd1d \uc0c9\uc778", "Go": "\uc774\ub3d9", "Hide Search Matches": "\uac80\uc0c9 \uacb0\uacfc \uc228\uae30\uae30", "Index": "\uc0c9\uc778", "Index – %(key)s": "", "Index pages by letter": "\uc54c\ud30c\ubcb3\ubcc4 \uc0c9\uc778", "Indices and tables:": "\uc0c9\uc778 \ubc0f \ud45c \ubaa9\ub85d:", "Last updated on %(last_updated)s.": "\ucd5c\uc885 \uc5c5\ub370\uc774\ud2b8: %(last_updated)s", "Library changes": "\ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0 \ub300\ud55c \ubcc0\uacbd", "Navigation": "\ud0d0\uc0c9", "Next topic": "\ub2e4\uc74c \ud56d\ubaa9", "Other changes": "\ub2e4\ub978 \ubcc0\uacbd \uc0ac\ud56d", "Overview": "\uac1c\uc694", "Permalink to this definition": "\uc815\uc758 \uc8fc\uc18c", "Permalink to this headline": "\uc81c\ubaa9 \uc8fc\uc18c", "Please activate JavaScript to enable the search\n functionality.": "\uac80\uc0c9 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\ub824\uba74 JavaScript\ub97c \ud65c\uc131\ud654\ud558\uc2ed\uc2dc\uc624.", "Preparing search...": "\uac80\uc0c9 \uc900\ube44 \uc911\u2026", "Previous topic": "\uc774\uc804 \ud56d\ubaa9", "Quick search": "\ube60\ub978 \uac80\uc0c9", "Search": "\uac80\uc0c9", "Search Page": "\uac80\uc0c9 \ud398\uc774\uc9c0", "Search Results": "\uac80\uc0c9 \uacb0\uacfc", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "%(docstitle)s\uc5d0\uc11c \ucc3e\uae30", "Searching": "\uac80\uc0c9 \uc911", "Show Source": "\uc18c\uc2a4 \ubcf4\uae30", "Table of Contents": "\ubaa9\ucc28", "This Page": "\ud604\uc7ac \ubb38\uc11c", "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": "\ud568\uc218, \ud074\ub798\uc2a4 \ubc0f \uc6a9\uc5b4 \uac1c\uad00", "can be huge": "\ud070 \uacbd\uc6b0\uac00 \uc788\uc73c\ubbc0\ub85c \uc8fc\uc758", "last updated": "\ucd5c\uc885 \uc5c5\ub370\uc774\ud2b8", "lists all sections and subsections": "\uc601\uc5ed\ubcc4 \ubaa9\ucc28", "next chapter": "\ub2e4\uc74c \uc7a5", "previous chapter": "\uc774\uc804 \uc7a5", "quick access to all modules": "\ubaa8\ub4e0 \ubaa8\ub4c8 \uc870\uacac\ud45c", "search": "\uac80\uc0c9", "search this documentation": "\ubb38\uc11c \uac80\uc0c9", "the documentation for": ""}, "plural_expr": "0"}); \ No newline at end of file diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 84d433a2285ece6a53dfeaf6a70bda0bf828adc0..525097551e55ade0bc6b00969014130737d01c33 100644 GIT binary patch delta 22383 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 delta 16847 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 diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index dae960e9d..6c793d142 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -1,14 +1,15 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: +# YT H <dev@theYT.net>, 2019 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" "MIME-Version: 1.0\n" @@ -18,122 +19,110 @@ msgstr "" "Language: ko\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" +msgstr "설정 디렉토리에 conf.py 파일이 없습니다 (%s)" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" -msgstr "" +msgstr "소스 디렉토리를 찾을 수 없습니다 (%s)" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" -msgstr "" +msgstr "소스 디렉토리와 대상 디렉토리는 같을 수 없습니다" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" -msgstr "" +msgstr "Sphinx 버전 %s 실행 중" #: sphinx/application.py:214 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." -msgstr "" +msgstr "이 프로젝트는 최소 Sphinx 버전 %s이(가) 필요하므로 현재 버전으로 빌드할 수 없습니다." #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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 "" +msgstr "현재 conf.py 파일에 정의된 'setup'은 호출 가능한 Python 객체가 아닙니다. 호출 가능한 함수가 되도록 정의를 수정하십시오.\n이것은 conf.py가 Sphinx 확장 기능으로 동작하는 데 필요합니다." -#: sphinx/application.py:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " -msgstr "" +msgstr "번역을 불러오는 중 [%s]… " -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" -msgstr "" +msgstr "완료" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" +msgstr "기본 제공 메시지를 사용할 수 없습니다" + +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " -msgstr "" - -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" -msgstr "" +msgstr "실패: %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" -msgstr "" +msgstr "선택한 빌더가 없으므로, 기본값인 html을 사용합니다" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" -msgstr "" +msgstr "성공" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" -msgstr "" +msgstr "완료했으나 문제점 발견" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." -msgstr "" +msgstr "빌드 %s, 경고가 %s 개 발생했습니다." -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." -msgstr "" +msgstr "빌드 %s." -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -141,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -149,894 +138,777 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" -msgstr "" +msgstr "병렬 %s 처리" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" -msgstr "" +msgstr "Dictionary 구성 설정 %r을(를) 재정의할 수 없으며, 무시합니다 (개별 요소를 설정하기 위해 %r 사용)" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" -msgstr "" +msgstr "설정 값 %r에 대해 숫자 %r이(가) 유효하지 않으며, 무시합니다" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" -msgstr "" +msgstr "지원되지 않는 유형에 대한 구성 설정 %r을(를) 재정의 할 수 없으며, 무시합니다" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" -msgstr "" +msgstr "재정의 중 알 수 없는 구성 값 %r, 무시합니다" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" -msgstr "" +msgstr "해당 설정값이 없습니다: %s" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" -msgstr "" +msgstr "설정값 %r이(가) 이미 존재합니다" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" -msgstr "" +msgstr "구성 파일(또는 가져온 모듈 중 하나)에서 sys.exit()을 호출했습니다" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" "\n" "%s" -msgstr "" +msgstr "구성 파일에 프로그램 오류가 있습니다:\n\n%s" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" -msgstr "" +msgstr "제 %s 절" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" -msgstr "" +msgstr "그림 %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" -msgstr "" +msgstr "표 %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" -msgstr "" +msgstr "예시 %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." -msgstr "" - -#: sphinx/config.py:459 -msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " -"{permitted}." -msgstr "" +msgstr "설정 값 `{name}`은(는) {candidates} 중 하나여야 하지만, `{current}`이(가) 주어졌습니다." #: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', defaults to " -"`{default.__name__}'." +"The config value `{name}' has type `{current.__name__}'; expected " +"{permitted}." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:478 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "설정 값 `{name}'은(는) `{{current .__name__}' 유형이며, 기본값은 `{default.__name__}'입니다." + +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." +msgstr "구성 값 %r이(가) 비 ASCII 문자가 있는 문자열로 설정되었으며, 이로 인해 유니코드 오류가 발생할 수 있습니다. %r와(과) 같은 유니코드 문자열을 사용하십시오." + +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "primary_domain %r(이)가 없으므로, 무시합니다." + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:58 +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" -msgstr "" +msgstr "이벤트 %r이(가) 이미 존재합니다" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" -msgstr "" +msgstr "알 수 없는 이벤트 이름: %s" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." +msgstr "literal_block을 \"%s\"(으)로 어휘 분석할 수 없습니다. 구문 강조를 건너뜁니다." + +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" -msgstr "" - -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" -msgstr "" +msgstr "빌더 클래스 %s에 \"name\" 속성이 없습니다" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" -msgstr "" +msgstr "%r에 대한 source_parser가 이미 등록되었습니다" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" -msgstr "" +msgstr "%s에 대한 소스 해석기가 등록되지 않았습니다" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" -msgstr "" +msgstr "%r에 대한 source_input이 이미 등록되었습니다" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" -msgstr "" +msgstr "add_node()에 대한 kwargs는 반드시 (visit, depart)의 함수 튜플이어야 합니다: %r=%r" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" -msgstr "" +msgstr "enumerable_node %r이(가) 이미 등록되었습니다" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" -msgstr "" +msgstr "수식 렌더러 %s이(가) 이미 등록되었습니다" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." -msgstr "" - -#: sphinx/registry.py:474 -msgid "Original exception:\n" -msgstr "" +msgstr "확장 %r은(는) 이미 Sphinx에 버전 %s 이후로 병합되었습니다. 이 확장은 무시됩니다." #: sphinx/registry.py:475 +msgid "Original exception:\n" +msgstr "원본 예외:\n" + +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" -msgstr "Python Enhancement Proposals; PEP %s" +msgstr "파이썬 향상 제안; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" -msgstr "" +msgstr "테마 %r에 \"theme\" 설정이 없습니다" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" -msgstr "" +msgstr "테마 %r에 \"inherit\" 설정이 없습니다" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" -msgstr "" +msgstr "지원하지 않는 테마 옵션 %r을(를) 설정했습니다" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " -msgstr "" +msgstr "빌드 중 [mo]: " -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " -msgstr "" +msgstr "출력을 쓰는 중… " -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" -msgstr "" +msgstr "모든 소스 파일" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" -msgstr "" +msgstr "빌드 중 [%s]" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " -msgstr "" +msgstr "오래 된 파일을 찾는 중… " -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" -msgstr "" +msgstr "%d 개 찾음" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" +msgstr "찾은 것이 없습니다" + +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " -msgstr "" - -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "기본" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "모듈 수준" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." -msgstr "" +msgstr "소스 파일을 복사하는 중…" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " -msgstr "" +msgstr "빌드 중 [%s]: " -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " -msgstr "" +msgstr "템플릿을 읽는 중… " -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%Y년 %m월 %d일" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" -msgstr "" +msgstr "이제 html_use_opensearch 설정값은 문자열이어야 합니다" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "전체 색인" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "색인" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "다음" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "이전" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." -msgstr "" +msgstr "색인 생성 중…" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" -msgstr "" +msgstr "%s %s 문서" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" -msgstr "" +msgstr "위의 출력 또는 %(outdir)s/output.txt 파일에서 오류를 확인하십시오." -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1050,188 +922,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "색인" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "출시 버전" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" -msgstr "" +msgstr "인코딩 오류:" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." -msgstr "" +msgstr "자세한 내용은 <http://sphinx-doc.org/>를 참조하십시오." -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1248,255 +1142,249 @@ msgid "" "\n" "By default, everything that is outdated is built. Output only for selected\n" "files can be built by specifying individual filenames.\n" -msgstr "" +msgstr "\n소스 파일로부터 문서를 생성합니다.\n\nsphinx-build는 SOURCEDIR에 있는 파일로부터 문서를 생성하여 OUTPUTDIR에 저장합니다.\n구성 설정을 위해 SOURCEDIR에서 'conf.py' 파일을 찾습니다.\n'sphinx-quickstart' 도구는 'conf.py'를 포함하여 템플릿 파일을 생성하는 데 사용할 수 있습니다.\n\nsphinx-build는 다양한 형식으로 문서를 생성할 수 있습니다.\n형식은 명령줄에서 빌더 이름을 지정하여 선택하며, 기본값은 HTML입니다.\n빌더는 문서 처리와 관련한 다른 태스크를 수행할 수도 있습니다.\n\n기본적으로 오래된 모든 항목을 빌드합니다.\n개별 파일명을 지정하여 선택한 파일에 대한 출력만 빌드할 수 있습니다.\n" + +#: sphinx/cmd/build.py:128 +msgid "path to documentation source files" +msgstr "문서 소스 파일의 경로" + +#: sphinx/cmd/build.py:130 +msgid "path to output directory" +msgstr "출력 디렉토리 경로" #: sphinx/cmd/build.py:132 -msgid "path to documentation source files" -msgstr "" - -#: sphinx/cmd/build.py:134 -msgid "path to output directory" -msgstr "" - -#: sphinx/cmd/build.py:136 msgid "a list of specific files to rebuild. Ignored if -a is specified" -msgstr "" +msgstr "다시 빌드 할 특정 파일의 목록. -a가 지정되면 무시합니다" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" -msgstr "" +msgstr "일반 옵션" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" -msgstr "" +msgstr "사용할 빌더 (기본값: html)" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" -msgstr "" +msgstr "모든 파일 쓰기 (기본값: 새 파일과 변경된 파일만 쓰기)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" -msgstr "" +msgstr "저장된 환경을 사용하지 않고, 항상 모든 파일 읽기" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" -msgstr "" +msgstr "캐시된 환경 및 doctree 파일 경로 (기본값: OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" -msgstr "" +msgstr "가능한 경우 N 개의 프로세스를 사용하여 병렬로 빌드 (특수 값 \"auto\"는 N을 CPU 개수로 설정합니다)" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" -msgstr "" +msgstr "구성 파일(conf.py)이 있는 경로 (기본값: SOURCEDIR과 동일)" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" -msgstr "" +msgstr "설정 파일을 전혀 사용하지 않고, -D 옵션들만 사용" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" -msgstr "" +msgstr "구성 파일의 설정 무시" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" -msgstr "" +msgstr "HTML 템플릿에 값 전달" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" -msgstr "" +msgstr "태그를 정의: 태그가 있는 블록\"만\" 포함됨" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" -msgstr "" +msgstr "까다로움 모드, 모든 누락된 참조에 대해 경고 발생" + +#: sphinx/cmd/build.py:170 +msgid "console output options" +msgstr "콘솔 출력 옵션" + +#: sphinx/cmd/build.py:172 +msgid "increase verbosity (can be repeated)" +msgstr "상세도 높임 (반복 가능)" #: sphinx/cmd/build.py:174 -msgid "console output options" -msgstr "" +msgid "no output on stdout, just warnings on stderr" +msgstr "stdout에 출력하지 않고, stderr에 경고만 표시" #: sphinx/cmd/build.py:176 -msgid "increase verbosity (can be repeated)" -msgstr "" - -#: sphinx/cmd/build.py:178 -msgid "no output on stdout, just warnings on stderr" -msgstr "" - -#: sphinx/cmd/build.py:180 msgid "no output at all, not even warnings" -msgstr "" +msgstr "경고를 포함하여 아무 출력도 하지 않음" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" -msgstr "" +msgstr "컬러 출력 허용 (기본값: 자동 감지)" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" -msgstr "" +msgstr "컬러 출력을 허용하지 않음 (기본값: 자동 감지)" + +#: sphinx/cmd/build.py:185 +msgid "write warnings (and errors) to given file" +msgstr "주어진 파일에 경고(및 오류)를 기록" + +#: sphinx/cmd/build.py:187 +msgid "turn warnings into errors" +msgstr "경고를 오류로 바꿈" #: sphinx/cmd/build.py:189 -msgid "write warnings (and errors) to given file" -msgstr "" +msgid "With -W, Keep going when getting warnings" +msgstr "-W와 함께 사용하여, 경고가 있어도 계속 진행" #: sphinx/cmd/build.py:191 -msgid "turn warnings into errors" -msgstr "" +msgid "show full traceback on exception" +msgstr "예외 발생 시 전체 추적 표시" #: sphinx/cmd/build.py:193 -msgid "With -W, Keep going when getting warnings" -msgstr "" - -#: sphinx/cmd/build.py:195 -msgid "show full traceback on exception" -msgstr "" - -#: sphinx/cmd/build.py:197 msgid "run Pdb on exception" -msgstr "" +msgstr "예외 발생 시 Pdb 실행" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1504,11 +1392,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1516,25 +1404,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" -msgstr "" +msgstr "프로젝트 이름" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" -msgstr "" +msgstr "작성자 이름" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1544,15 +1432,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" -msgstr "" +msgstr "프로젝트 버전" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" -msgstr "" +msgstr "프로젝트 출시 버전" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1563,22 +1451,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" -msgstr "" +msgstr "프로젝트 언어" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1587,36 +1475,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1624,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1654,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1681,216 +1569,216 @@ msgid "" "sphinx-quickstart is an interactive tool that asks some questions about your\n" "project and then generates a complete documentation directory and sample\n" "Makefile to be used with sphinx-build.\n" -msgstr "" +msgstr "\nSphinx 프로젝트에 필요한 파일을 생성합니다.\n\nsphinx-quickstart는 대화형 도구로서, 프로젝트에 대한 몇 가지 질문을 한 다음\n완전한 문서 디렉토리와 (sphinx-build와 함께 사용할 수 있는) 견본 Makefile을 생성합니다.\n" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" -msgstr "" +msgstr "조용한 모드" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" -msgstr "" +msgstr "출력 경로" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" -msgstr "" +msgstr "구조 옵션" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" -msgstr "" +msgstr "지정된 경우, 소스와 빌드 디렉토리를 구분함" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" -msgstr "" +msgstr "프로젝트 기본 옵션" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" -msgstr "" +msgstr "프로젝트 이름" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" -msgstr "" +msgstr "작성자 이름" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" -msgstr "" +msgstr "프로젝트의 버전" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" -msgstr "" +msgstr "프로젝트의 출시 버전" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" -msgstr "" +msgstr "문서 언어" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" -msgstr "" +msgstr "마스터 문서 이름" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" -msgstr "" +msgstr "확장 기능 옵션" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" -msgstr "" +msgstr "%s 확장 기능 사용" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" -msgstr "" +msgstr "임의의 확장 기능 사용" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" -msgstr "" +msgstr "Makefile과 배치 파일 생성" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" -msgstr "" +msgstr "makefile 생성" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" -msgstr "" +msgstr "makefile을 생성하지 않음" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" -msgstr "" +msgstr "배치 파일 생성" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" -msgstr "" +msgstr "배치 파일을 생성하지 않음" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" -msgstr "" +msgstr "프로젝트 템플릿" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " -msgstr "" +msgstr "모듈 작성자: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " -msgstr "" +msgstr "코드 작성자: " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " -msgstr "" +msgstr "작성자: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" -msgstr "" +msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" -msgstr "매개 변수" +msgstr "매개변수" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" -msgstr "반환" +msgstr "반환값" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "반환 형식" @@ -1919,12 +1807,12 @@ msgstr "%s (C 데이터 형식)" msgid "%s (C variable)" msgstr "%s (C 변수)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "함수" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "멤버 변수" @@ -1932,7 +1820,7 @@ msgstr "멤버 변수" msgid "macro" msgstr "매크로" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "데이터 형식" @@ -1940,297 +1828,262 @@ msgstr "데이터 형식" msgid "variable" msgstr "변수" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "버전 %s에 추가" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" -msgstr "버전 %s으로 변경" +msgstr "버전 %s에서 변경" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" -msgstr "버전 %s 폐지" +msgstr "버전 %s부터 폐지" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" -msgstr "" +msgstr "템플릿 매개변수" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "예외" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ 데이터 형식)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++의 멤버 변수)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++ 함수)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++ 클래스)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "클래스" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" -msgstr "%s() 내장 함수)" +msgstr "%s() (내장 함수)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 메서드)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (클래스)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (전역 변수 또는 상수)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s의 속성)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "인수" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (모듈)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" -msgstr "메소드" +msgstr "메서드" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "데이터" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "속성" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "모듈" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "키워드" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "연산자" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "객체" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "예외" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "글" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "내장 함수" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "변수" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "예외" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s 모듈)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (내장 변수)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (%s 모듈)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" -msgstr "%s (내장 변수)" +msgstr "%s (내장 클래스)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" -msgstr "%s (%s 종류)" +msgstr "%s (%s 클래스)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" -msgstr "" +msgstr "%s() (%s.%s의 메서드)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" -msgstr "" +msgstr "%s() (%s.%s의 정적 메서드)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s의 정적 메서드)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" -msgstr "" +msgstr "%s() (%s.%s의 클래스 메서드)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" -msgstr "%s() (%s 클래스 메서드)" +msgstr "%s() (%s의 클래스 메서드)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" -msgstr "" +msgstr "%s (%s.%s의 속성)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Python 모듈 목록" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "모듈" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "폐지" -#: sphinx/domains/python.py:745 -msgid "class method" -msgstr "클래스 메소드" - #: sphinx/domains/python.py:746 +msgid "class method" +msgstr "클래스 메서드" + +#: sphinx/domains/python.py:747 msgid "static method" msgstr "정적 메서드" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (지시문)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (역할)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "지시자" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "역할" @@ -2239,209 +2092,200 @@ msgstr "역할" msgid "environment variable; %s" msgstr "환경 변수; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%s 명령; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" -msgstr "용어의 항목" +msgstr "용어 항목" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "문법 토큰" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "참조 레이블" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "환경 변수" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "프로그램 옵션" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "색인" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "모듈 목록" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "검색 페이지" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" -msgstr "" +msgstr "새로운 설정" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" -msgstr "" +msgstr "설정이 변경됨" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" -msgstr "" +msgstr "확장 기능이 변경됨" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "%s 문서" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "%s 참조" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" -msgstr "" +msgstr "기호" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2453,352 +2297,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" -msgstr "" +msgstr "이 수식에 대한 퍼머링크" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[소스]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" -msgstr "과제" +msgstr "할 일" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" -msgstr "" +msgstr "TODO 항목을 찾았습니다: %s" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" -msgstr "" +msgstr "<<원래 항목>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" -msgstr "" +msgstr "(<<원래 항목>>은 %s 파일, %d 행에 있습니다.)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "원래 항목" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[문서]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "모듈 코드" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" -msgstr "" +msgstr "<h1>%s의 소스 코드</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" -msgstr "설명: 모듈 코드" +msgstr "개요: 모듈 코드" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2806,66 +2679,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" -msgstr "" +msgstr "기반 클래스: %s" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2880,113 +2772,113 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" -msgstr "" - -#: sphinx/ext/napoleon/docstring.py:626 -msgid "Example" -msgstr "" +msgstr "키워드 인수" #: sphinx/ext/napoleon/docstring.py:627 +msgid "Example" +msgstr "예제" + +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" -msgstr "" +msgstr "예제" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" -msgstr "" +msgstr "참고" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" -msgstr "" +msgstr "기타 매개변수" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" -msgstr "" +msgstr "참조" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "주의" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "조심" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "위험" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "오류" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "힌트" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "중요" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" -msgstr "주석" +msgstr "참고" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "더 보기" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" -msgstr "참고" +msgstr "팁" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "경고" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "이전 페이지에서 계속" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" -msgstr "일반 색인" +msgstr "다음 페이지에 계속" #: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 @@ -2996,11 +2888,11 @@ msgstr "검색" #: sphinx/themes/agogo/layout.html:54 sphinx/themes/basic/searchbox.html:16 msgid "Go" -msgstr "바로 가기" +msgstr "이동" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" -msgstr "소스 코드를 보려면" +msgstr "소스 보기" #: sphinx/themes/basic/defindex.html:11 msgid "Overview" @@ -3016,7 +2908,7 @@ msgstr "" #: sphinx/themes/basic/defindex.html:17 msgid "last updated" -msgstr "" +msgstr "최종 업데이트" #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" @@ -3056,7 +2948,7 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:72 msgid "Full index on one page" -msgstr "일반 색인" +msgstr "한 페이지에 전체 색인 보기" #: sphinx/themes/basic/genindex-split.html:16 msgid "Index pages by letter" @@ -3103,7 +2995,7 @@ msgstr "최종 업데이트: %(last_updated)s" msgid "" "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> " "%(sphinx_version)s." -msgstr "" +msgstr "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s 버전으로 생성되었습니다." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -3130,7 +3022,7 @@ msgstr "다음 장" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" +msgstr "검색 기능을 사용하려면 JavaScript를 활성화하십시오." #: sphinx/themes/basic/search.html:35 msgid "" @@ -3138,7 +3030,7 @@ msgid "" " words into the box below and click \"search\". Note that the search\n" " function will automatically search for all of the words. Pages\n" " containing fewer words won't appear in the result list." -msgstr "" +msgstr "여기에서 문서들을 검색 할 수 있습니다. 아래 상자에 검색 단어를 입력하고 \"검색\"을 클릭하십시오.\n검색 기능은 자동으로 모든 단어를 검색합니다. 단어 수가 적은 페이지는 결과 목록에 표시되지 않습니다." #: sphinx/themes/basic/search.html:42 #: sphinx/themes/basic/searchresults.html:17 @@ -3147,13 +3039,13 @@ msgstr "검색" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "검색 결과" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3195,38 +3087,38 @@ msgstr "C API에 대한 변경" msgid "Other changes" msgstr "다른 변경 사항" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "제목 주소" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "정의 주소" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "검색 결과 숨기기" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" -msgstr "" +msgstr "검색 중" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." -msgstr "" +msgstr "검색 준비 중…" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " -msgstr "" +msgstr ", 문서 - " #: sphinx/themes/classic/static/sidebar.js_t:83 msgid "Expand sidebar" @@ -3241,223 +3133,223 @@ msgstr "사이드바 닫기" msgid "Contents" msgstr "내용" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "디코드 할 수 없는 원본 문자이며, \"?\"로 대체합니다: %r" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" #: sphinx/util/i18n.py:74 #, python-format msgid "reading error: %s, %s" -msgstr "" +msgstr "읽기 오류: %s, %s" #: sphinx/util/i18n.py:81 #, python-format msgid "writing error: %s, %s" -msgstr "" +msgstr "쓰기 오류: %s, %s" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 -msgid "Permalink to this table" -msgstr "" - -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 -msgid "Permalink to this code" -msgstr "" - #: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +msgid "Permalink to this table" +msgstr "이 표에 대한 퍼머링크" + +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 +msgid "Permalink to this code" +msgstr "이 코드에 대한 퍼머링크" + +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" -msgstr "" +msgstr "이 이미지에 대한 퍼머링크" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" -msgstr "" +msgstr "이 목차에 대한 퍼머링크" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "출시" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" -msgstr "참고" +msgstr "각주" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" -msgstr "" +msgstr "[그림: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[그림]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.js b/sphinx/locale/lt/LC_MESSAGES/sphinx.js index c9c9eac12..53a05936d 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "lt", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "Apie \u0161iuos dokumentus", "Automatically generated list of changes in version %(version)s": "Automati\u0161kai sugeneruotas pakeitim\u0173 %(version)s versijoje s\u0105ra\u0161as", "C API changes": "C API pakeitimai", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Pasl\u0117pti \u0161onin\u0119 juost\u0105", "Complete Table of Contents": "Pilnas Turinys", "Contents": "Turinys", "Copyright": "Autoriaus teis\u0117s", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Sukurta naudojant <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "I\u0161pl\u0117sti \u0161onin\u0119 juost\u0105", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u010cia j\u016bs galite ie\u0161koti \u0161iuose dokumentuose. \u012eveskite savo paie\u0161kos\n \u017eod\u017eius \u012f lauk\u0105 apa\u010dioje ir paspauskite \"ie\u0161koti\". Pasteb\u0117sime, kad paie\u0161kos\n funkcija automati\u0161kai ie\u0161kos vis\u0173 \u017eod\u017ei\u0173. Puslapiai,\n kuriuose yra ma\u017eiau \u017eod\u017ei\u0173 nepasirodys tarp paie\u0161kos rezultat\u0173.", "Full index on one page": "Pilnas indeksas viename puslapyje", "General Index": "Bendras indeksas", "Global Module Index": "Globalus Modulio Indeksas", "Go": "Pirmyn", "Hide Search Matches": "Pasl\u0117pti paie\u0161kos rezultatus", "Index": "Indeksas", "Index – %(key)s": "Indeksas – %(key)s", "Index pages by letter": "Indekso puslapiai pagal raid\u0119", "Indices and tables:": "Indeksai ir lentel\u0117s:", "Last updated on %(last_updated)s.": "Paskutinis atnaujinimas %(last_updated)s.", "Library changes": "Bibliotekos pakeitimai", "Navigation": "Navigacija", "Next topic": "Kita tema", "Other changes": "Kiti pakeitimai", "Overview": "Ap\u017evalga", "Permalink to this definition": "Nuoroda \u012f \u0161\u012f apibr\u0117\u017eim\u0105", "Permalink to this headline": "Nuoroda \u012f \u0161i\u0105 antra\u0161t\u0119", "Please activate JavaScript to enable the search\n functionality.": "Pra\u0161ome aktyvuoti JavaScript, kad veikt\u0173 paie\u0161kos\n funkcionalumas.", "Preparing search...": "", "Previous topic": "Praeita tema", "Quick search": "Greitoji paie\u0161ka", "Search": "Paie\u0161ka", "Search Page": "Paie\u0161kos puslapis", "Search Results": "Paie\u0161kos rezultatai", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Ie\u0161koti tarp %(docstitle)s", "Searching": "", "Show Source": "Rodyti pirmin\u012f kod\u0105", "Table of Contents": "", "This Page": "\u0160is puslapis", "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": "visos funkcijos, klas\u0117s ir terminai", "can be huge": "gali b\u016bti didelis", "last updated": "", "lists all sections and subsections": "sura\u0161yti visus skyrius ir poskyrius", "next chapter": "kita dalis", "previous chapter": "praeita dalis", "quick access to all modules": "greitas vis\u0173 moduli\u0173 pasiekimas", "search": "ie\u0161koti", "search this documentation": "ie\u0161koti \u0161iame dokumente", "the documentation for": ""}, "plural_expr": "(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3)"}); +Documentation.addTranslations({"locale": "lt", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "Apie \u0161iuos dokumentus", "Automatically generated list of changes in version %(version)s": "Automati\u0161kai sugeneruotas pakeitim\u0173 %(version)s versijoje s\u0105ra\u0161as", "C API changes": "C API pakeitimai", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Pasl\u0117pti \u0161onin\u0119 juost\u0105", "Complete Table of Contents": "Pilnas Turinys", "Contents": "Turinys", "Copyright": "Autoriaus teis\u0117s", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Sukurta naudojant <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "I\u0161pl\u0117sti \u0161onin\u0119 juost\u0105", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u010cia j\u016bs galite ie\u0161koti \u0161iuose dokumentuose. \u012eveskite savo paie\u0161kos\n \u017eod\u017eius \u012f lauk\u0105 apa\u010dioje ir paspauskite \"ie\u0161koti\". Pasteb\u0117sime, kad paie\u0161kos\n funkcija automati\u0161kai ie\u0161kos vis\u0173 \u017eod\u017ei\u0173. Puslapiai,\n kuriuose yra ma\u017eiau \u017eod\u017ei\u0173 nepasirodys tarp paie\u0161kos rezultat\u0173.", "Full index on one page": "Pilnas indeksas viename puslapyje", "General Index": "Bendras indeksas", "Global Module Index": "Globalus Modulio Indeksas", "Go": "Pirmyn", "Hide Search Matches": "Pasl\u0117pti paie\u0161kos rezultatus", "Index": "Indeksas", "Index – %(key)s": "Indeksas – %(key)s", "Index pages by letter": "Indekso puslapiai pagal raid\u0119", "Indices and tables:": "Indeksai ir lentel\u0117s:", "Last updated on %(last_updated)s.": "Paskutinis atnaujinimas %(last_updated)s.", "Library changes": "Bibliotekos pakeitimai", "Navigation": "Navigacija", "Next topic": "Kita tema", "Other changes": "Kiti pakeitimai", "Overview": "Ap\u017evalga", "Permalink to this definition": "Nuoroda \u012f \u0161\u012f apibr\u0117\u017eim\u0105", "Permalink to this headline": "Nuoroda \u012f \u0161i\u0105 antra\u0161t\u0119", "Please activate JavaScript to enable the search\n functionality.": "Pra\u0161ome aktyvuoti JavaScript, kad veikt\u0173 paie\u0161kos\n funkcionalumas.", "Preparing search...": "", "Previous topic": "Praeita tema", "Quick search": "Greitoji paie\u0161ka", "Search": "Paie\u0161ka", "Search Page": "Paie\u0161kos puslapis", "Search Results": "Paie\u0161kos rezultatai", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Ie\u0161koti tarp %(docstitle)s", "Searching": "", "Show Source": "Rodyti pirmin\u012f kod\u0105", "Table of Contents": "", "This Page": "\u0160is puslapis", "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": "visos funkcijos, klas\u0117s ir terminai", "can be huge": "gali b\u016bti didelis", "last updated": "", "lists all sections and subsections": "sura\u0161yti visus skyrius ir poskyrius", "next chapter": "kita dalis", "previous chapter": "praeita dalis", "quick access to all modules": "greitas vis\u0173 moduli\u0173 pasiekimas", "search": "ie\u0161koti", "search this documentation": "ie\u0161koti \u0161iame dokumente", "the documentation for": ""}, "plural_expr": "(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3)"}); \ No newline at end of file diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index bb09b0e5434b6be3acd837edc808652531cdb274..e75d4129acb91caacec422e2c606b66cb15e59c0 100644 GIT binary patch delta 14037 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 delta 16109 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 aO|Hm8tHzi2tm-=P|I>@rqW`BaR{sJD3RnOD diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index a2401dbc1..b991d5a4c 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" "MIME-Version: 1.0\n" @@ -19,21 +19,21 @@ msgstr "" "Language: lt\n" "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -46,95 +46,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -150,60 +138,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -211,833 +193,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Įtaisytieji" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Modulio lygis" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%Y-%m-%d" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Bendras indeksas" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "indeksas" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "kitas" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "praeitas" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1051,188 +922,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (kuris yra " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Indeksas" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Leidimas" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1251,253 +1144,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1505,11 +1392,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1517,25 +1404,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1545,15 +1432,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1564,22 +1451,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1588,36 +1475,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1625,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1655,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1684,214 +1571,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Skyriaus autorius: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Modulio autorius: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Kodo autorius: " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Autorius: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametrai" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Grąžinamos reikšmės" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Grąžinamos reikšmės tipas" @@ -1920,12 +1807,12 @@ msgstr "%s (C tipas)" msgid "%s (C variable)" msgstr "%s (C kintamasis)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "narys" @@ -1933,7 +1820,7 @@ msgstr "narys" msgid "macro" msgstr "makrokomanda" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "tipas" @@ -1941,297 +1828,262 @@ msgstr "tipas" msgid "variable" msgstr "kintamasis" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Nauja %s versijoje" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Pakeista %s versijoje" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Nebepalaikoma nuo %s versijos" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Išmeta" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ tipas)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++ narys)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++ funkcija)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "klasė" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (itaisytoji funkcija)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodas)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (klasė)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globalus kintamasis arba konstanta)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributas)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Argumentais" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "metodas" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "duomenys" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "atribudas" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "modulis" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "bazinis žodis" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operatorius" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "objektas" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "išimtis" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "sakinis" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "įtaisytoji funkcija" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Kintamieji" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Sukelia" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (modulyje %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (įtaisytasis kintamasis)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (modulje %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (įtaisytoji klasė)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (klasė iš %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metodas)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statinis metodas)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statinis metodas)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klasės metodas)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klasės metodas)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atributas)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "moduliai" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Atmestas" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "klasės metodas" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "statinis metodas" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (atmestas)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (direktyva)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (rolė)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "direktyva" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "rolė" @@ -2240,209 +2092,200 @@ msgstr "rolė" msgid "environment variable; %s" msgstr "aplinkos kintamasis; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%skomandinės eilutės parinktis; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "aiškinamasis terminas" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "gramatinė leksema" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "nuorodos požymis" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "aplinkos kintamasis" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "programos parinktis" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Indeksas" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Modulio indeksas" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Paieškos puslapis" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2454,352 +2297,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[šaltinis]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Padaryti" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "originalus įrašas" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[dokumentai]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Modulio kodas" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Kodas %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Apžvalga: modulio kodas" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Visi moduliai turintys kodą</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2807,66 +2679,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` alternatyvus vardas" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2881,106 +2772,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Dėmesio" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Atsargiai" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Pavojinga" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Klaida" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Patarimas" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Svarbu" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Pastaba" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Taip pat žiūrėkite" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Patarimas" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Įspėjimas" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "tęsinys iš praeito puslapio" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Tęsinys kitame puslapyje" @@ -2999,7 +2890,7 @@ msgstr "Paieška" msgid "Go" msgstr "Pirmyn" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Rodyti pirminį kodą" @@ -3148,13 +3039,13 @@ msgstr "ieškoti" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Paieškos rezultatai" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3196,36 +3087,36 @@ msgstr "C API pakeitimai" msgid "Other changes" msgstr "Kiti pakeitimai" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Nuoroda į šią antraštę" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Nuoroda į šį apibrėžimą" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Paslėpti paieškos rezultatus" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3242,76 +3133,89 @@ msgstr "Paslėpti šoninę juostą" msgid "Contents" msgstr "Turinys" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3325,140 +3229,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Leidimas" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Išnašos" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[paveiksliukas]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.js b/sphinx/locale/lv/LC_MESSAGES/sphinx.js index d8a16c96b..17a0bc34d 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "lv", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "Par \u0161iem dokumentiem", "Automatically generated list of changes in version %(version)s": "Autom\u0101tiski sagatavots izmai\u0146u saraksts versijai %(version)s", "C API changes": "Izmai\u0146as iek\u0161 C API", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Sav\u0113rst s\u0101njoslu", "Complete Table of Contents": "Pilns saturs", "Contents": "Saturs", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Sagatavots izmantojot <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Izplest s\u0101njoslu", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u0160eit J\u016bs varat mekl\u0113t \u0161ajos dokumentos. Nor\u0101diet mekl\u0113jamus v\u0101rdus\n ievada lauka un uzklik\u0161\u0137iniet pogu \"mekl\u0113t\". L\u016bdzu iev\u0113rojiet,\n ka mekl\u0113\u0161anas programma atrad\u012bs tikai tos dokumentus, kuros ir\n visi ievad\u012btie v\u0101rdi. Dokumenti, kuros ir tikai da\u013ca no ievad\u012btiem\n v\u0101rdiem, netiks atlas\u012bti.", "Full index on one page": "Pilns indekss vien\u0101 lappus\u0113", "General Index": "Visp\u0101r\u0113js indekss", "Global Module Index": "Visp\u0101r\u0113js modu\u013cu indekss", "Go": "Izpild\u012bt", "Hide Search Matches": "Pasl\u0113pt atlases v\u0101rdus", "Index": "Indekss", "Index – %(key)s": "Indekss – %(key)s", "Index pages by letter": "Lappu\u0161u indekss p\u0113c burtiem", "Indices and tables:": "Indeksi un tabulas:", "Last updated on %(last_updated)s.": "P\u0113d\u0113jas izmai\u0146as %(last_updated)s.", "Library changes": "Bibliot\u0113kas izmai\u0146as", "Navigation": "Navig\u0101cija", "Next topic": "n\u0101ko\u0161a t\u0113ma", "Other changes": "Citas izmai\u0146as", "Overview": "Apskats", "Permalink to this definition": "Past\u0101v\u012bga nor\u0101de uz \u0161o defin\u012bciju", "Permalink to this headline": "Past\u0101v\u012bga nor\u0101de \u0161o virsrakstu", "Please activate JavaScript to enable the search\n functionality.": "Lai iesp\u0113jotu mekl\u0113\u0161anu, l\u016bdzu aktiviz\u0113t JavaScript.", "Preparing search...": "", "Previous topic": "iepriek\u0161\u0113ja t\u0113ma", "Quick search": "\u0100tra mekl\u0113\u0161ana", "Search": "Mekl\u0113t", "Search Page": "Atlases lapa", "Search Results": "Atlases rezult\u0101ti", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Mekl\u0113t iek\u0161 %(docstitle)s", "Searching": "", "Show Source": "R\u0101d\u012bt izejas tekstu", "Table of Contents": "", "This Page": "\u0160\u012b lappuse", "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": "visas funkcijas, klases un termini", "can be huge": "var b\u016bt milz\u012bgs", "last updated": "", "lists all sections and subsections": "r\u0101da visas sekcijas un apak\u0161sekcijas", "next chapter": "n\u0101ko\u0161a sada\u013ca", "previous chapter": "iepriek\u0161\u0113ja sada\u013ca", "quick access to all modules": "\u0101tra piek\u013cuve visiem moduliem", "search": "mekl\u0113t", "search this documentation": "mekl\u0113t \u0161aj\u0101 dokument\u0101cij\u0101", "the documentation for": ""}, "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)"}); +Documentation.addTranslations({"locale": "lv", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "Par \u0161iem dokumentiem", "Automatically generated list of changes in version %(version)s": "Autom\u0101tiski sagatavots izmai\u0146u saraksts versijai %(version)s", "C API changes": "Izmai\u0146as iek\u0161 C API", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Sav\u0113rst s\u0101njoslu", "Complete Table of Contents": "Pilns saturs", "Contents": "Saturs", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Sagatavots izmantojot <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Izplest s\u0101njoslu", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u0160eit J\u016bs varat mekl\u0113t \u0161ajos dokumentos. Nor\u0101diet mekl\u0113jamus v\u0101rdus\n ievada lauka un uzklik\u0161\u0137iniet pogu \"mekl\u0113t\". L\u016bdzu iev\u0113rojiet,\n ka mekl\u0113\u0161anas programma atrad\u012bs tikai tos dokumentus, kuros ir\n visi ievad\u012btie v\u0101rdi. Dokumenti, kuros ir tikai da\u013ca no ievad\u012btiem\n v\u0101rdiem, netiks atlas\u012bti.", "Full index on one page": "Pilns indekss vien\u0101 lappus\u0113", "General Index": "Visp\u0101r\u0113js indekss", "Global Module Index": "Visp\u0101r\u0113js modu\u013cu indekss", "Go": "Izpild\u012bt", "Hide Search Matches": "Pasl\u0113pt atlases v\u0101rdus", "Index": "Indekss", "Index – %(key)s": "Indekss – %(key)s", "Index pages by letter": "Lappu\u0161u indekss p\u0113c burtiem", "Indices and tables:": "Indeksi un tabulas:", "Last updated on %(last_updated)s.": "P\u0113d\u0113jas izmai\u0146as %(last_updated)s.", "Library changes": "Bibliot\u0113kas izmai\u0146as", "Navigation": "Navig\u0101cija", "Next topic": "n\u0101ko\u0161a t\u0113ma", "Other changes": "Citas izmai\u0146as", "Overview": "Apskats", "Permalink to this definition": "Past\u0101v\u012bga nor\u0101de uz \u0161o defin\u012bciju", "Permalink to this headline": "Past\u0101v\u012bga nor\u0101de \u0161o virsrakstu", "Please activate JavaScript to enable the search\n functionality.": "Lai iesp\u0113jotu mekl\u0113\u0161anu, l\u016bdzu aktiviz\u0113t JavaScript.", "Preparing search...": "", "Previous topic": "iepriek\u0161\u0113ja t\u0113ma", "Quick search": "\u0100tra mekl\u0113\u0161ana", "Search": "Mekl\u0113t", "Search Page": "Atlases lapa", "Search Results": "Atlases rezult\u0101ti", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Mekl\u0113t iek\u0161 %(docstitle)s", "Searching": "", "Show Source": "R\u0101d\u012bt izejas tekstu", "Table of Contents": "", "This Page": "\u0160\u012b lappuse", "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": "visas funkcijas, klases un termini", "can be huge": "var b\u016bt milz\u012bgs", "last updated": "", "lists all sections and subsections": "r\u0101da visas sekcijas un apak\u0161sekcijas", "next chapter": "n\u0101ko\u0161a sada\u013ca", "previous chapter": "iepriek\u0161\u0113ja sada\u013ca", "quick access to all modules": "\u0101tra piek\u013cuve visiem moduliem", "search": "mekl\u0113t", "search this documentation": "mekl\u0113t \u0161aj\u0101 dokument\u0101cij\u0101", "the documentation for": ""}, "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)"}); \ No newline at end of file diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index 8ef4a6b7418ac7d38d08e8de8e4d08f23407b5ef..e67e38c531f801031ca6a31efcdff4b2f5fa02c0 100644 GIT binary patch delta 14009 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 Gt$zoL8Vx7_ delta 16153 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 diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.po b/sphinx/locale/lv/LC_MESSAGES/sphinx.po index 76b25f322..1b1b36ed0 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" "MIME-Version: 1.0\n" @@ -18,21 +18,21 @@ msgstr "" "Language: lv\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -45,95 +45,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -141,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -149,60 +137,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -210,833 +192,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Iebūvētie" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Moduļu līmenis" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Vispārējs indekss" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "indekss" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "nākošais" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "iepriekšējs" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1050,188 +921,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (iekš " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Indekss" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Izlaidums" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1250,253 +1143,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1504,11 +1391,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1516,25 +1403,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1544,15 +1431,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1563,22 +1450,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1587,36 +1474,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1624,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1654,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1683,214 +1570,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Sekcijas autors: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Moduļa autors: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Koda autors: " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Autors: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Atgriež" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Atgriežamais tips" @@ -1919,12 +1806,12 @@ msgstr "%s (C tips)" msgid "%s (C variable)" msgstr "%s (C mainīgais)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "loceklis" @@ -1932,7 +1819,7 @@ msgstr "loceklis" msgid "macro" msgstr "makross" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "tips" @@ -1940,297 +1827,262 @@ msgstr "tips" msgid "variable" msgstr "mainīgais" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Jauns versijā %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Mainīts versijā %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Neieteicams no versijas %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Izmet" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ tips)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++ loceklis)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++ funkcija)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++ klase)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "klase" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (iebūvēta funkcija)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metods)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globālais mainīgais vai konstanta)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributs)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Argumenti" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "metods" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "atributs" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "modulis" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "atslēgas vārds" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operators" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "objekts" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "izņēmums" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "priekšraksts" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "iebūvēta funkcija" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Mainīgie" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Ceļ" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moduļī %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (iebūvētais mainīgais)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (moduļī %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (iebūvēta klase)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (klase iekš %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metods)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statiskais metods)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statiskais metods)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klases metods)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klases metods)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atributs)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "moduļi" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Nav ieteicams" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "klases metods" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "statiskais metods" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (direktīva)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (role)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "direktīva" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "role" @@ -2239,209 +2091,200 @@ msgstr "role" msgid "environment variable; %s" msgstr "apkārtnes mainīgais; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%skomandrindas opcija; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "glosārija termins" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "gramatiskais marķieris" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "atsauces virsraksts" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "apkārtnes mainīgais" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "programmas opcija" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Indekss" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Moduļu indekss" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Atlases lapa" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2453,352 +2296,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[kods]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Jāizdara" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "sākotnējs ieraksts" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[dokumenti]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Moduļa teksts" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>%s izejas teksts</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Apskats: moduļa teksts" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Visi moduļi, kuriem ir izejas teksti</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2806,66 +2678,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "aizstājvārds klasei :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2880,106 +2771,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Uzmanību" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Uzmanies" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Bīstami" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Kļūda" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Mājiens" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Svarīgi" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Piezīme" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Skat.arī" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Padoms" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Brīdinājums" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "turpinājums no iepriekšējās lappuses" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Turpnājums nākošā lappusē" @@ -2998,7 +2889,7 @@ msgstr "Meklēt" msgid "Go" msgstr "Izpildīt" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Rādīt izejas tekstu" @@ -3147,13 +3038,13 @@ msgstr "meklēt" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Atlases rezultāti" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3195,36 +3086,36 @@ msgstr "Izmaiņas iekš C API" msgid "Other changes" msgstr "Citas izmaiņas" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Pastāvīga norāde šo virsrakstu" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Pastāvīga norāde uz šo definīciju" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Paslēpt atlases vārdus" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3241,76 +3132,89 @@ msgstr "Savērst sānjoslu" msgid "Contents" msgstr "Saturs" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3324,140 +3228,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Izlaidums" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Vēres" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[attēls: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[attēls]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.js b/sphinx/locale/mk/LC_MESSAGES/sphinx.js index a4587d177..2e115094f 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "mk", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(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 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "Full index on one page": "", "General Index": "\u0413\u043b\u0430\u0432\u043d\u0430 \u0441\u043e\u0434\u0440\u0436\u0438\u043d\u0430", "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": "", "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 % 10 == 1 && n % 100 != 11) ? 0 : 1"}); +Documentation.addTranslations({"locale": "mk", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(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 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "Full index on one page": "", "General Index": "\u0413\u043b\u0430\u0432\u043d\u0430 \u0441\u043e\u0434\u0440\u0436\u0438\u043d\u0430", "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": "", "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 % 10 == 1 && n % 100 != 11) ? 0 : 1"}); \ No newline at end of file diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index 4dc52f8a00538e259194e11c67635a7f8b8c92b1..8b18fee52cdcbcd0af5220348ba24b01738308e7 100644 GIT binary patch delta 13943 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 delta 16133 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 E7lv$UFaQ7m diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index d5a243823..53be3cf23 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" "MIME-Version: 1.0\n" @@ -19,21 +19,21 @@ msgstr "" "Language: mk\n" "Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -46,95 +46,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -150,60 +138,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -211,833 +193,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Предлог за подобрување на Python; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Вградени" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Ниво на модул" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Главна содржина" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "содржина" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "следна" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "претходна" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s документација" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1051,188 +922,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (во " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1251,253 +1144,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1505,11 +1392,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1517,25 +1404,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1545,15 +1432,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1564,22 +1451,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1588,36 +1475,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1625,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1655,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1684,214 +1571,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Автор на секцијата:" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Автор на модул:" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Автор на код:" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Автор: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Враќа" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Повратен тип" @@ -1920,12 +1807,12 @@ msgstr "%s (C тип)" msgid "%s (C variable)" msgstr "%s (C променлива)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "функција" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "член" @@ -1933,7 +1820,7 @@ msgstr "член" msgid "macro" msgstr "макро" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "тип" @@ -1941,297 +1828,262 @@ msgstr "тип" msgid "variable" msgstr "променлива" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Фрла" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ тип)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++ член)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++ функција)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++ класа)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "класа" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (вградена функција)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (класа)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "" @@ -2240,209 +2092,200 @@ msgstr "" msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "погледни %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "погледни %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Симболи" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2454,352 +2297,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2807,66 +2679,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2881,106 +2772,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "" @@ -2999,7 +2890,7 @@ msgstr "" msgid "Go" msgstr "" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "" @@ -3148,13 +3039,13 @@ msgstr "" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3196,36 +3087,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3242,76 +3133,89 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3325,140 +3229,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js index 6cc22ee74..303364e92 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "nb_NO", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "Om disse dokumenter", "Automatically generated list of changes in version %(version)s": "Automatisk generert liste over endringer i versjon %(version)s", "C API changes": "Endringer i C API", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Skjul sidepanelet", "Complete Table of Contents": "Komplett Innholdsfortegnelse", "Contents": "Innhold", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Lagd med <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Utvid sidepanelet", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "her kan du s\u00f8ke blant disse dokumentene. Angi s\u00f8keord nedfor og klikk \"s\u00f8k\".\n S\u00f8ket m\u00e5 treffe p\u00e5 samtlige s\u00f8keord.", "Full index on one page": "Hele innholdsfortegnelsen p\u00e5 en side", "General Index": "Hovedindex", "Global Module Index": "Global Modulindex", "Go": "G\u00e5", "Hide Search Matches": "Skjul s\u00f8keresultat", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Innholdsfortegnelse per bokstav", "Indices and tables:": "Index og tabeller", "Last updated on %(last_updated)s.": "Sist oppdatert %(last_updated)s.", "Library changes": "Endringer i biblioteket", "Navigation": "Navigering", "Next topic": "Neste emne", "Other changes": "Andre endringer", "Overview": "Oversikt", "Permalink to this definition": "Permalink til denne definisjonen", "Permalink to this headline": "Permalink til denne oversikten", "Please activate JavaScript to enable the search\n functionality.": "Vennligst aktiver JavaScript for \u00e5 aktivere s\u00f8k.", "Preparing search...": "", "Previous topic": "Forrige tittel", "Quick search": "Hurtigs\u00f8k", "Search": "S\u00f8k", "Search Page": "S\u00f8keside", "Search Results": "S\u00f8keresultat", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "S\u00f8k blant %(docstitle)s", "Searching": "", "Show Source": "Vis kildekode", "Table of Contents": "", "This Page": "Denne siden", "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": "alla funksjoner, klasser, vilk\u00e5r", "can be huge": "kan bli stor", "last updated": "", "lists all sections and subsections": "liste over alle paragrafer og underparagrafer", "next chapter": "neste kapittel", "previous chapter": "Forrige kapittel", "quick access to all modules": "snarvei til alle moduler", "search": "s\u00f8k", "search this documentation": "s\u00f8k i dette dokumentet", "the documentation for": ""}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "nb_NO", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "Om disse dokumenter", "Automatically generated list of changes in version %(version)s": "Automatisk generert liste over endringer i versjon %(version)s", "C API changes": "Endringer i C API", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Skjul sidepanelet", "Complete Table of Contents": "Komplett Innholdsfortegnelse", "Contents": "Innhold", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Lagd med <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Utvid sidepanelet", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "her kan du s\u00f8ke blant disse dokumentene. Angi s\u00f8keord nedfor og klikk \"s\u00f8k\".\n S\u00f8ket m\u00e5 treffe p\u00e5 samtlige s\u00f8keord.", "Full index on one page": "Hele innholdsfortegnelsen p\u00e5 en side", "General Index": "Hovedindex", "Global Module Index": "Global Modulindex", "Go": "G\u00e5", "Hide Search Matches": "Skjul s\u00f8keresultat", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Innholdsfortegnelse per bokstav", "Indices and tables:": "Index og tabeller", "Last updated on %(last_updated)s.": "Sist oppdatert %(last_updated)s.", "Library changes": "Endringer i biblioteket", "Navigation": "Navigering", "Next topic": "Neste emne", "Other changes": "Andre endringer", "Overview": "Oversikt", "Permalink to this definition": "Permalink til denne definisjonen", "Permalink to this headline": "Permalink til denne oversikten", "Please activate JavaScript to enable the search\n functionality.": "Vennligst aktiver JavaScript for \u00e5 aktivere s\u00f8k.", "Preparing search...": "", "Previous topic": "Forrige tittel", "Quick search": "Hurtigs\u00f8k", "Search": "S\u00f8k", "Search Page": "S\u00f8keside", "Search Results": "S\u00f8keresultat", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "S\u00f8k blant %(docstitle)s", "Searching": "", "Show Source": "Vis kildekode", "Table of Contents": "", "This Page": "Denne siden", "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": "alla funksjoner, klasser, vilk\u00e5r", "can be huge": "kan bli stor", "last updated": "", "lists all sections and subsections": "liste over alle paragrafer og underparagrafer", "next chapter": "neste kapittel", "previous chapter": "Forrige kapittel", "quick access to all modules": "snarvei til alle moduler", "search": "s\u00f8k", "search this documentation": "s\u00f8k i dette dokumentet", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index da5567ec6feeacbc067e9471700132323cfa3a2f..4bddd7b2fa742765851deec31e7654d5df6e35f7 100644 GIT binary patch delta 13941 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 delta 16214 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 b?)@wB=;{fpwj{bv{J-!HHvj+XJJ`Pf&%bzx diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 104940268..72b85b365 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -18,21 +18,21 @@ msgstr "" "Language: nb_NO\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -45,95 +45,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -141,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -149,60 +137,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -210,833 +192,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Innebygde" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Modulnivå" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Hovedindex" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "index" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "neste" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "forrige" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1050,188 +921,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "(i " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Index" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Utgivelse" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1250,253 +1143,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1504,11 +1391,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1516,25 +1403,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1544,15 +1431,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1563,22 +1450,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1587,36 +1474,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1624,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1654,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1683,214 +1570,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Seksjon forfatter: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Modul forfattar: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Kildekode forfatter: " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Forfatter: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametere" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Returnere" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Retur type" @@ -1919,12 +1806,12 @@ msgstr "%s (C-type)" msgid "%s (C variable)" msgstr "%s (C-variabel)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "funksjon" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "medlem" @@ -1932,7 +1819,7 @@ msgstr "medlem" msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "type" @@ -1940,297 +1827,262 @@ msgstr "type" msgid "variable" msgstr "variabel" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Nytt i version %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Endret i version %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Foreldet siden version %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Kaster" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ type)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++ medlem)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++ funksjon)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++ klasse)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (innebygd funksjon)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metode)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (klasse)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Argument" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "metode" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "attributt" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "nøkkelord" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "untak" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "uttrykk" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "innebygde funksjoner" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Variabler" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Hever" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (innebygd variabel)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (innebygd klasse)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metode)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statisk metode)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metode)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klassemetode)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemetode)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attributt)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Foreldet" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (foreldet)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (direktiv)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (rolle)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "direktiv" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "rolle" @@ -2239,209 +2091,200 @@ msgstr "rolle" msgid "environment variable; %s" msgstr "miljøvariabel; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%skommandolinje valg; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "ordliste" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "grammatikk token" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "referanse-etikett" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "miljøvariabel" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "programvalg" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Index" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Søkeside" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "se %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "se også %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2453,352 +2296,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[kilde]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "opprinnelig oppføring" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[dokumentasjon]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Modul kildekode" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Kildekode for %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Oversikt: modulkildekode" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Alla moduler hvor kildekode finnes</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2806,66 +2678,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "alias for :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2880,106 +2771,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Obs" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Advarsel" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Fare" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Feil" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Hint" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Viktig" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Obs" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Se også" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Tips" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Advarsel" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "fortsettelse fra forrige side" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Fortsetter på neste side" @@ -2998,7 +2889,7 @@ msgstr "Søk" msgid "Go" msgstr "Gå" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Vis kildekode" @@ -3147,13 +3038,13 @@ msgstr "søk" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Søkeresultat" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3195,36 +3086,36 @@ msgstr "Endringer i C API" msgid "Other changes" msgstr "Andre endringer" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Permalink til denne oversikten" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Permalink til denne definisjonen" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Skjul søkeresultat" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3241,76 +3132,89 @@ msgstr "Skjul sidepanelet" msgid "Contents" msgstr "Innhold" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3324,140 +3228,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Utgivelse" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Fotnoter" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[bilde]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.js b/sphinx/locale/ne/LC_MESSAGES/sphinx.js index 80bf5a6c6..1aef0b489 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ne", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\u092f\u0940 \u0921\u0915\u0941\u092e\u0947\u0928\u094d\u091f\u0939\u0930\u0941\u0915\u094b \u092c\u093e\u0930\u0947\u092e\u093e", "Automatically generated list of changes in version %(version)s": "\u092d\u0930\u094d\u0938\u0928 %(version)s \u092e\u093e \u092d\u090f\u0915\u093e \u092b\u0930\u0915 \u0939\u0930\u0941 \u0906\u092b\u0948 \u091c\u0947\u0928\u0947\u0930\u0947\u091f \u092d\u090f ", "C API changes": "C API \u0915\u093e \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928\u0939\u0930\u0941 ", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "\u0938\u093e\u0907\u0921\u092c\u0930 \u0938\u093e\u0928\u094b \u092c\u0928\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "Complete Table of Contents": "\u092a\u0941\u0930\u093e \u0935\u093f\u0937\u092f\u0938\u0942\u091a\u0940", "Contents": "\u0935\u093f\u0937\u092f\u0938\u0942\u091a\u0940", "Copyright": "\u0915\u092a\u093f\u0930\u093e\u0907\u091f ", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "\u0938\u093e\u0907\u0921\u092c\u0930 \u0920\u0941\u0932\u094b \u092c\u0928\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u092f\u0939\u093e\u0901\u092c\u093e\u091f \u0924\u092a\u093e\u0908\u0902\u0932\u0947 \u092f\u0940 \u0921\u094d\u0915\u0941\u092e\u0947\u0928\u094d\u091f\u0939\u0930\u0941 \u0916\u094b\u091c\u094d\u0928\u0938\u0915\u094d\u0928\u0941 \u0939\u0941\u0928\u094d\u091b \u0964 \u0916\u094b\u091c\u094d\u0928 \u0936\u092c\u094d\u0926\u0939\u0930\u0941\n\u0924\u0932\u0915\u094b \u092c\u0915\u094d\u0938\u092e\u093e \u0932\u0947\u0916\u094d\u200d\u0928\u0941\u0939\u094b\u0938 \u0930 \"\u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d\"\u0925\u093f\u091a\u094d\u0928\u0941\u0939\u094b\u0938 \u0964 \u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d\n\u092b\u0928\u094d\u0915\u094d\u0938\u0928\u0932\u0947 \u0906\u092b\u0948 \u0938\u092c\u0948 \u0936\u092c\u094d\u0926\u0939\u0930\u0941 \u0916\u094b\u091c\u094d\u091b \u0964 \n\u0925\u094b\u0930\u0948 \u0936\u092c\u094d\u0926\u0939\u0930\u0941 \u092d\u090f\u0915\u094b \u092a\u093e\u0928\u093e\u0939\u0930\u0941 \u0928\u0924\u093f\u091c\u093e\u092e\u093e \u0926\u0947\u0916\u093f\u0928\u094d\u0928 \u0964 ", "Full index on one page": "\u092a\u0941\u0930\u093e \u0905\u0928\u0941\u0938\u0941\u091a\u0940 \u090f\u0915\u0948 \u092a\u093e\u0928\u093e\u092e\u093e", "General Index": "\u0938\u093e\u092e\u093e\u0928\u094d\u092f \u0905\u0928\u0941\u0938\u0941\u091a\u0940", "Global Module Index": "\u0917\u094d\u0932\u094b\u092c\u0932 \u092e\u0921\u0941\u0932 \u0905\u0928\u0941\u0938\u0941\u091a\u0940", "Go": "\u091c\u093e\u0928\u0941\u0939\u094b\u0938\u094d", "Hide Search Matches": "\u0916\u094b\u091c\u0947\u0915\u094b \u0928\u0924\u093f\u091c\u093e\u0939\u0930\u0941 \u0932\u0941\u0915\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "Index": "\u0905\u0928\u0941\u0938\u0941\u091a\u0940", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "\u0905\u0915\u094d\u0937\u0930 \u0905\u0928\u0941\u0938\u093e\u0930 \u0905\u0928\u0941\u0938\u0941\u091a\u0940\u0915\u093e \u092a\u093e\u0928\u093e", "Indices and tables:": "\u0907\u0928\u094d\u0921\u0940\u0938\u0940\u0938\u094d\u0938 \u0930 \u0924\u0932\u093f\u0915\u093e", "Last updated on %(last_updated)s.": "\u092f\u094b \u092d\u0928\u094d\u0926\u093e \u0905\u0917\u093e\u0921\u0940 %(last_updated)s \u092e\u093e \u0905\u092a\u0921\u0947\u091f \u092d\u090f\u0915\u094b", "Library changes": "\u0932\u093e\u0908\u092c\u094d\u0930\u0947\u0930\u0940\u0915\u093e \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928\u0939\u0930\u0941", "Navigation": "\u0928\u0947\u092d\u093f\u0917\u0947\u0938\u0928 ", "Next topic": "\u092a\u091b\u093f\u0932\u094d\u0932\u094b \u0935\u093f\u0937\u092f", "Other changes": "\u0905\u0930\u0941 \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928\u0939\u0930\u0941 ", "Overview": "\u092a\u0941\u0928\u0930\u093e\u0935\u0932\u094b\u0915\u0928 ", "Permalink to this definition": "\u092f\u094b \u0905\u0930\u094d\u0925\u0915\u094b \u0932\u093e\u0917\u093f \u092a\u0930\u094d\u092e\u093e\u0932\u093f\u0928\u094d\u0915", "Permalink to this headline": "\u092f\u094b \u0936\u093f\u0930\u094d\u0937\u0915\u0915\u094b \u0932\u093e\u0917\u093f \u092a\u0930\u094d\u092e\u093e\u0932\u093f\u0928\u094d\u0915 \u0964 ", "Please activate JavaScript to enable the search\n functionality.": "\u0916\u094b\u091c\u094d\u0928\u0947 \u0915\u093e\u0930\u094d\u092f \u0906\u0917\u093e\u0921\u0940 \u092c\u0922\u093e\u0909\u0928\u0915\u094b \u0932\u093e\u0917\u093f \u091c\u093e\u092d\u093e\u0938\u094d\u0915\u0943\u092a\u094d\u091f \u091a\u0932\u093e\u0908\u0926\u093f\u0928\u0941\u0939\u094b\u0938 ", "Preparing search...": "", "Previous topic": "\u0905\u0918\u093f\u0932\u094d\u0932\u094b \u0935\u093f\u0937\u092f ", "Quick search": "\u091b\u093f\u091f\u094d\u091f\u094b \u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d", "Search": "\u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d ", "Search Page": "\u092a\u093e\u0928\u093e\u092e\u093e \u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d", "Search Results": "\u0916\u094b\u091c\u0947\u0915\u094b \u0928\u0924\u093f\u091c\u093e", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Show Source": "\u0938\u094d\u0930\u094b\u0924 \u0926\u0947\u0916\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d ", "Table of Contents": "", "This Page": "\u092f\u094b \u092a\u093e\u0928\u093e", "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": "\u0938\u092c\u0948 \u092b\u0928\u094d\u0915\u094d\u0938\u0928\u0938\u094d, \u0915\u0915\u094d\u0937\u093e\u0939\u0930\u0942 \u0930 \u091f\u0930\u094d\u092e\u0938\u094d", "can be huge": "\u0927\u0947\u0930\u0948 \u0920\u0941\u0932\u094b \u0939\u0941\u0928 \u0938\u0915\u094d\u091b", "last updated": "", "lists all sections and subsections": "\u0938\u092c\u0948 \u0938\u0947\u0915\u094d\u0938\u0928 \u0930 \u0938\u0935\u0938\u0947\u0915\u094d\u0938\u0928 \u0926\u0947\u0916\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "next chapter": "\u092a\u091b\u093f\u0932\u094d\u0932\u094b \u0916\u0928\u094d\u0921", "previous chapter": "\u0905\u0918\u093f\u0932\u094d\u0932\u094b \u0916\u0928\u094d\u0921", "quick access to all modules": "\u0938\u092c\u0948 \u092e\u094b\u0926\u0941\u0932\u0947\u0938\u092e\u093e \u091b\u093f\u091f\u0948 \u091c\u093e\u0928\u0941\u0939\u094b\u0938\u094d", "search": "\u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d", "search this documentation": "\u092f\u094b \u0921\u0915\u0941\u092e\u0947\u0928\u094d\u091f \u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d", "the documentation for": ""}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "ne", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\u092f\u0940 \u0921\u0915\u0941\u092e\u0947\u0928\u094d\u091f\u0939\u0930\u0941\u0915\u094b \u092c\u093e\u0930\u0947\u092e\u093e", "Automatically generated list of changes in version %(version)s": "\u092d\u0930\u094d\u0938\u0928 %(version)s \u092e\u093e \u092d\u090f\u0915\u093e \u092b\u0930\u0915 \u0939\u0930\u0941 \u0906\u092b\u0948 \u091c\u0947\u0928\u0947\u0930\u0947\u091f \u092d\u090f ", "C API changes": "C API \u0915\u093e \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928\u0939\u0930\u0941 ", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "\u0938\u093e\u0907\u0921\u092c\u0930 \u0938\u093e\u0928\u094b \u092c\u0928\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "Complete Table of Contents": "\u092a\u0941\u0930\u093e \u0935\u093f\u0937\u092f\u0938\u0942\u091a\u0940", "Contents": "\u0935\u093f\u0937\u092f\u0938\u0942\u091a\u0940", "Copyright": "\u0915\u092a\u093f\u0930\u093e\u0907\u091f ", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "\u0938\u093e\u0907\u0921\u092c\u0930 \u0920\u0941\u0932\u094b \u092c\u0928\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u092f\u0939\u093e\u0901\u092c\u093e\u091f \u0924\u092a\u093e\u0908\u0902\u0932\u0947 \u092f\u0940 \u0921\u094d\u0915\u0941\u092e\u0947\u0928\u094d\u091f\u0939\u0930\u0941 \u0916\u094b\u091c\u094d\u0928\u0938\u0915\u094d\u0928\u0941 \u0939\u0941\u0928\u094d\u091b \u0964 \u0916\u094b\u091c\u094d\u0928 \u0936\u092c\u094d\u0926\u0939\u0930\u0941\n\u0924\u0932\u0915\u094b \u092c\u0915\u094d\u0938\u092e\u093e \u0932\u0947\u0916\u094d\u200d\u0928\u0941\u0939\u094b\u0938 \u0930 \"\u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d\"\u0925\u093f\u091a\u094d\u0928\u0941\u0939\u094b\u0938 \u0964 \u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d\n\u092b\u0928\u094d\u0915\u094d\u0938\u0928\u0932\u0947 \u0906\u092b\u0948 \u0938\u092c\u0948 \u0936\u092c\u094d\u0926\u0939\u0930\u0941 \u0916\u094b\u091c\u094d\u091b \u0964 \n\u0925\u094b\u0930\u0948 \u0936\u092c\u094d\u0926\u0939\u0930\u0941 \u092d\u090f\u0915\u094b \u092a\u093e\u0928\u093e\u0939\u0930\u0941 \u0928\u0924\u093f\u091c\u093e\u092e\u093e \u0926\u0947\u0916\u093f\u0928\u094d\u0928 \u0964 ", "Full index on one page": "\u092a\u0941\u0930\u093e \u0905\u0928\u0941\u0938\u0941\u091a\u0940 \u090f\u0915\u0948 \u092a\u093e\u0928\u093e\u092e\u093e", "General Index": "\u0938\u093e\u092e\u093e\u0928\u094d\u092f \u0905\u0928\u0941\u0938\u0941\u091a\u0940", "Global Module Index": "\u0917\u094d\u0932\u094b\u092c\u0932 \u092e\u0921\u0941\u0932 \u0905\u0928\u0941\u0938\u0941\u091a\u0940", "Go": "\u091c\u093e\u0928\u0941\u0939\u094b\u0938\u094d", "Hide Search Matches": "\u0916\u094b\u091c\u0947\u0915\u094b \u0928\u0924\u093f\u091c\u093e\u0939\u0930\u0941 \u0932\u0941\u0915\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "Index": "\u0905\u0928\u0941\u0938\u0941\u091a\u0940", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "\u0905\u0915\u094d\u0937\u0930 \u0905\u0928\u0941\u0938\u093e\u0930 \u0905\u0928\u0941\u0938\u0941\u091a\u0940\u0915\u093e \u092a\u093e\u0928\u093e", "Indices and tables:": "\u0907\u0928\u094d\u0921\u0940\u0938\u0940\u0938\u094d\u0938 \u0930 \u0924\u0932\u093f\u0915\u093e", "Last updated on %(last_updated)s.": "\u092f\u094b \u092d\u0928\u094d\u0926\u093e \u0905\u0917\u093e\u0921\u0940 %(last_updated)s \u092e\u093e \u0905\u092a\u0921\u0947\u091f \u092d\u090f\u0915\u094b", "Library changes": "\u0932\u093e\u0908\u092c\u094d\u0930\u0947\u0930\u0940\u0915\u093e \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928\u0939\u0930\u0941", "Navigation": "\u0928\u0947\u092d\u093f\u0917\u0947\u0938\u0928 ", "Next topic": "\u092a\u091b\u093f\u0932\u094d\u0932\u094b \u0935\u093f\u0937\u092f", "Other changes": "\u0905\u0930\u0941 \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928\u0939\u0930\u0941 ", "Overview": "\u092a\u0941\u0928\u0930\u093e\u0935\u0932\u094b\u0915\u0928 ", "Permalink to this definition": "\u092f\u094b \u0905\u0930\u094d\u0925\u0915\u094b \u0932\u093e\u0917\u093f \u092a\u0930\u094d\u092e\u093e\u0932\u093f\u0928\u094d\u0915", "Permalink to this headline": "\u092f\u094b \u0936\u093f\u0930\u094d\u0937\u0915\u0915\u094b \u0932\u093e\u0917\u093f \u092a\u0930\u094d\u092e\u093e\u0932\u093f\u0928\u094d\u0915 \u0964 ", "Please activate JavaScript to enable the search\n functionality.": "\u0916\u094b\u091c\u094d\u0928\u0947 \u0915\u093e\u0930\u094d\u092f \u0906\u0917\u093e\u0921\u0940 \u092c\u0922\u093e\u0909\u0928\u0915\u094b \u0932\u093e\u0917\u093f \u091c\u093e\u092d\u093e\u0938\u094d\u0915\u0943\u092a\u094d\u091f \u091a\u0932\u093e\u0908\u0926\u093f\u0928\u0941\u0939\u094b\u0938 ", "Preparing search...": "", "Previous topic": "\u0905\u0918\u093f\u0932\u094d\u0932\u094b \u0935\u093f\u0937\u092f ", "Quick search": "\u091b\u093f\u091f\u094d\u091f\u094b \u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d", "Search": "\u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d ", "Search Page": "\u092a\u093e\u0928\u093e\u092e\u093e \u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d", "Search Results": "\u0916\u094b\u091c\u0947\u0915\u094b \u0928\u0924\u093f\u091c\u093e", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Show Source": "\u0938\u094d\u0930\u094b\u0924 \u0926\u0947\u0916\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d ", "Table of Contents": "", "This Page": "\u092f\u094b \u092a\u093e\u0928\u093e", "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": "\u0938\u092c\u0948 \u092b\u0928\u094d\u0915\u094d\u0938\u0928\u0938\u094d, \u0915\u0915\u094d\u0937\u093e\u0939\u0930\u0942 \u0930 \u091f\u0930\u094d\u092e\u0938\u094d", "can be huge": "\u0927\u0947\u0930\u0948 \u0920\u0941\u0932\u094b \u0939\u0941\u0928 \u0938\u0915\u094d\u091b", "last updated": "", "lists all sections and subsections": "\u0938\u092c\u0948 \u0938\u0947\u0915\u094d\u0938\u0928 \u0930 \u0938\u0935\u0938\u0947\u0915\u094d\u0938\u0928 \u0926\u0947\u0916\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "next chapter": "\u092a\u091b\u093f\u0932\u094d\u0932\u094b \u0916\u0928\u094d\u0921", "previous chapter": "\u0905\u0918\u093f\u0932\u094d\u0932\u094b \u0916\u0928\u094d\u0921", "quick access to all modules": "\u0938\u092c\u0948 \u092e\u094b\u0926\u0941\u0932\u0947\u0938\u092e\u093e \u091b\u093f\u091f\u0948 \u091c\u093e\u0928\u0941\u0939\u094b\u0938\u094d", "search": "\u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d", "search this documentation": "\u092f\u094b \u0921\u0915\u0941\u092e\u0947\u0928\u094d\u091f \u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 330f22bd50449194759de7a8a77792da5622c32f..eba9d6566ede1efb991e97fa04da15c08b786c62 100644 GIT binary patch delta 14022 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 Umv|MIcwhTJyTKd$-3@O28!y1*=l}o! delta 16229 zcmeI&2Y8fKzQ^%*QXqsD2qBaJFFllm1VRfPf>h~6dWK{m1CyCJGoeVCMNxDS6-ETb z!YcNHIv`dQTvXf@d!eYXVnapI6%;}5_c!O=1$Xzkd+&YjeQtT~KD&O-IrGjb|MNd* z-p%fdTa!NDl@$4)Zqj;-e?6CASy`A>U$t}p%IauY8>u$I4)_?h#XsQ{F3U>Iv8?O( z?%G_-`ik}z`Igmy_O#BH^#%2IT`X%b^^5|`%EW11E$b56L)|PZXju{KI0YXK?(RH* z`>+!aeu7s~uiw+MhT~>@8Na}(_*kKtP@P_uRg-!jOvVw8W3fH;$=C-k#i95d_QPtu znJnX5!zfgv!G|fh09#`O)xn*pj$gxcd<W~`F|3DYur}6Vlp5F^HKAOrj=fQz55-z| z5vJi>tjYM+A`0sG3RK58p}z2d9>AwjUwj$$+<w$9eTC{MsjvAw18wT9Q2h)>O<*!= zfh9N|%W(ki!iYLbBp$L6s>6KLRt&_3I2AQ;7#rc0*Z}W9t@vr@^Sziu{e9H;s`s}n zcGqf+&2Tz4#--Q_H})s~Pf&P<hAy~}X=%pyV^!RN#rQ0iqCL=T#pOtzS*snN!6DSY z#=6*jkY(lJaMXZHa5iqh3_OjRSXxoUGz=*+p__pU)pExxQK4Ul%8lP4QM2xIKK~rE zsek8~HQ2J6QXh;2!74?4ZwqQGAH?SP6!yUPBNSRwsDFW3ac|TNi;xpzO+_28MRo8n zYAbf4w(1Sk^B<wM=0{Yh>k$qOT!7lzKB$FFK#e!kF|v|E6B_PAPL%Z$a`LRiq2`Od zum$yTcp+AzlIwY_f^TCg9zuosQ^&+%Cdry1|F+!xqZsc;C3lVC@vV$lSrmw#)dKmh zH5W(V!>A-XgH<tu#uRLV+#yyQR3xUOwx|L%u?Q-(Yf%$_+3_oENj+_(>8}8r>-_ho zpq0-=h3-bQ@d>Pk2T%hZMaxB)34=n~c$C?a&Zvp>#{`^!<d-$sY2W0y6_aRx9&_;} zEMR==6a@{`akTlM8zxitp!RmY;|f%yHlPMP<oFFvqn<Rz+@!@gpZY7Pt?fD1I2je8 zN}PhLFrsWcLZLP$j<YPTZ7Us9@dDIJ#-bv#9{so-$y=+{cys>ep}xNmtK%xCJ&HNh zH)A&LL-l(KHIak~#9s~dCYT4Bq4s<zD!bjNkOgrnE<{D<4OC9NhaK@S*29_;&G%ZM zPD>Y5e*;jtGZizi1eFVmClY^6;1(LRr}tnMK8rd|ha69#Zp6BijO|f3+&~<N)6t8! zVP~v1*<^ihETDb`DuPcr9>h%QKSi8E`bB0>J76t7=!Y3N3KfY`tbvuNP+y95ah+4Y z6Sbo4*b4V!I{u9MUR^d^$F&)%zc#3aN4ir`C<mhUZn#sQgqrb8)IiHo9jrx#dL!!j z2T>D#0{J1dUP9di$?TVsx;bi~4yb{<p|)ZOc3^yK3<Y(x6m_*;i5l=l)QS$ElI3UA zMAJxhO`rj)qa4)d-B2qYip;^9j(o*>4BKO!>E<`4H+G_4f!R9$n<?bduouVR4_JZ2 zW|#;(i8>_*P#4M>REV3+H1|XimQnYh2Hb}nD68Ep?gCtbBk(oU)tgmp`W=YVA~ejV za4YUat$2ppykf0D)$eucuV8cP-=ij+IorJ1T!7uEuSA9XDcpp6uoT@TTt@f;F2JTV zYAe@cB$2|+6xQNqOv26{Gf;QzN_`4;!E3QTK97y@0JgxB*asWVF%g)In#iN5EqfZ1 z@%O0X`Z6jPPR$|y?I@(oHQC-7t56?``8XOi@Ctk%w__1TiT6N!4}Xh|y{6;4P!oF- z)z8<c+&YO>F=3vmr=sfh=MjG;QBxX5VOv~{3$Pz1%r`gKK-9UeKqcQD*aRO(CF?t= z6@899@iaEY0-uS*c+@eRf!d0BsNC2cq0o^+X1N)l2-!AkA!?ulsC(dRtcJ;clSH+# zn0i;#L~cM0xD9LKo2Yx@h~o*=h2sjC)6x*DQ;&3@(1t>HY=twiAzp@AcnfNPC$SN} zhnm=T*bGxRDg!VZmHqQD2lt>R^c||7x)+<PxDzUghhh(%|9KRY9Cu(1yce}Mk70M* ziOTMi*b8%l=4$n#>M<<DuW=~051B0p;SlN%VrTr`F*|H7tZ7)F^FNP*vidgEOdoUV zZ=#ay7^;JuO7nR!Y6Z(s$#xrRrB9(kd;rt%Tda$ToH;#LAN6@>Y=FZtoAIp@3VrZu z)E8gI+ISH2@C($j%vxx+ra5+^-V3!Q^RYc%f!fMPP`UCRYU}=lHd>3!)-^|MQ8$ca zQYfWRAD3c2Mo}H^!3_KcbxNu%HWR9i8mK?k!MUhhSd7_tBWeM=Q4xK^@oQ{Ny~ZWn zme~0c;{Q7e8)+!O!X;*<0aOQJoPsN{7k+@b*l4K<`7mriy$m(b3e-eyb=r4g2kP&l zCYHF&jMEX*sk@gE|Hc$5X&8=cQK3GBn&}Zt#j49q=<1>dY>Vo+KQ=@kD&$vS54;X9 z#JxxwSecBYNUcHT#BDeLAB|AZ0Ds1&_zQN!roS;+J`wfcZK%CIg4(JxsO(N(VJ@y| zs4cn=6}cEHQqQ9%_$_KHYg}sXhZc^JJPLjIpf9$?rKnJC!LIlU>VitV%w&BYYNF#% zk-Hc*u{EfE?m<Q76IAlnU1?d9aFF9osK}haaXSC~E;kp?I!xw+9jLu|21nuRsC&V_ z!gQE}TFFdof?>?Ub*NLZ6}93IQ4{?U6|n}ZOwxA3=F}&}>x6p|g{m~%hJ*2L)PP^1 zPQhvHj;*gWzjiaQ8TH?wCa@V5iJi{p2QZoXSyW^auQIvQ6kAj8g1vAGR$+W=y$X0U zw!k}3GkgI@;%Cn1U4Lud2YO>w+KaIW%TQbOAg1C+n1shs3;7Opto6&L1$M@PxCkRd zC_F_$GfTYMgsvU7q&^63oa@xD#E#S-K&^N`>LU3bv$5qGGl7w)?@vaxFLCNyPz!wt zQ}ER_?0+o^@6k{lKSh1vJJd1Dy2h-eE9zJkqKzROgV&=X_Ax5dDc73swZzfXdpq^3 zQ5W5vsDYnB-Lx-UOZ>I+cb$f_Sc`hC>&!}<U=8ZSQ4^bt3gK_CJ-&bn?Fm$lv|MW< zGYwOzFGQX9OHoO?-tm5{O?_9ydEj+yL&H(jOslUmD{qPQsAr=l+6NWF5-h=asBGWo zw10+*<k#31f5Jj+88wlciT$ZZP!ozgM?oQZ2X%}-#JYF}HKE$q^CpYkP@yhHt^6|7 z=MUjzd>i{>&UzCGA1<f91*>7p8_dO%gR1w!jynH?DX7CB=HV@<W3>;p;xBOn*5x1a zKK?<FtbrTN3f{u$)Q_Q(a>$Kl<t3=^uf`7e2+qX!u`BkzN%sT$AEeNbhP9|;b3f{V zhfy7Vg2|Y$$#j&0In)bKpU*}e*X53zF@ySUr~V!)!lzNEBJpOk;I^2e^FNM)LOu=a zqaO$1<v14i;zii_7PIGJ98di{?1>$3H5bYp)K=Y&>hF)J{yxNXJc*4l^)_Q0jA%~> zQqYV&j!Q6$`dU;+4`C+mLM7LJ)K-0rov{99-tArdy#Uz-tNQIGQd>|-_!{bO#Xq3_ zRvg)4{#KlJH}TgWi+{e`{INLmUXB;_#QPW!huv@fSnPfv{>NhL5c=qF^n+$XPow@; z{1#qCd(u|(Gky)eOnpC2#Vrq;3H^dKsCRgTF|fxY5wo|wX;2al#6DP#L-Bs>hkwQv zSn#OH-pQyvb)%AO9_stop>pLZRLFN>9ef+>;isrAIpchu9*LQTwvK(VCJ#)+23Ue= zxYTK1gXz>ap|)fz>bVyk52G%yAF&ChY%>G5!A8`3p^cLqBMT|0qm8JUKJ3(Y<9O-^ zZ~*3RHxsQuo%>Zz{UOvqdr-;u5$ZJ6e9R2g7B#`4sFk}>pD)53o&R-C!*ke;4-Q~6 zth2*pX+E~1ejz@ALF|GZA2-QZj8&=ouo%Nwif^N~qL44;V}HjW4xzpU>+1Y}NkQ5C z3+i~}J!$?c*htjMx1uI?0y8lCDYLS^SdIEDY>r-3=vSkX>?TyQ-i>;$-qYqcq^aW& zY|8jn1qCJ9wQ9guQ4>0j>bTi6=GSikD%mc<`nVbO+zu?j&(OvuJ59*@VmkH7*ca!c z7H}V`pXV^5P=7+90akg|TqMm<1586b7<Al-O{nk0LOg`sG4na|{AkoEnS&SNRj8bL z7Zs7uF%?f@V|48z{wg%tWkTH(hf!aG#kdD+W1HP3gx#=+dVkdMyc|d1KGXslJ#TWM z3+j0G!me0^io_+@7q3B0?3L#uCbS>Y(1L~rzc=>6megmWlIv1zj=x2%`~hr+pQ4Rb z_m~xBV|+ktoxp(DkIy&1Xx=9dqdu?sl9}+J2!%m3Oh?UdGb(i3ur4O-HSh5ms68%1 zMP#wleidp@A9vh`ipWtc!aT0Q&RB`+{~nx%Pot7E(%=u~kHwdx_V$Eh?LV3j<=_<B z`=P#gBdX)?Q5_e)V)nEgwU9-q$UKdHJcNUB#6A<*wW!axVRfDVw<t8E;V|alY0Sp# zS55m^)P*x2wMFYtpKnL)`3IPWr%;hddClDUO);7JV$>E!up_R*dbkbKbpH1`9~?k+ zSoL)?LmN9#?~lp_AEx4UsME0twX#RC5&nQ<F#Qd4qn0`@MJ@1pya^vdFAjT?2r|AE zqc99VLG5wgTV?_t$ICI3_B$P)LG9(+sEK`!T6xX4O(a@k4eAA08wX%r9P89eQQr$= zq!opY6x87}n2)bx6-<1`beM`-d1F+EZIHdQx}icl5VfbnQ3K6$>dUYm^;=N=K8o7H zqu3j(zU!R-qIb>tE=CPB4_jlU<0jNr?846Y73v(@@0kH-p;i>cI(P$WV)vjX@Gz#} z9_RCYs0AN>kN7LQ|4hSF9JSy4j^B%2sK14sFy(+rx*nKI-HqDo>#zckpdv8tpt&c4 zsFhxiitrA!@er2bS)7V<B8SX7-Y%R#L;CyX{Fb32unpDm0i1@X@m8Glfm!kQ*p_<3 z4^4dls_sEuSZh!d-im$j1MG%bhfM?`<0)*SVJ?<p;t}&cUxo{)KZnYN?te0`Onq@J z^?{g#Z=nX-k6rO6ROIqMGN;6Yjj1oi7Pt{Lk*AOdM64evD5)kKHG5f#I=2f^=XDvT z;eFT+pTZ3M7&Wn<P|20>u^G4k36fQYMR>s{Ocqz;Z*d>0-zlGJViDd<DX62{QCWR2 zR>kd3{TWnJ?R7keqo{v{tFiZI=8k^}b%CXPZj!VcD*3!P374Zz$J?j{eTF?5-};e4 zQ|xlgoPu$v^E(|UqZgGMyHGQ)|AiS~5YDE)05#BlRAi20HB9=_<WMavre1(ea6M|g z7)EMRc!Pqr;IQL2m`Pp#hYmg10Q0arw!t!Nh1X(3+=f}W4>iCS*a)i~Hxp}x&8YXp z0XPMf{hN*x{~QV@Y0yBezBU~V!UoifQOUI!d*CLljc=g_Jc?D(^^JKEsfNn#0oV%{ z;V|6h)PKf8>V+rF`$Odk;@^{ooiq%=A5a%e|8I>UtVR7UEWqtpACI9{;`+|i2ceQ| zDt5+OP!oI&wSccsr=a$q%|bh%B0M}oA&tUptcxMkgI72Y+>VOGlbDTfqK?lQ)b|R% zHxU_udDN$25?+nknzh&o??-LPL2QpFQCk^le$os$6t#DyXyc_=5AQ&2(c`EYe}eV# zXUxZpQ>Mcqm_a>=DR?DnLTgb2?Z!IzIVu-^LKejP-w$R5MW~QXaJ(2>Q@;j1xD9`Y zjeay+@ic0sCr~+Y5~pC5(`N6BF_-$ysNDJkHo#-3aT0&hMA(0uf<EYv9dHUN)R$uc zK7{G`5jMtCI2_Z@m<h~8O|%44@hVj0u1EEIFRI_&*btASCY*AXq-K1p0fh^3ELP%e zs8D76Y;vM4D%lEA11!a+xC*=BU8pR7AN5?@U(8;6QCqbVmE4<f6n=!-s?L_nifAT7 zDJWDIp=P)W^}z42BksVOcoh5Kx7Zf*T&{SeF2b(VS77{kY_8`~6Rncqibt+BHljWN z)z9<<S0o;qn`lt7ynvJNl;fyGS3ELz;yBvBLtQ)<B$)}$M{Ugt)XLUl4LpkK?*wWg zEs|aF<nDo4)F+`%MJPF9R(uByn&~sBkR3v0?RTh^G^%3iy-^*M;9&d>YQPsz$LdY& zjz8lx>{itk&-QiLg!-eX9C{7)Yxre^f;y<3VnUOJN}lehq#B96Fo@c!hfvS&M0M~7 z)C7;?NKC6{KA(Xtsn0{*kk?=l-hkSwgQ#4J)JZiV%0hM68Fj8FqE@&Hb+f&KN}{yt zW?~nia%DMcpp9tb(@y<;>`2{J!>l+Lb&m{3ovua51o+>7D5!%6oDW`e>OW!?+MCog z6KsWwNFi3oVpK;y)G=F+x(^=09vDL#zr-<EvzA%lOjHuCzy>=1H&Yl*!}fRsFCVpC z@tdwGDtWr0A~O;-fdHoAder@J7iy&kQCpLeW+s+_ieO(<ZmdK_b}K4Jj^GH!w;I+l zd*MO-22`L1zRdAP)CIED`TQU%Igeu|X4Ey`%R%K%f7C=LqLO+Emf%g;7k@_OOrLbl zzh*v*g3j~RScu!u#;>tIrqweO8jC5^=b}zQ1!}@;P!rmW?eIlZ#7>}AUN6IZ-VY~J zpM#pn&J51KLUERc<=C~p3E?)>x!#3(lX)98(GO7_*5HqWI^W$<$Epmq;wx|iKHyly z9~akBKZJ^?zo9Gsx8jwkV|b(?=U*#7OM^OS-N=M`1kR+s5OrMM!KPTFvB~-lsN*;o z_4!0phpRCe??!FegQ%?E?|fc0%Y?qA<KPGd&1|mIunZOA+fb+C9@L8eh&m0YP$B;r zby3x6;)?&*?ra=O-G>+9PSl=fHg(1SjJE`PQhyb7pHypRwkk51f;tSKI=mDW`WsOz zdeCt%YEM5#O*q9iHbvz^0ji&|sH7}K9n+<#t-2C*<vxK{>Hzyf_k7PBuP=J4{dMh& zyruTyK&4$$=JwC^*x@pd9a`)UyBFDWf`M|obM7KL9I(6OF6tM%`j+XnqDOkxOSVe` zeoyp=`{&0tJut}?{i@fnNQuuK3bnIZhwSV@9Xi-00e^|7B7CmF<F73Lb<GoWhXcWL zZF4I9C1G#Cf3Bt6Q$E{s-V@=)6`pgSR{H<?@a)QH|K4k(6Sl@;clJ4((5AgTDiHP* z+Wvq)XTbPD!-m<Vo;mJHU)WyY_Emc9ieO-Yw=`BWw#^mG9QZ;)k5U%xo$L4d=h}1J zUZ1Db8WiyP+!Z0UmwINqgEW+vyZxo~8MfyHD*dH}cI!~=i=uauV%>JuaK(NZzS~vT z<EyZ}{!-5(PtfTo_Uy<fT@jx<>{&FcG*D7m?(v61x$eqvS%62>kDXoaom&=G$ii-~ z|GY`FCBaaxJ;vv8Gm%RDr$ugVZVS!9txz#mDC}{Uwqq_qYnY$av73K8SlBx@?DPER z4i>8z)giH#KgaE>D09#DguNwhUv%Txxm8A0YR{r)$KISUY-DuC_!iL>FE@`qIque2 zWPHb@Xyc2nj5V4v(N(Q=DM?h$dZUY`wmq+Q&(zW9YL8A^?`q~LRRX&0P&ml`bhLfm zP}mO4aq6MyBh$Cn>}Y!yRd`Cm@n>TdGbXwsW!j6`fxvv*8zN42>+C>fxYQeL7s^dl zc97}ru)Q$gZyUB}du;b?Lc}-=yq<-&H*8n>eV$M#eljX5!)l?A<()=)X9wNE#hr?r zt&DF&r=c2){nU22eLg+ih{rirLEBwX;UhZn?V8PY`#jNSXFl7$+{2W^9)C#N*g8ls zJfV1Q1wEmP09jEI2nJb^Z*g?-tOc=eW_{+0n91pc#uvv4_7tYJvdibQEIX&dZZ&lD zg@Zfg`T}f5rx3~G=~U`jpl3TN5FwuR`R$yL-D=F_qE6=m@=w3WvmBY`^O#RN_2Tqu zO$d|*tO-H4KSa(2f`Qo5gB7mm#FEVsyTq+bUZ|s1qCjfa!^e*vWoy=dyCK#TT|ocf z8x`J?`AXe?_MKp*-)?bn31^lm64A(9kKf!cE$oHfa9Mo#+>6UfDl{RjBi`q)^FpaL zUwPpTDXiyp_t)Oe%OVpK6Owq(sS}*+VX2W{?+{lbN$d89?VNLSynsdhEB*Z{CR*Rn z2^WsE<C!)&5S$+>3sju9w6bu;`70XnmsF4UQeMf433<ZtT=Xa(W|>T!#ceU$Gba%A z*t09WzEa(P1ISm88HWQy?#E7)6eK2b@7U3XN5W&c#AZ3S>8v?E_gwZ;iMx=bs32jv z=t_TeWpUM!CFi~qsL%!}1L9X#ZuH6{dt&SV)ZUdIAKqOOPnQb!Tn|G=U+}I=<YJ6Y zpVu(9?C3I=naAmmr^oVqT@q`Bz5YtFi6i9aG)1Qd{53+U(?a1=ramLJb@X_kxB14k z#~LQ8zk7}ii1&B!m|Zh|PP~_JXOLg9FONOwiWUUZV&8w+DyioAy@aA$7qs}BmJb$W zr#Yv9m2ly!^Ro;3*DtS75JTZW#lk?4yO@2~M~|FX9X-0RcXaWhW3kH?=euGFOD=Fl z7cc##R{SXcr3*XiTNaG{wCtnA*se4ET+tzyeIA{%GTp4fw{nTr5c_mxeo}PCRbT9Q zB-u6Bl|_?n5&8<Z?nf??zx>E($9AqB75`3+tM77cxVM_CR`jhkWwDE|+30HG{NBaK z*YyzZCp6z%p%p}HUw2iS*RQLO^x&6HchipQHC+$5V)^U3Cq*~i&?uI)VU;U(`^LU5 zmmTdJER62Hv8l`6P@Lo%tYWeq3~<@mS2c-FzouUF$c=Yz$j)@tYc$M1Cy>jX7!QnX zEev|u#kux`(StU0$aFQ|keBJo+)$k9s*`!{to-WKMqjz9Ma_7`;wjI(H!RO|^^BZ< zvT6KF&+&EX4QHX3tJ&`{zbEGVI_u`B#(ybvRTQS$EZ6$GFX;UsemDH%=f?!2`I{zm z?U9q$Bd2q|otIyjU(g}1XI@_Fn9(`oJPW+K=yQrV9)))2ynORqo}J&VFu!Z;$xUy$ z{(UcE<+XnG685ZX#NjRL_3t~^9Nx0y@RptD-jn|QuVT>?57sZ_CGPN+#}9A0OaD}_ zThDbFAM4rp$Ncl5b05Ut$)eLAdN(#<>ko<l_V=*q$?1avfA<m=EqlCw#y@`Vy8H1N z$-H;1OiGX6i1FS0>pNHU^s6mnhjtH7_`mnw6|ER`Z|sFVGZWKBkxsvQ`)av&(Yd#; ziP7VGqs|*xY{kn>T(LcW2qpjj>(_tq^=sMwZ~u3^el<_{|5va0FPdH%^%nQP`qe9X zqU3Dsh7T@F`0slCdh(;+|NZM%?DWU`{*zz5UUmIfzjl2d`|-OTe|_zGAbR_$;=g_M zI(cd>uU>_T(GPxlg4eGF3Fp6h&5XYOORM-R<fkhaZ7+9ypU5lNiVfMxu511+?_s~Z zQh&q1s;<fEVaJVCU1#ENW1FKFUsJf_@l@Bl|Iyd6FO&5q7ERjFeaFk`u4%65?Hea= Th-SDx{vYv5w(P(4mF!;tz#Vi5 diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index f58b1e7ae..a365b0ef7 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" "MIME-Version: 1.0\n" @@ -20,21 +20,21 @@ msgstr "" "Language: ne\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -47,95 +47,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,7 +131,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -151,60 +139,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -212,833 +194,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "बिइल्टिन्स" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "मडुलको तह" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "सामान्य अनुसुची" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "अनुसुची" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "पछिल्लो" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "अघिल्लो" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1052,188 +923,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "(in" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "अनुसुची" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "रीलीज" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1252,253 +1145,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1506,11 +1393,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1518,25 +1405,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1546,15 +1433,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1565,22 +1452,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1589,36 +1476,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1626,29 +1513,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1656,26 +1543,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1685,214 +1572,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "सेक्सनको लेखक" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "मडुलको लेखक" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Codeको लेखक " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "लेखक" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parameters" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Returns" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Return type" @@ -1921,12 +1808,12 @@ msgstr "%s (C किसिम)" msgid "%s (C variable)" msgstr "%s (C चल)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "फन्क्सन" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "सदस्य" @@ -1934,7 +1821,7 @@ msgstr "सदस्य" msgid "macro" msgstr "बृहत" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "किसिम" @@ -1942,297 +1829,262 @@ msgstr "किसिम" msgid "variable" msgstr "चल" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "भर्सन %s मा नयाँ" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "भर्सन %s मा बदलिएको" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Deprecated since version %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Throws" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ किसिम)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++ सदस्य)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++कार्य)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++ कक्षा)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "कक्षा" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (built-in function)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधी)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (कक्षा)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global variable or constant)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribute)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Arguments" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (मडुल)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "विधी" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "attribute" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "मडुल" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "मुख्य शब्द" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "सन्चालक" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "object" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "अपबाद" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "भनाई" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "built-in फन्क्सन" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "चलहरू" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Raises" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in मडुल %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (built-in चल)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (in मडुल %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (built-in कक्षा)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (कक्षा in %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s विधी)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s static विधी)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s static विधी)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s कक्षा विधी)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s कक्षा विधी)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attribute)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Python Module Index" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Deprecated" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "कक्षा विधी" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "static विधी" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "(deprecated)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (निर्देशिक)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (भूमिका)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "निर्देशिक" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "भूमिका" @@ -2241,209 +2093,200 @@ msgstr "भूमिका" msgid "environment variable; %s" msgstr "environment variable; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%scommand line option; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "शब्द-अर्थमा भएको" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "grammar token" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "सन्दर्व सामग्री" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "environment variable" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "कार्यक्रमका बिकल्प" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "अनुसुची" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "मडुल अनुसुची" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "पानामा खोज्नुहोस्" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "%s हेर्नुहोस्" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "%s पनि हेर्नुहोस् " -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2455,352 +2298,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[स्रोत]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "मौलिक इन्ट्री" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Module code" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Source code for %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "पुनरावलोकन: module code" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>All modules for which code is available</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2808,66 +2680,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "alias of :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2882,106 +2773,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "ध्यानाकर्षण" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "होसियार " -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "खतरा" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "गलत" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "सङ्केत" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "जरुरी" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "टिप्पणी" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "पनि हेर्नुहोस" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "साबधान" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "अघिल्लो पानासँग जोडीएको" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "अर्को पानासँग जोडीएको" @@ -3000,7 +2891,7 @@ msgstr "खोज्नुहोस् " msgid "Go" msgstr "जानुहोस्" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "स्रोत देखाउनुहोस् " @@ -3149,13 +3040,13 @@ msgstr "खोज्नुहोस्" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "खोजेको नतिजा" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3197,36 +3088,36 @@ msgstr "C API का परिवर्तनहरु " msgid "Other changes" msgstr "अरु परिवर्तनहरु " -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "यो शिर्षकको लागि पर्मालिन्क । " -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "यो अर्थको लागि पर्मालिन्क" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "खोजेको नतिजाहरु लुकाउनुहोस्" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3243,76 +3134,89 @@ msgstr "साइडबर सानो बनाउनुहोस्" msgid "Contents" msgstr "विषयसूची" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3326,140 +3230,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "रीलीज" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "फूट्नोट्स" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[चित्र]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.js b/sphinx/locale/nl/LC_MESSAGES/sphinx.js index cd078a323..8776758eb 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "nl", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", in", "About these documents": "Over deze documenten", "Automatically generated list of changes in version %(version)s": "Automatisch gegenereerde lijst van veranderingen in versie %(version)s", "C API changes": "Veranderingen in de C-API", "Changes in Version %(version)s — %(docstitle)s": "Wijzigingen in Versie %(version)s — %(docstitle)s", "Collapse sidebar": "Zijpaneel inklappen", "Complete Table of Contents": "Volledige inhoudsopgave", "Contents": "Inhoudsopgave", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Aangemaakt met <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Zijpaneel uitklappen", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Hier kan u de documenten doorzoeken. Geef enkele trefwoorden\n in het veld hieronder en klik \"zoeken\". Merk op dat de zoekfunctie\n steeds naar alle woorden zoekt. Pagina's die minder woorden bevatten\n zullen niet tussen de resultaten verschijnen.", "Full index on one page": "Volledige index op \u00e9\u00e9n pagina", "General Index": "Algemene index", "Global Module Index": "Globale Module-index", "Go": "Zoek", "Hide Search Matches": "Zoekresultaten verbergen", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Index pagineerd per letter", "Indices and tables:": "Indices en tabellen:", "Last updated on %(last_updated)s.": "Laatste aanpassing op %(last_updated)s.", "Library changes": "Veranderingen in de bibliotheek", "Navigation": "Navigatie", "Next topic": "Volgend onderwerp", "Other changes": "Andere veranderingen", "Overview": "Overzicht", "Permalink to this definition": "Permalink naar deze definitie", "Permalink to this headline": "Permalink naar deze titel", "Please activate JavaScript to enable the search\n functionality.": "Activeer JavaSscript om de zoekfunctionaliteit in te schakelen.", "Preparing search...": "Zoeken aan het voorbereiden...", "Previous topic": "Vorig onderwerp", "Quick search": "Snel zoeken", "Search": "Zoeken", "Search Page": "Zoekpagina", "Search Results": "Zoekresultaten", "Search finished, found %s page(s) matching the search query.": "Zoekopdracht voltooid, %s pagaina(s) gevonden die overeenkomen met de zoekterm.", "Search within %(docstitle)s": "Zoeken in %(docstitle)s", "Searching": "Bezig met zoeken", "Show Source": "Broncode weergeven", "Table of Contents": "", "This Page": "Deze pagina", "Welcome! This is": "Welkom! Dit is", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Uw zoekopdracht leverde geen resultaten op. Zorg ervoor dat alle woorden juist zijn gespeld en dat u voldoende categorie\u00ebn hebt geselecteerd.", "all functions, classes, terms": "alle functies, klasses en begrippen", "can be huge": "kan heel groot zijn", "last updated": "laatst bijgewerkt", "lists all sections and subsections": "geeft alle secties en subsecties weer", "next chapter": "volgend hoofdstuk", "previous chapter": "vorig hoofdstuk", "quick access to all modules": "sneltoegang naar alle modules", "search": "zoeken", "search this documentation": "zoeken in deze documentatie", "the documentation for": "de documentatie voor"}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "nl", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", in", "About these documents": "Over deze documenten", "Automatically generated list of changes in version %(version)s": "Automatisch gegenereerde lijst van veranderingen in versie %(version)s", "C API changes": "Veranderingen in de C-API", "Changes in Version %(version)s — %(docstitle)s": "Wijzigingen in Versie %(version)s — %(docstitle)s", "Collapse sidebar": "Zijpaneel inklappen", "Complete Table of Contents": "Volledige inhoudsopgave", "Contents": "Inhoudsopgave", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Aangemaakt met <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Zijpaneel uitklappen", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Hier kan u de documenten doorzoeken. Geef enkele trefwoorden\n in het veld hieronder en klik \"zoeken\". Merk op dat de zoekfunctie\n steeds naar alle woorden zoekt. Pagina's die minder woorden bevatten\n zullen niet tussen de resultaten verschijnen.", "Full index on one page": "Volledige index op \u00e9\u00e9n pagina", "General Index": "Algemene index", "Global Module Index": "Globale Module-index", "Go": "Zoek", "Hide Search Matches": "Zoekresultaten verbergen", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Index pagineerd per letter", "Indices and tables:": "Indices en tabellen:", "Last updated on %(last_updated)s.": "Laatste aanpassing op %(last_updated)s.", "Library changes": "Veranderingen in de bibliotheek", "Navigation": "Navigatie", "Next topic": "Volgend onderwerp", "Other changes": "Andere veranderingen", "Overview": "Overzicht", "Permalink to this definition": "Permalink naar deze definitie", "Permalink to this headline": "Permalink naar deze titel", "Please activate JavaScript to enable the search\n functionality.": "Activeer JavaSscript om de zoekfunctionaliteit in te schakelen.", "Preparing search...": "Zoeken aan het voorbereiden...", "Previous topic": "Vorig onderwerp", "Quick search": "Snel zoeken", "Search": "Zoeken", "Search Page": "Zoekpagina", "Search Results": "Zoekresultaten", "Search finished, found %s page(s) matching the search query.": "Zoekopdracht voltooid, %s pagaina(s) gevonden die overeenkomen met de zoekterm.", "Search within %(docstitle)s": "Zoeken in %(docstitle)s", "Searching": "Bezig met zoeken", "Show Source": "Broncode weergeven", "Table of Contents": "", "This Page": "Deze pagina", "Welcome! This is": "Welkom! Dit is", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Uw zoekopdracht leverde geen resultaten op. Zorg ervoor dat alle woorden juist zijn gespeld en dat u voldoende categorie\u00ebn hebt geselecteerd.", "all functions, classes, terms": "alle functies, klasses en begrippen", "can be huge": "kan heel groot zijn", "last updated": "laatst bijgewerkt", "lists all sections and subsections": "geeft alle secties en subsecties weer", "next chapter": "volgend hoofdstuk", "previous chapter": "vorig hoofdstuk", "quick access to all modules": "sneltoegang naar alle modules", "search": "zoeken", "search this documentation": "zoeken in deze documentatie", "the documentation for": "de documentatie voor"}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index eca0c432088bccad6ca868b8c8a6db7b9cf40709..f2fab5a9f836e9d594fb1b26b75dbb31af06669e 100644 GIT binary patch delta 15391 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 delta 16859 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 diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index aa68fc8dd..e0dd23c89 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -1,20 +1,21 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: -# Bram Geron <bgeron@gmail.com>, 2017 +# Bram Geron, 2017 # brechtm, 2016 # brechtm, 2018 # FIRST AUTHOR <EMAIL@ADDRESS>, 2008 +# Gert van Dijk <gertvdijk@gmail.com>, 2019 # Jesse Tan, 2017 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-20 10:06+0000\n" +"Last-Translator: Gert van Dijk <gertvdijk@gmail.com>\n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -23,24 +24,24 @@ msgstr "" "Language: nl\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" +msgstr "configuratiemap bevat geen conf.py bestand (%s)" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" -msgstr "" +msgstr "Kan bronmap niet vinden (%s)" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" -msgstr "" +msgstr "Bron- en doelmap kunnen niet identiek zijn" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" -msgstr "" +msgstr "Sphinx v%s start op" #: sphinx/application.py:214 #, python-format @@ -50,95 +51,83 @@ msgid "" msgstr "Dit project vereist tenminste Sphinx v%s, en kan daarom niet worden gebouwd met deze versie." #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" +msgstr "aanmaken doelmap" + +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:245 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." -msgstr "'setup' gedefinieerd in conf.py is geen Python callable. Pas a.u.b. de definitie aan zodat het een oproepbare functie wordt. Dit is nodig voor conf.py om zich als een Sphinx extensie te gedragen." +msgstr "'setup' gedefinieerd in conf.py is niet aanroepbaar (geen Python-callable). Pas a.u.b. de definitie aan zodat het een oproepbare functie wordt. Dit is nodig voor conf.py om zich als een Sphinx extensie te gedragen." -#: sphinx/application.py:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "primary_domain %r onbekend, wordt genegeerd." - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " -msgstr "" +msgstr "laden van vertalingen [%s]... " -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "klaar" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " -msgstr "opgeslagen omgeving wordt geladen..." +#: sphinx/application.py:298 +msgid "loading pickled environment" +msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "mislukt: %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "Geen bouwer geselecteerd, dus de standaardbouwer wordt gebruikt: html" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "gelukt" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "afgerond met problemen" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "bouwen %s, %s waarschuwing." -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "bouwen %s." -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" -msgstr "tijdens gereedmaken extensie %s: node-klasse %r is reeds geregistreerd, haar visitors zullen worden overschreven" +msgid "node class %r is already registered, its visitors will be overridden" +msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" -msgstr "tijdens gereedmaken extensie %s: directive %r is al geregistreerd en zal worden overschreven" +msgid "directive %r is already registered, it will be overridden" +msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" -msgstr "tijdens gereedmaken extensie %s: rol %r is reeds geregistreerd en zal worden overschreven" +msgid "role %r is already registered, it will be overridden" +msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,7 +135,7 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel lezen, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -154,894 +143,777 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel schrijven, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" -msgstr "" +msgstr "seriële verwerking van %s" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "kan dictionary-instelling %r niet overschrijven in configuratie, wordt genegeerd (gebruik %r om individuele elementen te overschrijven)" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "ongeldig getal %r voor configuratiewaarde %r, wordt genegeerd" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "kan instelling %r niet overschrijven met zo'n waarde van een niet-ondersteund type; wordt genegeerd" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "onbekende configuratiewaarde %r tijdens overschrijven, wordt genegeerd" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "Ongeldige configuratiewaarde: %s" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "Configuratiewaarde %r was reeds aangevoerd" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" "\n" "%s" -msgstr "" +msgstr "Een fout heeft zich voorgedaan in uw configuratiebestand:\n\n%s" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "Sectie %s" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "Tabel %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Codefragment %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." +msgstr "De waarde voor configuratievariabele %r is een tekenreeks met karakters buiten de ASCII-set. Dit kan leiden tot problemen met de Unicode tekencodering. Maak alstublieft gebruik van Unicode-tekenreeksen, bijvoorbeeld: %r." + +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "primary_domain %r onbekend, wordt genegeerd." + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." msgstr "" -#: sphinx/events.py:58 +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "Gebeurtenis %r bestaat reeds" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "Onbekende gebeurtenisnaam: %s" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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 "Dit project vereist extensie %s met versie %s of hoger, en kan daarom niet met de geladen versie (%s) worden gebouwd" -#: sphinx/highlighting.py:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Bouwerklasse %s heeft geen \"name\"-attribuut" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Bouwer %r bestaat reeds (in module %s)" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Bouwernaam %s is niet geregistreerd of beschikbaar via entrypoint" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "Bouwernaam %s is niet geregistreerd" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "domein %s was reeds geregistreerd" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "domein %s nog niet geregistreerd" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser voor %r is reeds geregistreerd" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" -msgstr "Broncode-parservoor %s is niet geregistreerd" +msgstr "Broncode-parser voor %s is niet geregistreerd" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "source_input voor %r is reeds geregistreerd" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" -msgstr "source_input voor %s is niet geregistreerd" - -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "extensie %r is reeds in Sphinx ingevoegd sinds Sphinx-versie %s; deze extensie wordt genegeerd." -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "Oorspronkelijke exceptie:\n" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "Kon extensie %s niet importeren" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "extensie %r heeft geen setup() functie; weet u zeker dat het een Sphinx-extensiemodule is?" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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 "Dit project gebruikt extensie %s, maar die extensie heeft Sphinx-versie v%s of hoger nodig; het project kan daarom niet worden gebouwd met deze versie." -#: sphinx/registry.py:495 +#: sphinx/registry.py:496 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "de setup() functie van extensie %r retourneerde een niet-ondersteund object; dit moet None of een metadata dictionary zijn" -#: sphinx/roles.py:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "thema %r heeft geen \"theme\" instelling" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "thema %r heeft geen \"inherit\" instelling" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "thema met naam %r niet gevonden, geërfd door %r" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "instelling %s.%s komt niet voor in de doorzochte thema configuraties" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "Thema-extensie %r gedraagt zich niet correct." - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "bestand %r in thema pad is geen geldige zipfile of bevat geen thema" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "sphinx_rtd_theme is sinds versie 1.4.0 niet langer een harde afhankelijkheid. Installeer het handmatig. (pip install sphinx_rtd_theme)" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "thema met naam %r niet gevonden (ontbrekende theme.conf?)" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" -msgstr "" +msgstr "bestand %r zoals gegeven op de opdrachtregel is niet aanwezig in de bronmap, wordt genegeerd" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Builtins" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Moduleniveau" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" -msgstr "" +msgstr "de waarde voor de configuratievariabele html_use_opensearch moet een tekenreeks zijn" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Algemene index" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "index" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "volgende" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "vorige" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s documentatie" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1055,188 +927,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (in " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Index" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Release" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1255,253 +1149,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" -msgstr "" +msgstr "pad naar doelmap" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1509,11 +1397,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1521,25 +1409,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" -msgstr "" +msgstr "Naam van het project" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" -msgstr "" +msgstr "Auteur(s)" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1549,15 +1437,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" -msgstr "" +msgstr "Versie van het project" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" -msgstr "" +msgstr "Release van het project" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1568,22 +1456,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1592,36 +1480,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" -msgstr "" +msgstr "Bestandsnaam van het hoofddocument (zonder bestandsextensie)" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." -msgstr "" +msgstr "Fout: hoofddocumentbestandsnaam %s is reeds aanwezig op het aangewezen pad." -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1629,56 +1517,56 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." -msgstr "" +msgstr "Afgerond: een beginstructuur van mappen is aangemaakt." -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" "You should now populate your master file %s and create other documentation\n" "source files. " -msgstr "" +msgstr "\nU kunt nu uw hoofddocument %s gaan vullen en andere bronbestanden\nvoor documentatie aanmaken." -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1688,214 +1576,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" -msgstr "" +msgstr "release van project" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" -msgstr "" +msgstr "documenttaal" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" -msgstr "" +msgstr "bestandsextensie van bronbestanden" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" -msgstr "" +msgstr "bestandsnaam van hoofddocument" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" -msgstr "" +msgstr "sjabloonmap voor sjabloonbestanden" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "Overmatige negative inspringing gevonden" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "Ongeldig onderschrift: %s" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Gebruik van zowel \"%s\" als \"%s\" opties is niet toegestaan" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "Include bestand %r is niet gevonden of het lezen is mislukt" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "Encodering %r gebruikt voor het lezen van include-bestand %r lijkt verkeerd, probeer een :encoding: optie te specificeren" -#: sphinx/directives/code.py:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "Object met naam %r is niet gevonden in include bestand %r" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "\"lineno-match\" kan niet gebruikt worden met een disjuncte set \"lines\"" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Regels %r: geen regels gebruikt uit include-bestand %r" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Auteur van deze sectie: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Auteur van deze module: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Auteur van deze broncode:" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Auteur: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parameters" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Returns" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Return type" @@ -1924,12 +1812,12 @@ msgstr "%s (C-type)" msgid "%s (C variable)" msgstr "%s (C-variabele)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "functie" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "member" @@ -1937,7 +1825,7 @@ msgstr "member" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "type" @@ -1945,297 +1833,262 @@ msgstr "type" msgid "variable" msgstr "variabele" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Nieuw in versie %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Veranderd in versie %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Verouderd sinds versie %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "Sjabloonparameters" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Werpt" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++-type)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "%s (C++ concept)" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++-member)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++-functie)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++-klasse)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (C++ enum)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (C++ enumerator)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (ingebouwde functie)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s methode)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (klasse)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globale variabele of constante)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribuut)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Argumenten" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "methode" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "attribuut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "module" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "duplicaatlabel van formule %s, andere in %s" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "trefwoord" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "object" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "exceptie" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "statement" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "ingebouwde functie" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Variabelen" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Veroorzaakt" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in module %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (geïntegreerde variabele)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (in module %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (geïntegreerde klasse)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse in %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (methode van %s.%s)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statische methode van %s.%s)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische methode van %s)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klassemethode)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemethode)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (attribuut van %s.%s)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Python-moduleïndex" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Verouderd" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "klassemethode" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "statische methode" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (verouderd)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (directive)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (rol)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "directive" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "rol" @@ -2244,209 +2097,200 @@ msgstr "rol" msgid "environment variable; %s" msgstr "omgevingsvariabele; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%sopdrachtregel-optie; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "woordenlijstterm" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "grammaticatoken" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "verwijzingslabel" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "omgevingsvariabele" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "programmaoptie" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "document" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Index" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Module-index" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Zoekpagina" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" -msgstr "" +msgstr "onderschrift ontbreekt voor link: %s" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" -msgstr "" +msgstr "bronmap is gewijzigd" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "zie %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "zie %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Symbolen" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2458,352 +2302,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" -msgstr "" +msgstr "bestandsextensie (standaardwaarde: rst)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." -msgstr "" +msgstr "%s is geen map." -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "ontbrekende '+' of '-' in optie '%s'." -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' is geen geldige optie." -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' is geen geldige pyversion optie" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz directive mag niet zowel inhoud als een bestandsnaam argument hebben" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "Extern Graphviz bestand %r niet gevonden of het lezen is mislukt" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "\"graphviz\" directive zonder inhoud wordt genegeerd." -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "dot commando %r kan niet worden uitgevoerd (vereist voor graphviz output), controleer de instelling graphviz_dot" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "dot is gestopt met een foutmelding:\n[stderr]\n%s\n[stdout]\n%s" +"%r" +msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "dot heeft geen output bestand gegenereerd:\n[stderr]\n%s\n[stdout]\n%s" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format moet 'png' of 'svg' zijn, maar is %r" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[graaf: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[graaf]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "convert commando %r kan niet worden uitgevoerd.controleer de instelling image_converter" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "convert is gestopt met een foutmelding:\n[stderr]\n%s\n[stdout]\n%s" +"%r" +msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Permalink naar deze formule" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "(in %s)" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[broncode]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Te doen" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "<<origineel item>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "(Het <<originele item>> bevindt zich in %s, regel %d.)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "originele item" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[documentatie]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Modulebroncode" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Broncode voor %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Overzicht: module broncode" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Alle modules waarvoor de broncode beschikbaar is</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2811,66 +2684,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "Basisklassen: %s" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "alias voor :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2885,106 +2777,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "Sleutelwoordargumenten" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" -msgstr "" +msgstr "Verwijzingen" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Let op" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Pas op" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Gevaar" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Fout" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Hint" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Belangrijk" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Notitie" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Zie ook" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Waarschuwing" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "Vervolgd van vorige pagina" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Vervolgd op volgende pagina" @@ -3003,7 +2895,7 @@ msgstr "Zoeken" msgid "Go" msgstr "Zoek" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Broncode weergeven" @@ -3152,13 +3044,13 @@ msgstr "zoeken" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Zoekresultaten" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3200,36 +3092,36 @@ msgstr "Veranderingen in de C-API" msgid "Other changes" msgstr "Andere veranderingen" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Permalink naar deze titel" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Permalink naar deze definitie" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Zoekresultaten verbergen" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Bezig met zoeken" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Zoeken aan het voorbereiden..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Zoekopdracht voltooid, %s pagaina(s) gevonden die overeenkomen met de zoekterm." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", in" @@ -3246,76 +3138,89 @@ msgstr "Zijpaneel inklappen" msgid "Contents" msgstr "Inhoudsopgave" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "meer dan één doel gevonden voor 'any' kruisverwijzing %r: is mogelijk %s" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "%s:%s verwijzingsdoel niet gevonden: %%(target)s" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "%r verwijzingsdoel niet gevonden: %%(target)s" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "bij het toevoegen van een directive klasse, mogen geen extra argumenten worden meegegeven" @@ -3329,140 +3234,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Permalink naar deze tabel" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Permalink naar deze broncode" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Permallink naar deze afbeelding" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "Permalink naar deze toctree" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Release" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "Vervolgt op volgende pagina" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "pagina" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Voetnoten" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Onbekende configuratiesleutel: latex_elements[%r] wordt genegeerd" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[afbeelding: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[afbeelding]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." -msgstr "" +msgstr "onderschrift niet binnen figuur." -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.js b/sphinx/locale/pl/LC_MESSAGES/sphinx.js index 34c3e6ea9..b37478876 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "pl", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", w ", "About these documents": "O tych dokumentach", "Automatically generated list of changes in version %(version)s": "Automatycznie wygenerowana lista zmian w wersji %(version)s", "C API changes": "Zmiany w C API", "Changes in Version %(version)s — %(docstitle)s": "Zmiany w wersji %(version)s — %(docstitle)s", "Collapse sidebar": "Zwi\u0144 pasek boczny", "Complete Table of Contents": "Kompletny spis tre\u015bci", "Contents": "Tre\u015b\u0107", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Utworzone przy pomocy <a href=\"http://sphinx-doc.org/\">Sphinx</a>'a %(sphinx_version)s.", "Expand sidebar": "Rozwi\u0144 pasek boczny", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "St\u0105d mo\u017cesz przeszuka\u0107 dokumentacj\u0119. Wprowad\u017a szukane\n s\u0142owa w poni\u017cszym okienku i kliknij \"Szukaj\". Zwr\u00f3\u0107 uwag\u0119, \u017ce\n funkcja szukaj\u0105ca b\u0119dzie automatycznie szuka\u0142a wszystkich s\u0142\u00f3w. Strony\n nie zawieraj\u0105ce wszystkich wpisanych s\u0142\u00f3w nie znajd\u0105 si\u0119 na wynikowej li\u015bcie.", "Full index on one page": "Ca\u0142y indeks na jednej stronie", "General Index": "Indeks og\u00f3lny", "Global Module Index": "Globalny indeks modu\u0142\u00f3w", "Go": "Szukaj", "Hide Search Matches": "Ukryj wyniki wyszukiwania", "Index": "Indeks", "Index – %(key)s": "Indeks – %(key)s", "Index pages by letter": "Strony indeksu alfabetycznie", "Indices and tables:": "Indeksy i tablice:", "Last updated on %(last_updated)s.": "Ostatnia modyfikacja %(last_updated)s.", "Library changes": "Zmiany w bibliotekach", "Navigation": "Nawigacja", "Next topic": "Nast\u0119pny temat", "Other changes": "Inne zmiany", "Overview": "Przegl\u0105d", "Permalink to this definition": "Sta\u0142y odno\u015bnik do tej definicji", "Permalink to this headline": "Sta\u0142y odno\u015bnik do tego nag\u0142\u00f3wka", "Please activate JavaScript to enable the search\n functionality.": "Aby umo\u017cliwi\u0107 wyszukiwanie, prosz\u0119 w\u0142\u0105czy\u0107 JavaScript.", "Preparing search...": "Inicjalizacja wyszukiwania...", "Previous topic": "Poprzedni temat", "Quick search": "Szybkie wyszukiwanie", "Search": "Szukaj", "Search Page": "Wyszukiwanie", "Search Results": "Wyniki wyszukiwania", "Search finished, found %s page(s) matching the search query.": "Wyszukiwanie zako\u0144czone. Liczba znalezionych stron pasuj\u0105cych do zapytania: %s.", "Search within %(docstitle)s": "Szukaj po\u015br\u00f3d %(docstitle)s", "Searching": "Wyszukiwanie", "Show Source": "Poka\u017c \u017ar\u00f3d\u0142o", "Table of Contents": "", "This Page": "Ta strona", "Welcome! This is": "Witaj! To jest", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Twoje wyszukiwanie nie da\u0142o \u017cadnych wynik\u00f3w. Upewnij si\u0119, \u017ce wszystkie s\u0142owa s\u0105 wpisane prawid\u0142owo i \u017ce wybra\u0142e\u015b dostateczn\u0105 ilo\u015b\u0107 kategorii.", "all functions, classes, terms": "wszystkie funkcje, klasy, terminy", "can be huge": "mo\u017ce by\u0107 ogromny", "last updated": "ostatnio aktualizowana", "lists all sections and subsections": "wszystkie rozdzia\u0142y i podrozdzia\u0142y", "next chapter": "nast\u0119pny rozdzia\u0142", "previous chapter": "poprzedni rozdzia\u0142", "quick access to all modules": "szybki dost\u0119p do wszystkich modu\u0142\u00f3w", "search": "szukaj", "search this documentation": "przeszukaj t\u0119 dokumentacj\u0119", "the documentation for": "dokumentacja do"}, "plural_expr": "(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3)"}); +Documentation.addTranslations({"locale": "pl", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", w ", "About these documents": "O tych dokumentach", "Automatically generated list of changes in version %(version)s": "Automatycznie wygenerowana lista zmian w wersji %(version)s", "C API changes": "Zmiany w C API", "Changes in Version %(version)s — %(docstitle)s": "Zmiany w wersji %(version)s — %(docstitle)s", "Collapse sidebar": "Zwi\u0144 pasek boczny", "Complete Table of Contents": "Kompletny spis tre\u015bci", "Contents": "Tre\u015b\u0107", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Utworzone przy pomocy <a href=\"http://sphinx-doc.org/\">Sphinx</a>'a %(sphinx_version)s.", "Expand sidebar": "Rozwi\u0144 pasek boczny", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "St\u0105d mo\u017cesz przeszuka\u0107 dokumentacj\u0119. Wprowad\u017a szukane\n s\u0142owa w poni\u017cszym okienku i kliknij \"Szukaj\". Zwr\u00f3\u0107 uwag\u0119, \u017ce\n funkcja szukaj\u0105ca b\u0119dzie automatycznie szuka\u0142a wszystkich s\u0142\u00f3w. Strony\n nie zawieraj\u0105ce wszystkich wpisanych s\u0142\u00f3w nie znajd\u0105 si\u0119 na wynikowej li\u015bcie.", "Full index on one page": "Ca\u0142y indeks na jednej stronie", "General Index": "Indeks og\u00f3lny", "Global Module Index": "Globalny indeks modu\u0142\u00f3w", "Go": "Szukaj", "Hide Search Matches": "Ukryj wyniki wyszukiwania", "Index": "Indeks", "Index – %(key)s": "Indeks – %(key)s", "Index pages by letter": "Strony indeksu alfabetycznie", "Indices and tables:": "Indeksy i tablice:", "Last updated on %(last_updated)s.": "Ostatnia modyfikacja %(last_updated)s.", "Library changes": "Zmiany w bibliotekach", "Navigation": "Nawigacja", "Next topic": "Nast\u0119pny temat", "Other changes": "Inne zmiany", "Overview": "Przegl\u0105d", "Permalink to this definition": "Sta\u0142y odno\u015bnik do tej definicji", "Permalink to this headline": "Sta\u0142y odno\u015bnik do tego nag\u0142\u00f3wka", "Please activate JavaScript to enable the search\n functionality.": "Aby umo\u017cliwi\u0107 wyszukiwanie, prosz\u0119 w\u0142\u0105czy\u0107 JavaScript.", "Preparing search...": "Inicjalizacja wyszukiwania...", "Previous topic": "Poprzedni temat", "Quick search": "Szybkie wyszukiwanie", "Search": "Szukaj", "Search Page": "Wyszukiwanie", "Search Results": "Wyniki wyszukiwania", "Search finished, found %s page(s) matching the search query.": "Wyszukiwanie zako\u0144czone. Liczba znalezionych stron pasuj\u0105cych do zapytania: %s.", "Search within %(docstitle)s": "Szukaj po\u015br\u00f3d %(docstitle)s", "Searching": "Wyszukiwanie", "Show Source": "Poka\u017c \u017ar\u00f3d\u0142o", "Table of Contents": "Spis tre\u015bci", "This Page": "Ta strona", "Welcome! This is": "Witaj! To jest", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Twoje wyszukiwanie nie da\u0142o \u017cadnych wynik\u00f3w. Upewnij si\u0119, \u017ce wszystkie s\u0142owa s\u0105 wpisane prawid\u0142owo i \u017ce wybra\u0142e\u015b dostateczn\u0105 ilo\u015b\u0107 kategorii.", "all functions, classes, terms": "wszystkie funkcje, klasy, terminy", "can be huge": "mo\u017ce by\u0107 ogromny", "last updated": "ostatnio aktualizowana", "lists all sections and subsections": "wszystkie rozdzia\u0142y i podrozdzia\u0142y", "next chapter": "nast\u0119pny rozdzia\u0142", "previous chapter": "poprzedni rozdzia\u0142", "quick access to all modules": "szybki dost\u0119p do wszystkich modu\u0142\u00f3w", "search": "szukaj", "search this documentation": "przeszukaj t\u0119 dokumentacj\u0119", "the documentation for": "dokumentacja do"}, "plural_expr": "(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3)"}); \ No newline at end of file diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 318e569b582797b33b1f2cd5837439d5e7160323..a829c3dc9e5e5632f8c78a285b904fb1d9f8f04f 100644 GIT binary patch delta 17782 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 delta 17402 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 MEA!6zAN@`FUxn>U{{R30 diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 1577af1eb..2665e142c 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -1,19 +1,19 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: # m_aciek <maciej.olko@gmail.com>, 2017-2018 # Michael Gielda <michal.gielda@gmail.com>, 2014 # Takeshi KOMIYA <i.tkomiya@gmail.com>, 2018 -# Tawez, 2013-2018 +# Tawez, 2013-2019 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-22 21:48+0000\n" -"Last-Translator: m_aciek <maciej.olko@gmail.com>\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,21 +22,21 @@ msgstr "" "Language: pl\n" "Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "folder konfiguracyjny nie zawiera pliku conf.py (%s)" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nie odnaleziono katalogu źródłowego (%s)" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "Katalog źródłowy i katalog docelowy nie mogą być identyczne" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "Uruchamianie Sphinksa v%s" @@ -49,95 +49,83 @@ msgid "" msgstr "Ten projekt potrzebuje Sphinksa w wersji co najmniej %s, dlatego nie może zostać zbudowany z tą wersją." #: sphinx/application.py:234 -msgid "making output directory..." -msgstr "tworzenie katalogu wyjścia..." +msgid "making output directory" +msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' podany w conf.py nie jest wywoływalny. Prosimy zmienić jego definicję tak, aby była wywoływalną funkcją. Jest to potrzebne w conf.py, aby zachowywało się jak rozszerzenie Sphinksa." -#: sphinx/application.py:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "Nie odnaleziono primary_domain %r, zignorowano." - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "ładowanie tłumaczeń [%s]..." -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "gotowe" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "niedostępne dla wbudowanych wiadomości" -#: sphinx/application.py:300 -msgid "loading pickled environment... " -msgstr "ładowanie zapakowanego środowiska..." +#: sphinx/application.py:298 +msgid "loading pickled environment" +msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "nie powiodło się: %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "Nie wybrano buildera, używamy domyślnego: html" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "udało się" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "zakończono z problemami" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "build %s, %s ostrzeżenie." -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "build %s." -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" -msgstr "podczas ustawiania rozszerzenia %s: klasa %r jest już zarejestrowana, jej wizytorzy zostaną nadpisani" +msgid "node class %r is already registered, its visitors will be overridden" +msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" -msgstr "podczas uruchamiania rozszerzenia %s: dyrektywa %r jest już zarejestrowana, zostanie nadpisana" +msgid "directive %r is already registered, it will be overridden" +msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" -msgstr "podczas uruchamiania rozszerzenia %s: rola %r jest już zarejestrowana, zostanie nadpisana" +msgid "role %r is already registered, it will be overridden" +msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -145,7 +133,7 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do czytania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenie o sprawdzenie i zadeklarowania tego wprost" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -153,60 +141,54 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do pisania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenia o sprawdzenie i zadeklarowanie tego wprost" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "nie można nadpisać słownikowego ustawienia konfiguracji %r, ignorowanie (użyj %r, by ustawić poszczególne elementy)" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "niepoprawna liczba %r dla wartości konfiguracji %r, ignorowanie" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "nie można nadpisać ustawienia konfiguracji %r nie wspieranym typem, ignorowanie" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "nieznana wartość konfiguracji %r w nadpisaniu, ignorowanie" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "Nie ma takiej wartości konfiguracyjnej: %s" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "Wartość konfiguracji %r już podana" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" -msgstr "W twoim piku konfiguracyjnym jest błąd składniowy: %s" +msgid "There is a syntax error in your configuration file: %s\n" +msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "\nCzy zmieniłeś składnię z 2.x na 3.x?" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Plik konfiguracyjny (albo jeden z modułów przez niego zaimportowanych) wywołał sys.exit()" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -214,836 +196,725 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." -msgstr "Wartość konfiguracyjna `source_suffix' powinna być ciągiem znaków, listą ciągów znaków lub słownikiem. A podano `%r'." +msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "Rozdział %s" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "Rys. %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Listing %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "Wartość konfiguracyjna `{name}` musi być jednym z {candidates}, a podany jest `{current}`." -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "Nie odnaleziono primary_domain %r, zignorowano." + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "Zdarzenie %r już obecne" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "Nieznana nazwa zdarzenia: %s" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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 "Ten projekt potrzebuje rozszerzenia %s co najmniej w wersji %s, dlatego nie może zostać zbudowany z załadowaną wersją (%s)." -#: sphinx/highlighting.py:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Klasa buildera %s nie ma atrybutu \"name\"" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Builder %r już istnieje (w module %s)" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Builder o nazwie %s jest niezarejestrowany lub dostępny przez punkt wejścia" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "Builder o nazwie %s jest niezarejestrowany" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "domena %s jest już zarejestrowana" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "domena %s nie została jeszcze zarejestrowana" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" -msgstr "" +msgstr "%r object_type jest już zarejestrowany" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" -msgstr "" +msgstr "%r crossref_type jest już zarejestrowany" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "source_suffix %r jest już zarejestrowany" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser dla %r jest już zarejestrowany" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "Parser źródeł dla %s jest nie zarejestrowany" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "source_input dla %r jest już zarejestrowany" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" -msgstr "source_input dla %s jest nie zarejestrowany" - -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" -msgstr "" +msgstr "enumerable_node %r już zarejestrowany" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "rozszerzenie %r zostało już włączone do Sphinx'a, począwszy od wersji %s; to rozszerzenie jest zignorowane." -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "Pierwotny wyjątek:\n" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "Nie można zaimportować rozszerzenia %s" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "rozszerzenie %r nie zawiera funkcji setup(); czy to na pewno moduł rozszerzenia Sphinx?" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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 "Rozszerzenie %s używane przez ten projekt potrzebuje Sphinksa w wersji co najmniej %s; dlatego nie może zostać zbudowane z tą wersją." -#: sphinx/registry.py:495 +#: sphinx/registry.py:496 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "rozszerzenie %r zwróciło nie wspierany obiekt ze swojej funkcji setup(); powinno zwrócić None lub słownik metadanych" -#: sphinx/roles.py:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "motyw %r nie ma ustawienia \"theme\"" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "motyw %r nie ma ustawienia \"inherit\"" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "nie znaleziono motywu o nazwie %r, z którego dziedziczy %r" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "ustawienie %s.%s nie występuje w żadnej z przeszukiwanych konfiguracji motywów" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "Rozszerzenie %r motywu nie odpowiedziało poprawnie." - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "plik %r na ścieżce motywu nie jest poprawnym plikiem zip lub nie zawiera motywu" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "sphinx_rtd_theme nie jest już twardą zależnością od wersji 1.4.0. Prosimy zainstalować je ręcznie. (pip install sphinx_rtd_theme)" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "nie znaleziono motywu o nazwie %r (brak theme.conf?)" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "budowanie [mo]:" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "pisanie wyjścia..." -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "wszystkie z %d plików po" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "wsztstkie pliki źródłowe" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" -msgstr "" +msgstr "plik %r podany w wierszu poleceń nie znajduje się w katalogu źródłowym, ignoruję" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" -msgstr "" +msgstr "plik %r podany w wierszu poleceń nie istnieje, ignoruję" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" -msgstr "" +msgstr "%d plików źródłowych podano w wierszu poleceń" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "budowanie [%s]" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" -msgstr "" +msgstr "znaleziono %d" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" +msgstr "nic nie znaleziono" + +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " -msgstr "" - -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " -msgstr "przygotowywanie dokumentów..." - -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "kopiowanie obrazków..." + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "pisanie pliku %s..." -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" -msgstr "" +msgstr "nieznany mimetype dla %s, ignoruję" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "kopiowanie zlokalizowanych plików..." - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "zapisywanie Info.plist... " - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "kopiowanie ikony..." - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "budowanie strony dostępu..." - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "pomijanie" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "brak zmian w wersji %s." -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Wbudowane" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Poziom modułu" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "kopiowanie plików źródłowych..." -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "Plik ePub znajduje się w %(outdir)s." -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" -msgstr "" +msgstr "nieprawidłowy css_file: %r, zignorowano" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " -msgstr "" +msgstr "wczytywanie szablonów... " -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." -msgstr "" +msgstr "Strony HTML są w %(outdir)s." -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" -msgstr "" +msgstr "wartość konfiguracyjna html_use_opensearch musi być teraz ciągiem" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indeks ogólny" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "indeks" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "dalej" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "wstecz" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." -msgstr "" +msgstr "generowanie indeksów..." -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." -msgstr "" +msgstr "zapisywanie dodatkowych stron..." -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " -msgstr "" +msgstr "kopiowanie plików do pobrania..." -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " -msgstr "" +msgstr "kopiowanie plików statycznych..." -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" -msgstr "" +msgstr "plik favicon %r nie istnieje" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" -msgstr "" +msgstr "nie można skopiować pliku statycznego %r" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " -msgstr "" +msgstr "kopiowanie dodatkowych plików..." -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" -msgstr "" +msgstr "nie można skopiować dodatkowego pliku %r" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" -msgstr "" +msgstr "Wystąpił błąd podczas renderowania strony %s.\nPowód: %r" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" -msgstr "" +msgstr "błąd zapisu pliku %s: %s" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" -msgstr "" +msgstr "nieprawidłowy js_file: %r, zignorowano" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." -msgstr "" +msgstr "Podano nieznany math_renderer %r." -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s - dokumentacja" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" -msgstr "" +msgstr "Nie znaleziono kotwicy '%s'" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" -msgstr "" +msgstr "zepsuty odnośnik: %s (%s)" #: sphinx/builders/manpage.py:43 #, python-format @@ -1054,188 +925,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." +msgstr "Strona HTML jest w %(outdir)s." + +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." -msgstr "" +msgstr "Pliki Texinfo znajdują się w %(outdir)s." -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" -msgstr "" +msgstr "nie znaleziono wartości konfiguracyjnej \"texinfo_documents\"; żadne dokumenty nie zostaną zapisane" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" -msgstr "" +msgstr "wartość konfiguracyjna \"texinfo_documents\" odwołuje się do nieznanego dokumentu %s" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (w " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." -msgstr "" +msgstr "Pliki tekstowe są w %(outdir)s." -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." -msgstr "" +msgstr "Pliki XML znajdują się w %(outdir)s." -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." -msgstr "" +msgstr "Pliki pseudo-XML są w %(outdir)s." -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." -msgstr "" +msgstr "Pliki LaTeX znajdują się w %(outdir)s." -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" -msgstr "" +msgstr "nie znaleziono wartości konfiguracyjnej \"latex_documents\"; żadne dokumenty nie zostaną zapisane" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" +msgstr "wartość konfiguracyjna \"latex_documents\" odwołuje się do nieznanego dokumentu %s" + +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Indeks" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Wydanie" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" -msgstr "" +msgstr "Błąd kodowania:" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" -msgstr "" +msgstr "Błąd rekursji:" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" -msgstr "" +msgstr "Wystąpił wyjątek:" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" -msgstr "" +msgstr "Raport o błędzie można zgłosić pod adresem <https://github.com/sphinx-doc/sphinx/issues>. Dzięki!" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." -msgstr "" +msgstr "Aby uzyskać więcej informacji, odwiedź <http://sphinx-doc.org/>." -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1254,253 +1147,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" -msgstr "" +msgstr "ogólne opcje" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" -msgstr "" +msgstr "zapisz wszystkie pliki (domyślnie: zapisz tylko nowe i zmienione pliki)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" -msgstr "" +msgstr "zastąp ustawienie w pliku konfiguracyjnym" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" -msgstr "" +msgstr "przekaż wartość do szablonów HTML" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" -msgstr "" +msgstr "zwiększ szczegółowość (może być powtórzone)" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" -msgstr "" +msgstr "zapisz ostrzeżenia (i błędy) do podanego pliku" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" -msgstr "" +msgstr "zamień ostrzeżenia na błędy" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" -msgstr "" +msgstr "nie można znaleźć plików %r" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" -msgstr "" +msgstr "Argument opcji -D musi mieć postać nazwa=wartość" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" -msgstr "" +msgstr "Argument opcji -A musi mieć postać nazwa=wartość" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" -msgstr "" +msgstr "warunkowe włączenie treści na podstawie wartości konfiguracyjnych" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." -msgstr "" +msgstr "Wprowadź poprawną nazwę ścieżki." -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." -msgstr "" +msgstr "Wprowadź \"y\" lub \"n\"." -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." -msgstr "" +msgstr "Podaj rozszerzenie pliku, na przykład '.rst' lub '.txt'." -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "Witamy w narzędziu quickstart Sphinksa %s." -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." msgstr "\nWprowadź, prosimy, wartości dla następujących ustawień (po prostu\nnaciskaj Enter, aby zaakceptować domyślną wartość, jeśli jest podana\nw nawiasie)." -#: sphinx/cmd/quickstart.py:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "\nWybrana ścieżka root: %s" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "\nWprowadź ścieżkę root dla dokumentacji." -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "Ścieżka root dla dokumentacji" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "Błąd: znaleziono istniejący conf.py na wskazanej ścieżce root." -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "sphinx-quickstart nie nadpisze istniejących projektów Sphinx." -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "Wprowadź, prosimy, nową ścieżkę root (lub tylko Enter, aby wyjść)" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1508,11 +1395,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "\nMasz dwie możliwości umieszczenia katalogu build na wyjście Sphinksa.\nMożesz użyć katalogu „_build” na ścieżce root lub rozdzielić\nkatalogi „source” i „build” na ścieżce root." -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "Rozdziel katalogi source i build (y/n)" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1520,25 +1407,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "\nWewnątrz katalogu root zostaną stworzone jeszcze dwa katalogi; „_templates”\nna własne szablony HTML oraz „_static” na własne arkusze stylów i inne statyczne\npliki. Możesz wprowadzić inny prefiks (taki jak „.”), aby zastąpić znak podkreślenia." -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "Prefiks nazw dla katalogów templates i static" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "\nNazwa projektu będzie używana w kilku miejscach w zbudowanej dokumentacji." -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "Nazwa projektu" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "Nazwisko autora" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1548,15 +1435,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "Wersja projektu" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "Wydanie projektu" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1567,22 +1454,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "\nJeśli dokumenty mają być pisane w języku innym niż angielski,\nmożesz tutaj wybrać język przez jego kod. Sphinx następnie\nprzetłumaczy tekst, który generuje, na ten język.\n\nListę wspieranych kodów znajdziesz na\nhttp://sphinx-doc.org/config.html#confval-language." -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "Język projektu" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." msgstr "\nSufiks nazwy pliku dla plików źródłowych. Powszechnie to „.txt” lub „.rst”. Tylko pliki z tym sufiksem są brane za dokumenty." -#: sphinx/cmd/quickstart.py:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "Sufiks pliku źródłowego" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1591,36 +1478,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." -msgstr "" +msgstr "sphinx-quickstart nie nadpisze istniejącego pliku." -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" -msgstr "" +msgstr "Wskaż, które z następujących rozszerzeń Sphinx powinny być włączone:" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1628,29 +1515,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "Stworzyć Makefile? (y/n)" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "Tworzenie pliku %s." -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." -msgstr "" +msgstr "Plik %s już istnieje, pomijam." -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." -msgstr "" +msgstr "Zakończono: Utworzono początkową strukturę katalogów." -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1658,26 +1545,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1687,214 +1574,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" -msgstr "" +msgstr "tryb cichy" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" -msgstr "" +msgstr "Podstawowe opcje projektu" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" -msgstr "" +msgstr "nazwa projektu" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" -msgstr "" +msgstr "nazwiska autorów" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" -msgstr "" +msgstr "wersja projektu" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" -msgstr "" +msgstr "język dokumentu" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" -msgstr "" +msgstr "rozszerzenie pliku źródłowego" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" -msgstr "" +msgstr "nazwa głównego dokumentu" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" -msgstr "" +msgstr "Opcje rozszerzeń" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" -msgstr "" +msgstr "włącz rozszerzenie %s" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" -msgstr "" +msgstr "utwórz plik makefile" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" -msgstr "" +msgstr "nie twórz pliku makefile" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" -msgstr "" +msgstr "twórz plik wsadowy" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" -msgstr "" +msgstr "nie twórz pliku wsadowego" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "Wykryto nadużycie" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "Nieprawidłowy podpis: %s" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Nie można użyć jednocześnie opcji \"%s\" i \"%s\"" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "Plik include %r nie znaleziony lub nie powiódł się jego odczyt" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "Kodowanie %r użyte do odczytu pliku include %r wydaje się być złe, spróbuj dając opcję :encoding:" -#: sphinx/directives/code.py:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "Nie znaleziono obiektu o nazwie %r w pliku include %r" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "Nie można użyć „lineno-match” z rozłącznym zbiorem „lines”" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Specyfikacja linii %r: nie wyciągnięto żadnych linii z pliku include %r" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Autor rozdziału: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Autor modułu: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Autor kodu: " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Autor: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametry" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Zwraca" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Typ zwracany" @@ -1923,12 +1810,12 @@ msgstr "%s (typ C)" msgid "%s (C variable)" msgstr "%s (zmienna C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "funkcja" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "pole" @@ -1936,7 +1823,7 @@ msgstr "pole" msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "typ" @@ -1944,297 +1831,262 @@ msgstr "typ" msgid "variable" msgstr "zmienna" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Nowe w wersji %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Zmienione w wersji %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Niezalecane od wersji %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "Parametry szablonu" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Wyrzuca" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (typ C++)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "%s (koncepcja C++)" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (pole C++)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (funkcja C++)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (klasa C++)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (enum C++)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (enumerator C++)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "klasa" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" -msgstr "" +msgstr "unia" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "koncepcja" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funkcja wbudowana)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (klasa)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (zmienna globalna lub stała)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atrybut)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Argumenty" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (moduł)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "dane" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "atrybut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "moduł" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" -msgstr "" +msgstr "Nieprawidłowy math_eqref_format: %r" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "zduplikowana etykieta równania %s, inne wystąpienie w %s" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "słowo kluczowe" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "obiekt" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "wyjątek" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "instrukcja" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "funkcja wbudowana" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Zmienne" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Wyrzuca" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (w module %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (zmienna wbudowana)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (w module %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (klasa wbudowana)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (klasa w module %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metoda)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s metoda statyczna)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metoda statyczna)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s metoda klasy)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klasy)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atrybut %s.%s)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Indeks modułów Pythona" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "moduły" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Niezalecane" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "metoda klasy" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "statyczna metoda" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (niezalecane)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (dyrektywa)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (rola)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "dyrektywa" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "rola" @@ -2243,209 +2095,200 @@ msgstr "rola" msgid "environment variable; %s" msgstr "zmienna środowiskowa; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%sopcja linii komend; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "termin glosariusza" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "symbol gramatyki" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "etykieta odsyłacza" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "zmienna środowiskowa" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "opcja programu" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Indeks" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Indeks modułów" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Wyszukiwanie" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." -msgstr "" +msgstr "Cytat [%s] nie ma odniesienia." -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" -msgstr "" +msgstr "nowa konfiguracja" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" -msgstr "" +msgstr "konfiguracja zmieniona" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" -msgstr "" +msgstr "rozszerzenie zmienione" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" -msgstr "" +msgstr "katalog źródłowy został zmieniony" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" -msgstr "" +msgstr "Domena %r nie jest zarejestrowana" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "zobacz %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "zobacz także %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Symbole" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2457,352 +2300,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" -msgstr "" +msgstr "maksymalna głębokość submodułów wyświetlanych w spisie treści (domyślnie: 4)" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" -msgstr "" +msgstr "nadpisz istniejące pliki" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" -msgstr "" +msgstr "wykonaj skrypt bez tworzenia plików" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 -msgid "don't create a table of contents file" +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:341 +msgid "don't create a table of contents file" +msgstr "nie twórz pliku spisu treści" + +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" -msgstr "" +msgstr "rozszerzenie pliku (domyślnie: rst)" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." -msgstr "" +msgstr "%s nie jest katalogiem." -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" -msgstr "" +msgstr "nieprawidłowe wyrażenie regularne %r w %s" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" -msgstr "" +msgstr "nieprawidłowe wyrażenie regularne %r w coverage_c_regexes" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" -msgstr "" +msgstr "moduł %s nie mógł zostać zaimportowany: %s" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "brak '+' lub '-' w opcji '%s'." -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' nie jest prawidłową opcją." -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' nie jest prawidłową opcją pyversion." -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "dyrektywa Graphviz nie może mieć jednocześnie argumentów content i filename" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "Nie znaleziono zewnętrznego pliku Graphviz %r lub jego odczyt się nie powiódł" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignorujemy dyrektywę „graphviz” bez treści." -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "komenda dot %r nie może zostać uruchomiona (potrzebna do wyjścia graphviz), sprawdź ustawienia graphviz_dot" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "dot zakończył się z błędem:\n[stderr]\n%s\n[stdout]\n%s" +"%r" +msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "dot nie wyprodukował pliku wyjścia:\n[stderr]\n%s\n[stdout]\n%s" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format musi mieć wartość „png” lub „svg” a ma %r" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[wykres: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[wykres]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "komenda konwersji %r nie może zostać uruchomiona. sprawdź ustawienie image_converter" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "convert zakończył się z błędem:\n[stderr]\n%s\n[stdout]\n%s" +"%r" +msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Stały odnośnik do tego równania" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(w %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr " (w %s)" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[źródło]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "<<oryginalny wpis>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "(<<Oryginalny wpis>> znajduje się w pliku %s, w linii %d.)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "oryginalny wpis" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[dokumentacja]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Kod modułu" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Kod źródłowy modułu %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Przeglądanie: kod modułu" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Wszystkie moduły, dla których jest dostępny kod</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" -msgstr "" +msgstr "błąd podczas formatowania argumentów dla %s: %s" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" -msgstr "" +msgstr "brakujący atrybut %s w obiekcie %s" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2810,66 +2682,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "Klasy bazowe: %s" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "alias klasy :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2884,113 +2775,113 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" -msgstr "" +msgstr "domyślny sufiks dla plików (domyślnie: %(default)s)" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "Argumenty Nazwane" -#: sphinx/ext/napoleon/docstring.py:626 -msgid "Example" -msgstr "" - #: sphinx/ext/napoleon/docstring.py:627 +msgid "Example" +msgstr "Przykład" + +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" -msgstr "" +msgstr "Przykłady" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" -msgstr "" +msgstr "Uwagi" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" -msgstr "" +msgstr "Pozostałe parametry" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Uwaga" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Ostrzeżenie" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Niebezpieczeństwo" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Błąd" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Podpowiedź" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Ważne" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Informacja" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Zobacz także" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Wskazówka" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Ostrzeżenie" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "kontynuacja poprzedniej strony" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Kontynuacja na następnej stronie" #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 #: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" -msgstr "" +msgstr "Spis treści" #: sphinx/themes/agogo/layout.html:51 sphinx/themes/basic/layout.html:153 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 @@ -3002,7 +2893,7 @@ msgstr "Szukaj" msgid "Go" msgstr "Szukaj" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Pokaż źródło" @@ -3151,13 +3042,13 @@ msgstr "szukaj" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Wyniki wyszukiwania" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3199,36 +3090,36 @@ msgstr "Zmiany w C API" msgid "Other changes" msgstr "Inne zmiany" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Stały odnośnik do tego nagłówka" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Stały odnośnik do tej definicji" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Ukryj wyniki wyszukiwania" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Wyszukiwanie" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Inicjalizacja wyszukiwania..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Wyszukiwanie zakończone. Liczba znalezionych stron pasujących do zapytania: %s." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", w " @@ -3245,223 +3136,223 @@ msgstr "Zwiń pasek boczny" msgid "Contents" msgstr "Treść" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "znaleziono więcej niż jeden cel dla cross-referencji „any” %r: może być %s" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "nie znaleziono celu referencji %s:%s: %%(target)s" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "nie znaleziono celu referencji %r: %%(target)s" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." +msgstr "Nieznany format obrazka: %s..." + +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "nie można podawać dodatkowych argumentów dodając klasy dyrektyw" #: sphinx/util/i18n.py:74 #, python-format msgid "reading error: %s, %s" -msgstr "" +msgstr "błąd odczytu: %s, %s" #: sphinx/util/i18n.py:81 #, python-format msgid "writing error: %s, %s" -msgstr "" +msgstr "błąd zapisu: %s, %s" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Stały odnośnik do tej tabeli" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Stały odnośnik do tego bloku kodu" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Stały odnośnik do tego obrazu" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "Stały odnośnik do tego spisu treści" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Wydanie" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "ciąg dalszy na następnej stronie" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "strona" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Przypisy" -#: sphinx/writers/latex.py:1638 -#, python-format -msgid "dimension unit %s is invalid. Ignored." +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1521 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "%s" + +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Nieznany klucz konfiguracyjny: latex_elements[%r] jest ignorowany." -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[obraz: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[obraz]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.js b/sphinx/locale/pt/LC_MESSAGES/sphinx.js index c98cc7bfd..ae1e3c253 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "pt", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(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 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "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": "", "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)"}); +Documentation.addTranslations({"locale": "pt", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(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 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "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": "", "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/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index 9dd8cf7b13899cba0089159603787fedd4ee08b6..e859615441c50970b07852ab5ef6176f8c283cfe 100644 GIT binary patch delta 13878 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 delta 16145 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 Re~A5G{t&zR|LYI2{{^41PaXgO diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 52be73d22..9a91c68ca 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,9 +7,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2013-04-02 08:44+0000\n" -"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -18,21 +18,21 @@ msgstr "" "Language: pt\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -45,95 +45,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -141,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -149,60 +137,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -210,833 +192,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1050,188 +921,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1250,253 +1143,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1504,11 +1391,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1516,25 +1403,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1544,15 +1431,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1563,22 +1450,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1587,36 +1474,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1624,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1654,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1683,214 +1570,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1919,12 +1806,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "" @@ -1932,7 +1819,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "" @@ -1940,297 +1827,262 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "" @@ -2239,209 +2091,200 @@ msgstr "" msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2453,352 +2296,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2806,66 +2678,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2880,106 +2771,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "" @@ -2998,7 +2889,7 @@ msgstr "" msgid "Go" msgstr "" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "" @@ -3147,13 +3038,13 @@ msgstr "" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3195,36 +3086,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3241,76 +3132,89 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3324,140 +3228,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js index 19eb83174..21d4cebf8 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "pt_BR", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", em ", "About these documents": "Sobre esses documentos", "Automatically generated list of changes in version %(version)s": "Lista de altera\u00e7\u00f5es na vers\u00e3o %(version)s, gerada automaticamente", "C API changes": "Altera\u00e7\u00f5es na API C", "Changes in Version %(version)s — %(docstitle)s": "Modifica\u00e7\u00f5es na vers\u00e3o %(version)s — %(docstitle)s", "Collapse sidebar": "Recolher painel lateral", "Complete Table of Contents": "Tabela Completa dos Conte\u00fados", "Contents": "Conte\u00fados", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Criado usando <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Expandir painel lateral", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Aqui pode-se fazer buscas nesses documentos. Preencha sua \npalavras de busca na caixa abaixo e clicar em \"Buscar\". Notar que a busca\nir\u00e1 procurar automaticamente por todas as palavras. P\u00e1ginas \ncontendo menos palavras n\u00e3o ir\u00e3o aparecer na lista de resultados.", "Full index on one page": "\u00cdndice completo em p\u00e1gina \u00fanica", "General Index": "\u00cdndice Geral", "Global Module Index": "\u00cdndice Global de M\u00f3dulos", "Go": "Ir", "Hide Search Matches": "Esconder Resultados da Busca", "Index": "\u00cdndice", "Index – %(key)s": "\u00cdndice – %(key)s", "Index pages by letter": "P\u00e1ginas de \u00edndice por letra", "Indices and tables:": "\u00cdndices e Tabelas:", "Last updated on %(last_updated)s.": "\u00daltima atualiza\u00e7\u00e3o em %(last_updated)s.", "Library changes": "Altera\u00e7\u00f5es na biblioteca", "Navigation": "Navega\u00e7\u00e3o", "Next topic": "Pr\u00f3ximo t\u00f3pico", "Other changes": "Outras altera\u00e7\u00f5es", "Overview": "Vis\u00e3o geral", "Permalink to this definition": "Link permanente para esta defini\u00e7\u00e3o", "Permalink to this headline": "Link permanente para este t\u00edtulo", "Please activate JavaScript to enable the search\n functionality.": "Por favor, ativar JavaScript para habilitar a\nfuncionalidade de busca.", "Preparing search...": "Preparando a busca...", "Previous topic": "T\u00f3pico anterior", "Quick search": "Busca r\u00e1pida", "Search": "Buscar", "Search Page": "P\u00e1gina de Busca", "Search Results": "Resultados da Busca", "Search finished, found %s page(s) matching the search query.": "Busca conclu\u00edda. %s p\u00e1gina(s) que atendem a consulta.", "Search within %(docstitle)s": "Pesquisar dentro de %(docstitle)s", "Searching": "Buscando", "Show Source": "Exibir Fonte", "Table of Contents": "", "This Page": "Essa P\u00e1gina", "Welcome! This is": "Bem Vindo! \u00c9 isso a\u00ed.", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Sua busca n\u00e3o encontrou nenhum documento. Por favor, confirme se todas as palavras est\u00e3o grafadas corretamente e se voc\u00ea selecionou categorias suficientes.", "all functions, classes, terms": "todas fun\u00e7\u00f5es, classes, termos", "can be huge": "pode ser enorme", "last updated": "\u00faltima atualiza\u00e7\u00e3o", "lists all sections and subsections": "Listar todas se\u00e7\u00f5es e subse\u00e7\u00f5es", "next chapter": "pr\u00f3ximo cap\u00edtulo", "previous chapter": "cap\u00edtulo anterior", "quick access to all modules": "acesso r\u00e1pido para todos os m\u00f3dulos", "search": "buscar", "search this documentation": "Buscar nessa documenta\u00e7\u00e3o", "the documentation for": "documenta\u00e7\u00e3o para"}, "plural_expr": "(n > 1)"}); +Documentation.addTranslations({"locale": "pt_BR", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", em ", "About these documents": "Sobre esses documentos", "Automatically generated list of changes in version %(version)s": "Lista de altera\u00e7\u00f5es na vers\u00e3o %(version)s, gerada automaticamente", "C API changes": "Altera\u00e7\u00f5es na API C", "Changes in Version %(version)s — %(docstitle)s": "Modifica\u00e7\u00f5es na vers\u00e3o %(version)s — %(docstitle)s", "Collapse sidebar": "Recolher painel lateral", "Complete Table of Contents": "Tabela Completa dos Conte\u00fados", "Contents": "Conte\u00fados", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Criado usando <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Expandir painel lateral", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Aqui pode-se fazer buscas nesses documentos. Preencha sua \npalavras de busca na caixa abaixo e clicar em \"Buscar\". Notar que a busca\nir\u00e1 procurar automaticamente por todas as palavras. P\u00e1ginas \ncontendo menos palavras n\u00e3o ir\u00e3o aparecer na lista de resultados.", "Full index on one page": "\u00cdndice completo em p\u00e1gina \u00fanica", "General Index": "\u00cdndice Geral", "Global Module Index": "\u00cdndice Global de M\u00f3dulos", "Go": "Ir", "Hide Search Matches": "Esconder Resultados da Busca", "Index": "\u00cdndice", "Index – %(key)s": "\u00cdndice – %(key)s", "Index pages by letter": "P\u00e1ginas de \u00edndice por letra", "Indices and tables:": "\u00cdndices e Tabelas:", "Last updated on %(last_updated)s.": "\u00daltima atualiza\u00e7\u00e3o em %(last_updated)s.", "Library changes": "Altera\u00e7\u00f5es na biblioteca", "Navigation": "Navega\u00e7\u00e3o", "Next topic": "Pr\u00f3ximo t\u00f3pico", "Other changes": "Outras altera\u00e7\u00f5es", "Overview": "Vis\u00e3o geral", "Permalink to this definition": "Link permanente para esta defini\u00e7\u00e3o", "Permalink to this headline": "Link permanente para este t\u00edtulo", "Please activate JavaScript to enable the search\n functionality.": "Por favor, ativar JavaScript para habilitar a\nfuncionalidade de busca.", "Preparing search...": "Preparando a busca...", "Previous topic": "T\u00f3pico anterior", "Quick search": "Busca r\u00e1pida", "Search": "Buscar", "Search Page": "P\u00e1gina de Busca", "Search Results": "Resultados da Busca", "Search finished, found %s page(s) matching the search query.": "Busca conclu\u00edda. %s p\u00e1gina(s) que atendem a consulta.", "Search within %(docstitle)s": "Pesquisar dentro de %(docstitle)s", "Searching": "Buscando", "Show Source": "Exibir Fonte", "Table of Contents": "", "This Page": "Essa P\u00e1gina", "Welcome! This is": "Bem Vindo! \u00c9 isso a\u00ed.", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Sua busca n\u00e3o encontrou nenhum documento. Por favor, confirme se todas as palavras est\u00e3o grafadas corretamente e se voc\u00ea selecionou categorias suficientes.", "all functions, classes, terms": "todas fun\u00e7\u00f5es, classes, termos", "can be huge": "pode ser enorme", "last updated": "\u00faltima atualiza\u00e7\u00e3o", "lists all sections and subsections": "Listar todas se\u00e7\u00f5es e subse\u00e7\u00f5es", "next chapter": "pr\u00f3ximo cap\u00edtulo", "previous chapter": "cap\u00edtulo anterior", "quick access to all modules": "acesso r\u00e1pido para todos os m\u00f3dulos", "search": "buscar", "search this documentation": "Buscar nessa documenta\u00e7\u00e3o", "the documentation for": "documenta\u00e7\u00e3o para"}, "plural_expr": "(n > 1)"}); \ No newline at end of file diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 776d095c121d6259def4f1ebb8b42d5348095693..89ba5bcf1b4d6f35a7c5367fa14e748aa1295459 100644 GIT binary patch delta 13972 zcmc)O2Y6Lgy2kN+APEo%gisPf+W`XzNeCShL5kGSi%92$oRDCW6LOM3q#Q&+5v6T4 zf=IK0*v}xyh=9mo0a3()1yQgKBBKr<Ab9_8)}9%!_qk>6bIUw~zxA!N&)RE!>su>< z<Ijd2UKbWT9usz-#s8kFWLb^y_Iir`@xSj{Th;@FXRswMZo?msWj&26_)e!}KBNCn zZ7nN~{y(Hz)@kBH?JTP=@r&&(D;9t4U|F}&AKS^Yif|R?Sys>r?@T8hMc9@H@4_X- zJG)rcAiSZgWxavRaXgOiW?8)3+J;g1Ifmm|WRBK3?2dMtWif;`83*9~cs+iG&9G^@ zWmV(-R&N?r=@^WOI0iM)9Mr&%VI6!DYvUfQi$|~)evLKo0%}5G*I8C|j6r?g#Enx> z<D_AI9E#Dr-}2F@iKS@cBGii>Lk+Y8tKqBe=WpRC;<MNb`><RMxX5)aMiYlnnSB)- z;3udFoX2>K>_PtHXe83m3VNU($UwH$nu7Y`J;<(Dk7H9jjt%iDUW4)E^+miMJK#ms z#FKkkRu$}qQ?VB+qnnWOur~K3|7v_hM}Mrra$;~aQb*Qw)QcX#O#B0?K4W{E2_>WA zEVS_!RHhzueH4}1XHZ-GGBRiDfctqwpP*&6q9eMGu^Toa&O{br-HQ6+Uew;cfeH8_ zQjgXpRLyj_!K`!~YC>M@h_lefCsE%&gxZ>qQCsj`kVaD)Rr;D2wM6Y@DrzPDF%d_& z&cepT4<UtY{Sj5==TYBF>1V3DFAgEjLDkX=7=f>0Bpya(Hu#a-IFDr4ieVoH;%J<T z>rhqvD~4mO0USxJhy33f&wn!TVN@-h#VS~pL8@Xja@4H`sM;Ea+LCF=#DZ244W;sS zR4wenW_Z>$W{_nyC+>tAcpPdAyr>M^hRWc}Xyb9LhQFd-Turm{u$`z3^&D)rVl39t z`S;PN#0O=_c3N{QKH!{V81Yd|!DFaBtx8_?g6^pP{;159qV|5S>nc>HHltR4#?>>_ zvL+DM!^XVdnyCgZNA1;9I1YECR@z{g*@ATBHnlP^66d2PyabhjLs)=kkaDml4mZbo z6V@Vr26ZfVyZvusFqw`IX|%$K5oX}FsEMSx@nF>FV^Mp&0F{~5I3CxbGH?--@K@9g znKaT=doPS49*O$?R8(!0jU@j{*+M$Bq6biW^e{HUov35-f$NW`8!c*-F%fk^b;lMs z7CGA1e9XnY*dE)AHbp%dwS}8e8T)iJ`B&o#9U8dt7-J`_Lp%g)q8IC7Ax7h3tbygI z)INeS_y;#WfGXM#@EW{~8qdDbe6J%$5cdkw(0~I_85oDE@+{O|<+<@})I=AcUbF!< zKnUyNPSo><Q4{_c`SD==8FkKEjx|Nw2lbvIsP_hMqM^OW#Wq-k8fYE*@d?zG8Gn;` z@i^4V@~}3pz*5|Vns@^$R})G=joTUZ-1Vpoj6nWx`S=gD6SQ{IXiY~vQ3vdcZLthh zbXzb5k05nwc{n?TI1-hSeW+7%5_NBcPc$iSg*NdJ^kD%qgmn~$V%tevaytL>X=Kpx zE+%5r$!6fb$e5N7wc@?l62Elgs3|6Hhnm1R?2dD=3%-cDCw{;O@iJy%`BVxOf5Flq zjnQ7Smv3Ta;v=Zz^*-A8F?PaVP#J2UX--KtHYA>hTKQ_!1YSa|^b%?UW2Tv{nSwf| z(^1DXAA>4_H8ifptymA=LlxI)ybFIsePJHc*9)IOef}p@tsFw_{V_NG+>OtmYTz6y z<yUbj4q-p8*YiH|uM4O_wmGN$QN?o$Hpb<sYJUnf(LLA=-@$mSKHaRa1?o7aqEg!( zHR1bE=l>NX8P+-Mk2mF*_iV@^|61`jI+Ut6Q8n-$PQ}ZpiA>BjzZcwsy2)0f&i&)A z+fh}10F{wr*aE-AYp}))b5XTJjhBI1KyHwRR(v})#nspgUqtQUWmJZ4yxC0Pc5Foa zFzS1IFah7gu6O~p$EkTHBb~7daUWDsW?*N$4bw5Wlg2<A=iQE;`R2#!TpU3Ec2vss zlSQdZL#1?~>o%-O{0(-*3s@hMxI8q`KG++lqQ3VqHo*7I=RxZ)G?bDk4s{&1!6tYE z#^N+o4a{-lWvJ&K!&bN(yW=+)jV)%Ht?7cP#QiZ0XQN&`58Gln#_RkapwXI+FHn0H zRb*<RBWmS6P!pVuHr|g){dUyW97Ij@5^Ci!0rQK@wWx6?plWO}R>ifbi9L!fc)#^N zjoNqxRRgt(&C1$hE#jL{smyU*geuZa$VswZ!;P3yVz%II)QZEom-YQf9Eb6!Juk)- zd=`UB^=CBnf~%+rG@NCA7Nnz6JRLjY3e@xau@0U>-3LD-*S}SFw)rbtK57CxP!rvS zk$4j8;`bPbmCML~8ybzu%-#$@O&}Ai;X>?+cjFM;k1WorbBoE?5{w~!5F_wu)Wo)7 zJid;xcnWo@enCy7#~ibefpf@zXF77|&?#7tdhlD+0Bz=)z3PYciD#is!7?0*@1yoK zah^$a3M#cdP<x(_QFxo{O6*R&9vk7OK^iS-TtcO~*?e=?XJ8WXt(bsMV-tKE8{%2i z1go<E4X8p=CbLk*wE}O%y{>T!Oa}cplKx$&izyg=tGO^bp;DKQTG=qHf$LBMZpCZy z6V%Eg7MfGh2(^+l)Ug_i4e$=sgg2rxw+D5)KEMRLYT}?}-)3&8{@9lfhM``3AL{sQ z!Y+6Sn_>9vCR43YnHYhMG2e}sqMmyk!|@GN4ZMvizHd-Pc?HvT{+ll{#WTe<8#O>a zYNji2Fh1{o{wp>oj#z9a-WqQpZjYUC7OKde!Z6%{TF@?Rhi_nC`~`dSeyjH#rl=NS zBJm+q3V%YqDC$mg@w7w5BQXg}Q5kp`brJ2xR(J+Aq54bAL?)oVmyP=TE;kNgFoKQ` zXjH}HSQEd->UbXYg-Un1S2OB3-hejF!{N9Nm9ev^qKsK;o=?VM#QjjIzaLd&TT$=Z zy_Eb%(|C;zt^643xcrKmNYveCrHxQ29Eh6Gji?j`u{G{TrS>nVT4{EV$;^0+BrZkW z6Sty@_g>UQp16nntK(%lbX6X8A3TLEh%caur^zz2mz_~JVLEC>g{X-yLS=F*PQ&L> zTUdX&=}*P##9go@_Q5o~IY`5%@fh~R16T#Ct}w?c8a4A|)P#ECwKyHM@|AA?OE{MJ zB=*4cl_nFnAXkO;JXXVYt4xN|QE_k}jU*bQPy;T&RNRU>R-d3&cnQnVc8oiaF|FbE znhbt{6N!ID73G-w%t~jXzP}pV;BK6Zr?EZnw+7vBj?Fw&YC@=$evG<6D)CmOG68j* z(y<fvM7^jK!*Lbr1rJ~{zUqGdBkCB}e88BB^@vAS#O!|#jrw%lg{sPpsN?bkDkE>X z{TDHYxYBC#d_C+#oP;B=5H;afup54k>DX|M*|M>yt-TdB&Jv8%`Cm&zE7^vc**mB! z^=s6FVGo)jjK%joT(ihrtcZt9#@3_$N%jEhpJa!wH~%F2*+yPK|DjFhpJcy!m{UW1 z<PpZhxW~x<Eew?UxcN8Pt(ZsLWV3nUQq(`mK8#!i*1KEG&-Y1BaElRd#_<@~YEu6e zRwurM+LDMTO$KXVcj7MC1xs)MKJ_H~e?5)!bm#)<{FJH6aafgj8mf5mP+PGIHSjLf z@!N;d_#x^%e~Y#73f91=r%koTqbAl0^?XM+?)x<P*B3|7p&IaEZJdiyxC}M1wWzJw zjT-m}M&f5^<DYR9R)5C){xAhK-bU2c?m&%u)Q!KwisBAFYgUqg>gbHII0iL=eE0J? zm`uC^HKCWWGk%UuG446@qON!i@o0Pz%djhUc-~|n4^@P-aViEE&`?T0$9DL&YlD#a zp_G9!^gGxCA45&_OU%TuKbVzHM@?uxs))Ctjc=kd^&RTMxqvm%v#nwx-2XK6(<%<N z=aaA%X1gv&y>JJrRz5&I7yE*Fk&Ow&olz^j2~{&IQ7he!^>H_*<NIi1%yun|{qI0S zDes4R(PUIg=b>i)5b6b+Q7d=@^@5|Wm#{Ihy~Et;J+KRL8S2H)p|<Qb9D=8@Hg;ow zB6z=*K|?DVi7J)}uCuTgv4aEgJ)DY7cbY0+fVvS^pfY$L4#1Bv1DpSmtfC*4i91p6 zS%IB!H3sX@I7}lJPonnvGIqt9FPWO?k6J;Q>soA1yc;#}NmPbTV;V;7G8r6zHgOI{ z;}X=1*I-o-zmn}D{~Gw%%ck0Y!Fb}x-R7TU6R{6*D{O>$s1+~46kLWKaTjW<esue< zpeB~I$1JQPHYOg7%G3<h!k^g_G)1(JjtO)eLp|7OuW=OCC7y}na51*V6R3$+f5rT* zwgu{f8Hbv%51Zl^EWp>XFLvE$GCbdPWzcOrf+~vbsB`{0w!#ajf$dk#7n4w_ydL%W zaMT``VHmE$@mP-G_#-Ca&!~kY?l<30LuDYCK|=#fLEUV#(Z)rn7e9sx_&g@!QB;O5 zx&3i}GS8>EPQd1TJ{Mcy2JD9iFc)hcFd3VT6m`(rN<({i4wbUjuNeoSigJeQLaax; z29<$lQ8lsGjgO-ia29LfFQ|*A#_J|-h?-a%*I`)k_x}J5UA4=w3a&-H;1N_&ZFBqg zpay=;jXy+9_yp?I=tp7%)Im)=9yLyTRI2-+?uD_aj4sEjK^o7|h{T<!f%c<P{~@-) zQ>c|iziIwSwlVe~z6bUELDb4VL)B2_gZx&6^{^V=joSPB-FPeNxosF!N)OObb$^N~ zo-T*nAGg?nco(+CAFvfByk(BxARJCyhK2YBDkJHK%?c-AGvax84Q@ai_oENLI?Vp- zg@fNVf9ZT2M-!jN49s}P6kR!L;9aO=`YCF~-Hw>wfF_~hMQ*$WmEw1>JN|@9eY<x} zCUfyY;?j4?e-@3HqvqG=S*X+<M(t(4_sp>xf=cB`v~eQ##d)X<?L*!57qB7LeBZ3R zHEIGwPzzm(k@yvc;}1c%aRHO)xPmI4)*qN(8hc|s;yl!Z7UDWwf_lEyhvtQ2um<r= ztcmkcFS^I=e*mizKZ>>RX&j2dmuW1e5p~S`cwLRj#K*8bR{6-REDdeq5g3C-7>$dt z8{Uuc_%`ZAr%@C7D~?6a$7aIgP~$GfOr8H1Y4oR~(I=)#vrsE8L#2E<CgN(Gin~!4 zko~Foaoq!>h$o>|cC+go)C8Bh@mg#_{3NOv-^B*J-};$GV>)7vn-!#DUE&N>(M`o( zxB$oFE2s=L{>)4u0~-;~Kz;8HRPn9FuJ|%)>n>nzyo$<D^a+YGNTUIb&Nu?o@lG6w zuex!~&&`k3K{$Z^MW~d&h00vjFHA~@yWWPXffukN?#KFg2@|mPN%K##9Wbc9D5cQ= zx1d(C50#M<7>8G}3C5l>#n~BE14G@|i+ZjMTj46~j(<dL!9~>8M1E=hZW)hZ#2H_b zf4z7(9c^(2#^V}njoVOrb^?{MDqoqEN24Y<2yM(krG5!&Yt~^b9z?DD6t=_5sBx3O zHZ^wB*W_OV7toQ4v#<qjM(x#MY>J<wR_6J}tfVz6Q)#YaF_E|!eYgfUqV=uWf=#Fu ze}KxwCpZqj3)0Y@_xrQCQWv69{T%8AZ=)t~2HRlNX)}>-s2a#bJ--&~;2*Ie9>$yS zG!DWWzB3b8j+*Gb7>U81G<4kdqqgE>Y=h_AIN^+$Ksr{Ve*&tieK-WyVF`YR%2?+2 zrZ$Q(g7^;9#FnA9b`xrAc404_|MzHUCb4JDN}8cgLoXbNvylg_S5O0l{l#omQ`FuL z$No4ShvG9>6|Z6~tn!1&Y%FS_{ZO?s5u<hfXVOr$E<~k#54OZlu@#2@Xnt!=!6f1= zOu&_>)Q3<hKZ2Uz_o(rz{bVxPA5)0~cq2aIdKriCerx1k`GXtq8vF^XVB9&AIvcgJ zj#vY4Lk+kBuf@Gs4^N{`h3C9kNK<S}d>v|Q^H39BjP>zR4652+qM;R?M8)A3%$1si zeTmahFIa%B@qX-rd$BoQL}jY+&n6T7P!q{?;|17^crAwGZj8nKKa+p$#iw+rDt|<s zhPaESct)c#F#$EeG}J^F<6zwEetr%$kt?XZPq<`$&u@*Li2bM<dldEgvlxRfULybP zXdI+NE4_-n@rKK$sO~^b>@YUKbEp^9`o&y49Z>OTRBg=0hWIEZ<6cx|&f*Oicg0L( z66$+7K^l7CZnt9_>ew7Z&GZCD<F{BHFQJ}~xN5H4w%C<;0NQvf4#!QXjQxc1SpQe^ zd^;RQJP4Kf;2IirXgq^@;XYJq4x(268Af5a<*9hC4r-+>QN=hKH6br5gLk27<ZV=D zFQaND+2g4g&xhKIrO11N*8Mb8Tw72R+3m*fVr}AYQ4_k1D$bgfJQc;$3B!qpU`HH< zTG5@Ti9dwO<UX8+Z=kj&rLw1@rUqdxo&S+Eblx*D4evr5_hV1|3RQ$H!#oxDLtE5@ z2BRi41$7J;qgMW`+y60+C9V|isrYq$JSr2baX!9-Rd~NOJi@H>Ce#%>1C`=p)PNgN z=lviy#w(~5Hmu^Q_$S$3uE%gC{WJNywK7?`ny2EQWMfe)FGekN1?u}dFsQr!IE~2| z8R@C`-7FV%Y}TT_a0Io|OV|Vxs(UI<Lr>ICwehIur=VVRA8Ko!Lyf;3bsA2(pVzM8 zv2=`+Yj}bcjbU`C24=b++=05GwxEh~59+wQj>^axRHovh%vLl*J>LoY;9wkqD^L^u z0=uE7rl;b5Nk?tjteQQ|-fpBrd%6YV@Fmnr-a}372W*5@YMJM*LET_oYB}*q4~0%9 z71VSlJvYOdyEM*8eZFaEPx=N=rNn^qLHE_RH!I7Rm1HLd>}fgPg6VF%$d~Ug^<`N+ z^h0q2XTzK*XU1y@p%;40s2p0<J3Y)f+Ak*bOTQyw$#${dF7kP^?A(H4Us0eiC%0hs zlzeYtVQ#_n35kJ8N%p|$1^yymR+^ny6nZ`5-AbWnhwkt==MQuYm5lhll2bf7%Q-Q6 zjk9jd?(p2aJpU|b?wDqwNjD~i1#=6g`Rvm6DXB^JsEUE@l7KH@H_I)^^385$djod9 zH^5t`WcjDrnPqmCFWXy^SDa!G&+~Z$KCR7e_M1n#+byU0nPx$8pk*^nyv$!xWYd+M zQdpK^jUwWOS-C~NX~q7cvQ<a2ovY*P1WO7F{YAxgw!g^sm3s3^yv3}|9$r?Q<1et= z+kvuzV()A_H^BP~`Kq_rmt}hkvg}zb$IkSTo{D6Wp}#GoV@hg@-N#>0>SJ6|&s5yu zI=I6zo3i{&e_p^E9cnOPh^JbXKi|s$Y>0ni%il!nCl32Z6uL0+K948htehP0NpiMM z-WHi|`(_ui9A8!_f65q-<MqDiyl`x$Co;4%^BYf8mfsp(<Shu~d0B9%w=cR<s7Y>W zWoKkwv2*m)o<9EK9J|<?S(4{1n&!_d$u9_0tSoI-ZdP$lAkFp{7Uz-#Z;{WQo?GfG zNU{I^5&6i~&WDzN+1BGU_TLja;GgRW^`E)Cva{_wUsO@#gg|kYzod9lWMYvsr6is| z>CU>62F}isUQUhDm{3~j(;lbiLmfk3%xWF>yXQ~*)a-XXwf@@5Su(eav*E9!oTPc3 z_){$=%O36TW3%5yWo%zbK~|bGX<pC40e`-a{R)&&OtW%XVnv5P+b+(bpIs>+8@awf zlAT#ntj;n!hYFwNFS=Pf@6Ds;3aEloUm(p{G4DcrQ4zH<t0=dkFtT&=eD)CU%|10k zx6be4>2GCwX=iDlbMq^TDKYSG`}~<R*eSO7Hy;&xizws*FB47-gq{mh33<MX(4Xym z{zIMGt=ytdv-AB~C3(I;=+c799w&BTcEjB1IeGl4n3VaDTF>&Oq@>uPISaq6-16@S z_V0_<LOE4B`<&N+o!mpOowT@3rQe?K-#ngO<j?03#&m*rHgeYAIVaS3NxQJ}r|Nn7 zID_vw6Y8-n(^I~oil?sg((<99s1=WSss}30nZ9E?Ppk}<N7wgs47FOd+7oeeZegJ> z%Q@~W3Eg$?+u^l+v!~^ia6j1`@REGCrTj0oJ<Xi)YvPlp6&Lw*w6c9gKCX!Xb^g0& zxo@muzn*i}r#CIXBgS)G=*cz1JoO5*%n9}tl;#%s3p8$;T^?Q6Gs(Ge?MbK2y3Nj; z>l&4}j`c*BC&V)IZtH71`RnUDtJkO23Y6sMdsR+ss8-!~!`P^9$*Jv=+jX^5+og4C z?`+x7P(2-z+jX?tbx!Nh*?DI}d_7+vC)dsxHe}$qUiNjlDaAMY^K;8WRX1+;a6eD1 z>GXdt`geD9eUJ0W^NS<;v}r?vozFt+{;9j#;jRuPZ);vTv~7nk%t_f57n->1%s+o$ z*Y<?Q>^tcR4c`BbCv^V6*vii2H+5l;cA6ZV;5>Bj(r+&9@<RhFRinm-P-S`k(3!(w zmHz+l@Us7}`+MJ0y1@N`(5**C{x96$EkF9Rr|xj>oow$dzM|h=<2ycSUMckW32$Ym z#;L&n;5FXH;~e?w-imA7=|9sO%KA3#zj&29X{D!}ufBi%zjK@4(=e-~FfZ5qSpC1a z&gVNHotyI?UFpNl{~urJ&ZPw*XU@gp&X*Sp|C3w&y2{S-D_j4Go4vQkDf{)}fBANI z8ZVi<{Wg#1mCAp+;un<f3-{!O(wF(nJzu_~if8!t>Qz14{?$!izP*}fVZ~Lyy=$ar q!|(3;)t>EXH9cLz{wHtz?cDfF|DD@@JGXr=&wqT?NB{1sxBdm$75?l1 delta 16212 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 ZBVCaPS5I11w}R`$zxs}L)xY$P_HQ}Kjivwq diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 436179997..ddd09f66f 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -1,9 +1,9 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: -# Claudio Rogerio <excriptbrasil@gmail.com>, 2016 +# Claudio Rogerio, 2016 # FIRST AUTHOR <roger.demetrescu@gmail.com>, 2008 # gilberto dos santos alves <gsavix@gmail.com>, 2015-2016 # Takeshi KOMIYA <i.tkomiya@gmail.com>, 2016 @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" -"Last-Translator: Takayuki SHIMIZUKAWA <shimizukawa@gmail.com>\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -22,21 +22,21 @@ msgstr "" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -49,95 +49,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -145,7 +133,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -153,60 +141,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -214,833 +196,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "Seção %s" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "Tabela %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Listagem %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Propostas Estendidas Python; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Internos" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Nível do Módulo" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice Geral" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "índice" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "próximo" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "anterior" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "documentação %s %s" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1054,188 +925,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (em " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Índice" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Release" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1254,253 +1147,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1508,11 +1395,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1520,25 +1407,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1548,15 +1435,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1567,22 +1454,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1591,36 +1478,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1628,29 +1515,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1658,26 +1545,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1687,214 +1574,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "Opção Estrutura" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "Opções básicas do Projeto" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "Opções Extensão" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" -msgstr "" +msgstr "Projeto Modelo" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "Legenda inválida: %s" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Autor da seção: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Autor do módulo: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Autor do código: " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Autor: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parâmetros" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Retorna" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Tipo de retorno" @@ -1923,12 +1810,12 @@ msgstr "%s (tipo C)" msgid "%s (C variable)" msgstr "%s (variável C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "função" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "membro" @@ -1936,7 +1823,7 @@ msgstr "membro" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "tipo" @@ -1944,297 +1831,262 @@ msgstr "tipo" msgid "variable" msgstr "variável" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Novo na versão %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Alterado na versão %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Obsoleto desde a versão %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "Parâmetros do Modelo" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Lança" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (tipo C++)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "%s (conceito C++)" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (membro C++)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (função C++)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (classe C++)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (C++ enum)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (C++ enumerador)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "conceito" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "enumerador" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (classe)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Argumentos" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "dado" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "módulo" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "Rótulo de equação %s, duplicado outra instância em %s" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "palavra-chave" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operador" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "objeto" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "exceção" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "comando" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "função interna" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Variáveis" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Levanta" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (método %s.%s)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (método estático %s.%s)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (método de classe %s.%s)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atributo %s.%s)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (obsoleto)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (diretiva)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (papel)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "diretiva" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "papel" @@ -2243,209 +2095,200 @@ msgstr "papel" msgid "environment variable; %s" msgstr "váriavel de ambiente; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%s opção de linha de comando; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "Glossário de Termos" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "termo gramatical" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "marca referencial" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "váriavel de ambiente" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "opção do programa" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Índice" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Índice do Módulo" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Busca" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "veja %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "veja também %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Símbolos" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2457,352 +2300,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[gráfico: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[gráfico]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Permalink para essa equação" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(em %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[código fonte]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Por fazer" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "<<original entry>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "(A <<original entry>> está localizada na %s, linha %d.)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "entrada original" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[documentos]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Código do módulo" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Código fonte para %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Visão geral: código do módulo" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Todos os módulos onde este código está disponível</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2810,66 +2682,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "Base: %s" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "apelido de :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2884,106 +2775,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "Chaves e Argumentos " -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "Exemplo" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "Exemplos" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Atenção" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Cuidado" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Perigo" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Erro" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Dica" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Importante" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Ver também" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Dica" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Aviso" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "continuação da página anterior" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Continuação na próxima página" @@ -3002,7 +2893,7 @@ msgstr "Buscar" msgid "Go" msgstr "Ir" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Exibir Fonte" @@ -3151,13 +3042,13 @@ msgstr "buscar" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Resultados da Busca" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3199,36 +3090,36 @@ msgstr "Alterações na API C" msgid "Other changes" msgstr "Outras alterações" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Link permanente para este título" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Link permanente para esta definição" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Esconder Resultados da Busca" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Buscando" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Preparando a busca..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Busca concluída. %s página(s) que atendem a consulta." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", em " @@ -3245,76 +3136,89 @@ msgstr "Recolher painel lateral" msgid "Contents" msgstr "Conteúdos" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3328,140 +3232,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Link Permanente para essa tabela" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Link Permanente para esse código" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Link Permanente para essa imagem" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "Link permanente para esse \"toctree\"" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Release" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "página" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Notas de rodapé" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Chave configuração desconhecida: latex_elements[%r] será ignorado." -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[imagem: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[imagem]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js index 60577445d..c8d86f3f0 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "pt_PT", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", em", "About these documents": "Sobre estes documentos", "Automatically generated list of changes in version %(version)s": "Lista de altera\u00e7\u00f5es gerada automaticamente na vers\u00e3o %(version)s", "C API changes": "Altera\u00e7\u00f5es na API C", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Recolher painel lateral", "Complete Table of Contents": "Tabela de Conte\u00fados Completa", "Contents": "Conte\u00fado", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Criado utilizando <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Expandir painel lateral", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "A partir daqui pode pesquisar estes documentos. Preencha as\npalavras de pesquisa na caixa abaixo e clique em \"pesquisar\".\nNote que a fun\u00e7\u00e3o de pesquisa ir\u00e1 procurar automaticamente\npor todas as palavras. P\u00e1ginas que contenham menos palavras\nn\u00e3o ir\u00e3o aparecer na lista de resultados.", "Full index on one page": "\u00cdndice completo numa p\u00e1gina", "General Index": "\u00cdndice Geral", "Global Module Index": "\u00cdndice Global de M\u00f3dulos", "Go": "Ir", "Hide Search Matches": "Esconder Resultados da Pesquisa", "Index": "\u00cdndice", "Index – %(key)s": "\u00cdndice – %(key)s", "Index pages by letter": "Paginas de \u00edndice por letra", "Indices and tables:": "\u00cdndices e tabelas:", "Last updated on %(last_updated)s.": "\u00daltima actualiza\u00e7\u00e3o em %(last_updated)s.", "Library changes": "Altera\u00e7\u00f5es na biblioteca", "Navigation": "Navega\u00e7\u00e3o", "Next topic": "Pr\u00f3ximo t\u00f3pico", "Other changes": "Outras altera\u00e7\u00f5es", "Overview": "Vis\u00e3o geral", "Permalink to this definition": "Link permanente para esta defini\u00e7\u00e3o", "Permalink to this headline": "Link permanente para este t\u00edtulo", "Please activate JavaScript to enable the search\n functionality.": "Por favor ligue o JavaScript para habilitar a\nfuncionalidade de pesquisa.", "Preparing search...": "A preparar a pesquisa...", "Previous topic": "T\u00f3pico anterior", "Quick search": "Pesquisa r\u00e1pida", "Search": "Pesquisar", "Search Page": "P\u00e1gina de Pesquisa", "Search Results": "Resultados da Pesquisa", "Search finished, found %s page(s) matching the search query.": "Pesquisa conclu\u00edda, foram encontrada(s) %s p\u00e1gina(s) que combinam com a consulta feita.", "Search within %(docstitle)s": "Pesquisar dentro de %(docstitle)s", "Searching": "A Pesquisar", "Show Source": "Exibir Fonte", "Table of Contents": "", "This Page": "Esta P\u00e1gina", "Welcome! This is": "Bem Vindo(a)! Esta \u00e9", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "A sua pesquisa n\u00e3o encontrou nenhum documento. Por favor, confirme que todas as palavras est\u00e3o escritas corretamente e que selecionou categorias suficientes.", "all functions, classes, terms": "todas as fun\u00e7\u00f5es, classes, termos", "can be huge": "pode ser enorme", "last updated": "\u00faltima actualiza\u00e7\u00e3o", "lists all sections and subsections": "Listar todas as sec\u00e7\u00f5es e subsec\u00e7\u00f5es", "next chapter": "pr\u00f3ximo cap\u00edtulo", "previous chapter": "cap\u00edtulo anterior", "quick access to all modules": "acesso r\u00e1pido a todos os m\u00f3dulos", "search": "pesquisar", "search this documentation": "Pesquisar esta documenta\u00e7\u00e3o", "the documentation for": "a documenta\u00e7\u00e3o de"}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "pt_PT", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", em", "About these documents": "Sobre estes documentos", "Automatically generated list of changes in version %(version)s": "Lista de altera\u00e7\u00f5es gerada automaticamente na vers\u00e3o %(version)s", "C API changes": "Altera\u00e7\u00f5es na API C", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Recolher painel lateral", "Complete Table of Contents": "Tabela de Conte\u00fados Completa", "Contents": "Conte\u00fado", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Criado utilizando <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Expandir painel lateral", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "A partir daqui pode pesquisar estes documentos. Preencha as\npalavras de pesquisa na caixa abaixo e clique em \"pesquisar\".\nNote que a fun\u00e7\u00e3o de pesquisa ir\u00e1 procurar automaticamente\npor todas as palavras. P\u00e1ginas que contenham menos palavras\nn\u00e3o ir\u00e3o aparecer na lista de resultados.", "Full index on one page": "\u00cdndice completo numa p\u00e1gina", "General Index": "\u00cdndice Geral", "Global Module Index": "\u00cdndice Global de M\u00f3dulos", "Go": "Ir", "Hide Search Matches": "Esconder Resultados da Pesquisa", "Index": "\u00cdndice", "Index – %(key)s": "\u00cdndice – %(key)s", "Index pages by letter": "Paginas de \u00edndice por letra", "Indices and tables:": "\u00cdndices e tabelas:", "Last updated on %(last_updated)s.": "\u00daltima actualiza\u00e7\u00e3o em %(last_updated)s.", "Library changes": "Altera\u00e7\u00f5es na biblioteca", "Navigation": "Navega\u00e7\u00e3o", "Next topic": "Pr\u00f3ximo t\u00f3pico", "Other changes": "Outras altera\u00e7\u00f5es", "Overview": "Vis\u00e3o geral", "Permalink to this definition": "Link permanente para esta defini\u00e7\u00e3o", "Permalink to this headline": "Link permanente para este t\u00edtulo", "Please activate JavaScript to enable the search\n functionality.": "Por favor ligue o JavaScript para habilitar a\nfuncionalidade de pesquisa.", "Preparing search...": "A preparar a pesquisa...", "Previous topic": "T\u00f3pico anterior", "Quick search": "Pesquisa r\u00e1pida", "Search": "Pesquisar", "Search Page": "P\u00e1gina de Pesquisa", "Search Results": "Resultados da Pesquisa", "Search finished, found %s page(s) matching the search query.": "Pesquisa conclu\u00edda, foram encontrada(s) %s p\u00e1gina(s) que combinam com a consulta feita.", "Search within %(docstitle)s": "Pesquisar dentro de %(docstitle)s", "Searching": "A Pesquisar", "Show Source": "Exibir Fonte", "Table of Contents": "", "This Page": "Esta P\u00e1gina", "Welcome! This is": "Bem Vindo(a)! Esta \u00e9", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "A sua pesquisa n\u00e3o encontrou nenhum documento. Por favor, confirme que todas as palavras est\u00e3o escritas corretamente e que selecionou categorias suficientes.", "all functions, classes, terms": "todas as fun\u00e7\u00f5es, classes, termos", "can be huge": "pode ser enorme", "last updated": "\u00faltima actualiza\u00e7\u00e3o", "lists all sections and subsections": "Listar todas as sec\u00e7\u00f5es e subsec\u00e7\u00f5es", "next chapter": "pr\u00f3ximo cap\u00edtulo", "previous chapter": "cap\u00edtulo anterior", "quick access to all modules": "acesso r\u00e1pido a todos os m\u00f3dulos", "search": "pesquisar", "search this documentation": "Pesquisar esta documenta\u00e7\u00e3o", "the documentation for": "a documenta\u00e7\u00e3o de"}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 3d81c66a366be296e08d60012570bebe219b3612..9d84e63230def258da23508a537bac5df05b36bd 100644 GIT binary patch delta 13958 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 RiTAhvvl~3-A8v5#UjYlq?wkMs delta 16126 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 YMb@vFxV&|u>%{*D?^bjFrSDe%2Z-!q$N&HU diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index dbc2cc2b8..e13c4c750 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -20,21 +20,21 @@ msgstr "" "Language: pt_PT\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -47,95 +47,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,7 +131,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -151,60 +139,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -212,833 +194,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Internos" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Módulos" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice Geral" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "índice" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "próximo" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "anterior" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "Documentação %s %s" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1052,188 +923,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (em " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Índice" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Versão" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1252,253 +1145,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1506,11 +1393,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1518,25 +1405,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1546,15 +1433,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1565,22 +1452,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1589,36 +1476,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1626,29 +1513,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1656,26 +1543,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1685,214 +1572,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Autor da secção: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Autor do módulo: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Autor do código: " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Autor: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parâmetros" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Retorno" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Tipo de retorno" @@ -1921,12 +1808,12 @@ msgstr "%s (tipo C)" msgid "%s (C variable)" msgstr "%s (variável C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "função" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "membro" @@ -1934,7 +1821,7 @@ msgstr "membro" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "tipo" @@ -1942,297 +1829,262 @@ msgstr "tipo" msgid "variable" msgstr "variável" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Novo na versão %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Alterado na versão %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Obsoleto desde a versão %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Gera" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (tipo C++)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (membro C++)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (função C++)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (classe C++)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (classe)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Parâmetros" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "dados" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "módulo" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "palavra-chave" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operador" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "objecto" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "excepção" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "comando" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "função interna" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Variáveis" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Levanta" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (método %s.%s)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (método estático %s.%s)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (método de classe %s.%s)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atributo %s.%s)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Índice de Módulos do Python" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (obsoleto)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (directiva)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (papel)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "directiva" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "papel" @@ -2241,209 +2093,200 @@ msgstr "papel" msgid "environment variable; %s" msgstr "variável de ambiente; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%sopção de linha de comando; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "Termo de glossário" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "token de gramática" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "rótulo de referência" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "variável de ambiente" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "opção de programa" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Índice" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Índice de Módulos" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Pesquisa" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "ver %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "ver também %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Símbolos" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2455,352 +2298,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[gráfico: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[gráfico]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(em %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[código fonte]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Por fazer" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "entrada original" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[documentos]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Código do módulo" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Código fonte de %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Visão geral: código do módulo" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Todos os módulos onde este código está disponível</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2808,66 +2680,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "pseudónimo de :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2882,106 +2773,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Atenção" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Cuidado" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Perigo" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Erro" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Dica" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Importante" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Nota" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Veja também" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Dica" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Aviso" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "continuação da página anterior" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Continuação na próxima página" @@ -3000,7 +2891,7 @@ msgstr "Pesquisar" msgid "Go" msgstr "Ir" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Exibir Fonte" @@ -3149,13 +3040,13 @@ msgstr "pesquisar" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Resultados da Pesquisa" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3197,36 +3088,36 @@ msgstr "Alterações na API C" msgid "Other changes" msgstr "Outras alterações" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Link permanente para este título" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Link permanente para esta definição" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Esconder Resultados da Pesquisa" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "A Pesquisar" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "A preparar a pesquisa..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Pesquisa concluída, foram encontrada(s) %s página(s) que combinam com a consulta feita." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", em" @@ -3243,76 +3134,89 @@ msgstr "Recolher painel lateral" msgid "Contents" msgstr "Conteúdo" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3326,140 +3230,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Versão" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Notas de rodapé" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[imagem: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[imagem]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.js b/sphinx/locale/ro/LC_MESSAGES/sphinx.js index dcc6ba291..be90919e3 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ro", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", \u00een", "About these documents": "Despre aceste documente", "Automatically generated list of changes in version %(version)s": "Lista de schimb\u0103ri generat\u0103 automat pentru versiunea %(version)s", "C API changes": "Schimb\u0103ri \u00een API C", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Ascundere bar\u0103 lateral\u0103", "Complete Table of Contents": "Cuprinsul Complet", "Contents": "Cuprins", "Copyright": "Drepturi de autor", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Generat cu <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Expandare bar\u0103 lateral\u0103", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Aici po\u021bi c\u0103uta aceste documente. Completeaz\u0103 cuvintele\n\u00een c\u0103su\u021ba de mai jos \u0219i apas\u0103 \"caut\u0103\". Func\u021bia de c\u0103utare\nva c\u0103uta automat dup\u0103 toate cuvintele. Paginile\ncare con\u021bin mai pu\u021bine cuvinte nu vor ap\u0103rea \u00een lista de rezultate.", "Full index on one page": "Index complet", "General Index": "Index General", "Global Module Index": "Index Module Globale", "Go": "Caut\u0103", "Hide Search Matches": "Ascunde Rezultatele C\u0103ut\u0103rii", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Indexeaz\u0103 paginile dupa liter\u0103", "Indices and tables:": "Indici \u0219i tabele:", "Last updated on %(last_updated)s.": "Ultima actualizare la %(last_updated)s.", "Library changes": "Schimb\u0103ri \u00een bibliotec\u0103", "Navigation": "Navigare", "Next topic": "Subiectul urm\u0103tor", "Other changes": "Alte schimb\u0103ri", "Overview": "Prezentare general\u0103", "Permalink to this definition": "Link permanent la aceast\u0103 defini\u021bie", "Permalink to this headline": "Link permanent la acest titlu", "Please activate JavaScript to enable the search\n functionality.": "Activeaz\u0103 JavaScript pentru a permite\nfunc\u021bia de c\u0103utare.", "Preparing search...": "Se preg\u0103te\u0219te c\u0103utarea...", "Previous topic": "Subiectul precedent", "Quick search": "C\u0103utare rapid\u0103", "Search": "C\u0103utare", "Search Page": "Pagin\u0103 de C\u0103utare", "Search Results": "Rezultatele C\u0103ut\u0103rii", "Search finished, found %s page(s) matching the search query.": "C\u0103utare finalizat\u0103, au fost g\u0103site %s pagini care au corespuns c\u0103ut\u0103rii.", "Search within %(docstitle)s": "Caut\u0103 \u00een %(docstitle)s", "Searching": "C\u0103utare", "Show Source": "Vezi Sursa", "Table of Contents": "", "This Page": "Aceast\u0103 Pagin\u0103", "Welcome! This is": "Bine ai venit! Acesta este", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "C\u0103utarea nu a identificat nici un document. Te rog s\u0103 te asiguri c\u0103 toate cuvintele sunt scrise corect \u0219i c\u0103 ai selectat suficiente categorii.", "all functions, classes, terms": "toate func\u021biile, clasele, termenii", "can be huge": "poate fi extrem de mare", "last updated": "ultima actualizare", "lists all sections and subsections": "lista tuturor sec\u021biunilor si a subsec\u021biunilor", "next chapter": "capitolul urm\u0103tor", "previous chapter": "capitolul precedent", "quick access to all modules": "acces rapid la toate modulele", "search": "c\u0103utare", "search this documentation": "caut\u0103 \u00een aceast\u0103 documenta\u021bie", "the documentation for": "documenta\u021bia pentru"}, "plural_expr": "(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))"}); +Documentation.addTranslations({"locale": "ro", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", \u00een", "About these documents": "Despre aceste documente", "Automatically generated list of changes in version %(version)s": "Lista de schimb\u0103ri generat\u0103 automat pentru versiunea %(version)s", "C API changes": "Schimb\u0103ri \u00een API C", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Ascundere bar\u0103 lateral\u0103", "Complete Table of Contents": "Cuprinsul Complet", "Contents": "Cuprins", "Copyright": "Drepturi de autor", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Generat cu <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Expandare bar\u0103 lateral\u0103", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Aici po\u021bi c\u0103uta aceste documente. Completeaz\u0103 cuvintele\n\u00een c\u0103su\u021ba de mai jos \u0219i apas\u0103 \"caut\u0103\". Func\u021bia de c\u0103utare\nva c\u0103uta automat dup\u0103 toate cuvintele. Paginile\ncare con\u021bin mai pu\u021bine cuvinte nu vor ap\u0103rea \u00een lista de rezultate.", "Full index on one page": "Index complet", "General Index": "Index General", "Global Module Index": "Index Module Globale", "Go": "Caut\u0103", "Hide Search Matches": "Ascunde Rezultatele C\u0103ut\u0103rii", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Indexeaz\u0103 paginile dupa liter\u0103", "Indices and tables:": "Indici \u0219i tabele:", "Last updated on %(last_updated)s.": "Ultima actualizare la %(last_updated)s.", "Library changes": "Schimb\u0103ri \u00een bibliotec\u0103", "Navigation": "Navigare", "Next topic": "Subiectul urm\u0103tor", "Other changes": "Alte schimb\u0103ri", "Overview": "Prezentare general\u0103", "Permalink to this definition": "Link permanent la aceast\u0103 defini\u021bie", "Permalink to this headline": "Link permanent la acest titlu", "Please activate JavaScript to enable the search\n functionality.": "Activeaz\u0103 JavaScript pentru a permite\nfunc\u021bia de c\u0103utare.", "Preparing search...": "Se preg\u0103te\u0219te c\u0103utarea...", "Previous topic": "Subiectul precedent", "Quick search": "C\u0103utare rapid\u0103", "Search": "C\u0103utare", "Search Page": "Pagin\u0103 de C\u0103utare", "Search Results": "Rezultatele C\u0103ut\u0103rii", "Search finished, found %s page(s) matching the search query.": "C\u0103utare finalizat\u0103, au fost g\u0103site %s pagini care au corespuns c\u0103ut\u0103rii.", "Search within %(docstitle)s": "Caut\u0103 \u00een %(docstitle)s", "Searching": "C\u0103utare", "Show Source": "Vezi Sursa", "Table of Contents": "", "This Page": "Aceast\u0103 Pagin\u0103", "Welcome! This is": "Bine ai venit! Acesta este", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "C\u0103utarea nu a identificat nici un document. Te rog s\u0103 te asiguri c\u0103 toate cuvintele sunt scrise corect \u0219i c\u0103 ai selectat suficiente categorii.", "all functions, classes, terms": "toate func\u021biile, clasele, termenii", "can be huge": "poate fi extrem de mare", "last updated": "ultima actualizare", "lists all sections and subsections": "lista tuturor sec\u021biunilor si a subsec\u021biunilor", "next chapter": "capitolul urm\u0103tor", "previous chapter": "capitolul precedent", "quick access to all modules": "acces rapid la toate modulele", "search": "c\u0103utare", "search this documentation": "caut\u0103 \u00een aceast\u0103 documenta\u021bie", "the documentation for": "documenta\u021bia pentru"}, "plural_expr": "(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))"}); \ No newline at end of file diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 151bd216c7b4e79d1e308b11035a054e03f5891a..5703f62c3931859bd08bec76599217c5fa3e20c7 100644 GIT binary patch delta 13988 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 SbEEfm{ZH3<#6Ml<)_(xD1qLSo delta 16158 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 Qt`Gh<yk{-`AAQgIXQhl|ZvX%Q diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index 3b465a51c..3ee6958af 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" "MIME-Version: 1.0\n" @@ -20,21 +20,21 @@ msgstr "" "Language: ro\n" "Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -47,95 +47,83 @@ msgid "" msgstr "Proiectul necesită minim Sphinx v%s și de aceea nu poate fi construit cu această versiune." #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "eșuat: %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "a reușit" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "a fost finalizat cu probleme" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,7 +131,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -151,60 +139,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -212,833 +194,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "Fig. %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "Tabelul %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Cod %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Propuneri de Îmbunătățire Python; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Integrate" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Nivelul modul" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Index General" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "index" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "următor" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "precedent" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s documentație" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1052,188 +923,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "(în" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Index" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Versiune" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1252,253 +1145,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1506,11 +1393,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1518,25 +1405,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1546,15 +1433,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1565,22 +1452,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1589,36 +1476,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1626,29 +1513,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1656,26 +1543,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1685,214 +1572,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Autorul secțiunii:" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Autorul modulului:" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Autorul codului:" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Autor:" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametrii" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Întoarce" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Tipul întors" @@ -1921,12 +1808,12 @@ msgstr "%s (tip C)" msgid "%s (C variable)" msgstr "%s (variabilă C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "funcție" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "membru" @@ -1934,7 +1821,7 @@ msgstr "membru" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "tip" @@ -1942,297 +1829,262 @@ msgstr "tip" msgid "variable" msgstr "variabilă" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Nou în versiunea %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Schimbat în versiunea %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Învechit începând cu versiunea %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Generează" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (tip C++)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (membru C++)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (funcție C++)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (clasă C++)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (enumerator C++)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (enumerator C++)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "clasă" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "enumerator" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funcție integrată)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (clasă)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variabilă globală sau constantă)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Argumente" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "metodă" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "cuvânt cheie" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "obiect" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "excepție" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "declarație" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "funcție integrată" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Variabile" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Generează" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (în modulul %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabilă integrată)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (în modulul %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (clasă integrată)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (clasa în %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (metoda %s.%s)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (metoda statică %s.%s)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (metoda statică %s)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (metoda clasei %s.%s)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metoda clasei %s)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atributul %s.%s)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Indexul de Module Python" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "module" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Învechit" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "metoda clasei" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "metodă statică" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "(învechit)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (directivă)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (rol)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "directivă" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "rol" @@ -2241,209 +2093,200 @@ msgstr "rol" msgid "environment variable; %s" msgstr "variabilă de mediu; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%sopțiune în linia de comandă; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "termen de glosar" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "element de gramatică" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "etichetă de referință" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "variabilă de mediu" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "opțiune a programului" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Index" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Index al modulelor" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pagină de Căutare" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "vezi %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "vezi și %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Simboluri" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2455,352 +2298,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[grafic: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[grafic]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(în %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[sursă]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "De făcut" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "înregistrarea inițială" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[documentație]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Codul modulului" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Codul sursă pentru %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Prezentare generală: codul modulului" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Toate modulele pentru care este disponibil codul sursă</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2808,66 +2680,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "alias pentru :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2882,106 +2773,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Atenție" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Avertisment" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Pericol" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Eroare" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Sugestie" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Important" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Notă" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Vezi și" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Sfat" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Atenționare" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "continuare din pagina precedentă" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Se continuă pe pagina următoare" @@ -3000,7 +2891,7 @@ msgstr "Căutare" msgid "Go" msgstr "Caută" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Vezi Sursa" @@ -3149,13 +3040,13 @@ msgstr "căutare" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Rezultatele Căutării" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3197,36 +3088,36 @@ msgstr "Schimbări în API C" msgid "Other changes" msgstr "Alte schimbări" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Link permanent la acest titlu" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Link permanent la această definiție" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Ascunde Rezultatele Căutării" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Căutare" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Se pregătește căutarea..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Căutare finalizată, au fost găsite %s pagini care au corespuns căutării." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", în" @@ -3243,76 +3134,89 @@ msgstr "Ascundere bară laterală" msgid "Contents" msgstr "Cuprins" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3326,140 +3230,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Link permanent la acest tabel" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Link permanent la acest cod" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Link permanent la această imagine" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "Link permanent la acest cuprins" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Versiune" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Note de subsol" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[figura: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[figură]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.js b/sphinx/locale/ru/LC_MESSAGES/sphinx.js index b72ebd316..a86aa29ff 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ru", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", \u0432", "About these documents": "\u041e\u0431 \u044d\u0442\u0438\u0445 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0445", "Automatically generated list of changes in version %(version)s": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u0432\u0435\u0440\u0441\u0438\u0438 %(version)s", "C API changes": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 API C", "Changes in Version %(version)s — %(docstitle)s": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u0432\u0435\u0440\u0441\u0438\u0438 %(version)s — %(docstitle)s", "Collapse sidebar": "\u0421\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0431\u043e\u043a\u043e\u0432\u0443\u044e \u043f\u0430\u043d\u0435\u043b\u044c", "Complete Table of Contents": "\u041f\u043e\u043b\u043d\u043e\u0435 \u043e\u0433\u043b\u0430\u0432\u043b\u0435\u043d\u0438\u0435", "Contents": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "Copyright": "\u0410\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0435 \u043f\u0440\u0430\u0432\u0430", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u0421\u043e\u0437\u0434\u0430\u043d\u043e \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0431\u043e\u043a\u043e\u0432\u0443\u044e \u043f\u0430\u043d\u0435\u043b\u044c", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u0417\u0434\u0435\u0441\u044c \u043c\u043e\u0436\u043d\u043e \u0434\u0435\u043b\u0430\u0442\u044c \u043f\u043e\u0438\u0441\u043a \u043f\u043e \u0432\u0441\u0435\u043c \u0440\u0430\u0437\u0434\u0435\u043b\u0430\u043c \u044d\u0442\u043e\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438. \u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430 \u0432 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043f\u043e\u043b\u0435 \u0438 \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u00ab\u0438\u0441\u043a\u0430\u0442\u044c\u00bb. \u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435: \u0431\u0443\u0434\u0443\u0442 \u043d\u0430\u0439\u0434\u0435\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u0442\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b, \u0432 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u0432\u0441\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0435 \u0441\u043b\u043e\u0432\u0430. \u0421\u0442\u0440\u0430\u043d\u0438\u0446\u044b, \u0433\u0434\u0435 \u0435\u0441\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0447\u0430\u0441\u0442\u044c \u044d\u0442\u0438\u0445 \u0441\u043b\u043e\u0432, \u043e\u0442\u043e\u0431\u0440\u0430\u043d\u044b \u043d\u0435 \u0431\u0443\u0434\u0443\u0442.", "Full index on one page": "\u041f\u043e\u043b\u043d\u044b\u0439 \u0430\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c \u043d\u0430 \u043e\u0434\u043d\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435", "General Index": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c", "Global Module Index": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c \u043c\u043e\u0434\u0443\u043b\u0435\u0439", "Go": "\u0418\u0441\u043a\u0430\u0442\u044c", "Hide Search Matches": "\u0421\u043d\u044f\u0442\u044c \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u0435", "Index": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c", "Index – %(key)s": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c – %(key)s", "Index pages by letter": "\u0423\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438 \u043f\u043e \u0431\u0443\u043a\u0432\u0430\u043c \u0430\u043b\u0444\u0430\u0432\u0438\u0442\u0430", "Indices and tables:": "\u0422\u0430\u0431\u043b\u0438\u0446\u044b \u0438 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438:", "Last updated on %(last_updated)s.": "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043e: %(last_updated)s.", "Library changes": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0435", "Navigation": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f", "Next topic": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0440\u0430\u0437\u0434\u0435\u043b", "Other changes": "\u0414\u0440\u0443\u0433\u0438\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "Overview": "\u041e\u0431\u0437\u043e\u0440", "Permalink to this definition": "\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u044d\u0442\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435", "Permalink to this headline": "\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u044d\u0442\u043e\u0442 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", "Please activate JavaScript to enable the search\n functionality.": "\u0414\u043b\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u043f\u043e\u0438\u0441\u043a\u0430 \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435 JavaScript \u0432 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435.", "Preparing search...": "\u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043f\u043e\u0438\u0441\u043a\u0430\u2026", "Previous topic": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0439 \u0440\u0430\u0437\u0434\u0435\u043b", "Quick search": "\u0411\u044b\u0441\u0442\u0440\u044b\u0439 \u043f\u043e\u0438\u0441\u043a", "Search": "\u041f\u043e\u0438\u0441\u043a", "Search Page": "\u041f\u043e\u0438\u0441\u043a", "Search Results": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u043f\u043e\u0438\u0441\u043a\u0430", "Search finished, found %s page(s) matching the search query.": "\u041f\u043e\u0438\u0441\u043a \u0437\u0430\u0432\u0435\u0440\u0448\u0451\u043d, \u043d\u0430\u0439\u0434\u0435\u043d\u043e %s \u0441\u0442\u0440\u0430\u043d\u0438\u0446, \u0443\u0434\u043e\u0432\u043b\u0435\u0442\u0432\u043e\u0440\u044f\u044e\u0449\u0438\u0445 \u0437\u0430\u043f\u0440\u043e\u0441\u0443.", "Search within %(docstitle)s": "\u041f\u043e\u0438\u0441\u043a \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0435 \u00ab%(docstitle)s\u00bb", "Searching": "\u0418\u0434\u0451\u0442 \u043f\u043e\u0438\u0441\u043a", "Show Source": "\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442", "Table of Contents": "", "This Page": "\u042d\u0442\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", "Welcome! This is": "\u0414\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c! \u042d\u0442\u043e", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u043f\u043e\u0438\u0441\u043a\u0443 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430. \u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435, \u0447\u0442\u043e \u0432\u0441\u0435 \u0441\u043b\u043e\u0432\u0430 \u043d\u0430\u043f\u0438\u0441\u0430\u043d\u044b \u0431\u0435\u0437 \u043e\u0448\u0438\u0431\u043e\u043a, \u0438 \u0447\u0442\u043e \u0432\u044b \u0432\u044b\u0431\u0440\u0430\u043b\u0438 \u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0439.", "all functions, classes, terms": "\u0432\u0441\u0435 \u0444\u0443\u043d\u043a\u0446\u0438\u0438, \u043a\u043b\u0430\u0441\u0441\u044b, \u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u0438 \u043a\u043e\u043d\u0441\u0442\u0430\u043d\u0442\u044b", "can be huge": "\u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043e\u0447\u0435\u043d\u044c \u0431\u043e\u043b\u044c\u0448\u0438\u043c", "last updated": "\u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435", "lists all sections and subsections": "\u0441\u043f\u0438\u0441\u043e\u043a \u0432\u0441\u0435\u0445 \u0440\u0430\u0437\u0434\u0435\u043b\u043e\u0432 \u0438 \u043f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b\u043e\u0432", "next chapter": "\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0433\u043b\u0430\u0432\u0430", "previous chapter": "\u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0433\u043b\u0430\u0432\u0430", "quick access to all modules": "\u0441\u0432\u043e\u0434\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0432\u0441\u0435\u0445 \u043c\u043e\u0434\u0443\u043b\u0435\u0439", "search": "\u0438\u0441\u043a\u0430\u0442\u044c", "search this documentation": "\u043f\u043e\u0438\u0441\u043a \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "the documentation for": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f"}, "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3)"}); +Documentation.addTranslations({"locale": "ru", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", \u0432", "About these documents": "\u041e\u0431 \u044d\u0442\u0438\u0445 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0445", "Automatically generated list of changes in version %(version)s": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u0432\u0435\u0440\u0441\u0438\u0438 %(version)s", "C API changes": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 API C", "Changes in Version %(version)s — %(docstitle)s": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u0432\u0435\u0440\u0441\u0438\u0438 %(version)s — %(docstitle)s", "Collapse sidebar": "\u0421\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0431\u043e\u043a\u043e\u0432\u0443\u044e \u043f\u0430\u043d\u0435\u043b\u044c", "Complete Table of Contents": "\u041f\u043e\u043b\u043d\u043e\u0435 \u043e\u0433\u043b\u0430\u0432\u043b\u0435\u043d\u0438\u0435", "Contents": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "Copyright": "\u0410\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0435 \u043f\u0440\u0430\u0432\u0430", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u0421\u043e\u0437\u0434\u0430\u043d\u043e \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0431\u043e\u043a\u043e\u0432\u0443\u044e \u043f\u0430\u043d\u0435\u043b\u044c", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u0417\u0434\u0435\u0441\u044c \u043c\u043e\u0436\u043d\u043e \u0434\u0435\u043b\u0430\u0442\u044c \u043f\u043e\u0438\u0441\u043a \u043f\u043e \u0432\u0441\u0435\u043c \u0440\u0430\u0437\u0434\u0435\u043b\u0430\u043c \u044d\u0442\u043e\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438. \u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430 \u0432 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043f\u043e\u043b\u0435 \u0438 \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u00ab\u0438\u0441\u043a\u0430\u0442\u044c\u00bb. \u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435: \u0431\u0443\u0434\u0443\u0442 \u043d\u0430\u0439\u0434\u0435\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u0442\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b, \u0432 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u0432\u0441\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0435 \u0441\u043b\u043e\u0432\u0430. \u0421\u0442\u0440\u0430\u043d\u0438\u0446\u044b, \u0433\u0434\u0435 \u0435\u0441\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0447\u0430\u0441\u0442\u044c \u044d\u0442\u0438\u0445 \u0441\u043b\u043e\u0432, \u043e\u0442\u043e\u0431\u0440\u0430\u043d\u044b \u043d\u0435 \u0431\u0443\u0434\u0443\u0442.", "Full index on one page": "\u041f\u043e\u043b\u043d\u044b\u0439 \u0430\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c \u043d\u0430 \u043e\u0434\u043d\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435", "General Index": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c", "Global Module Index": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c \u043c\u043e\u0434\u0443\u043b\u0435\u0439", "Go": "\u0418\u0441\u043a\u0430\u0442\u044c", "Hide Search Matches": "\u0421\u043d\u044f\u0442\u044c \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u0435", "Index": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c", "Index – %(key)s": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c – %(key)s", "Index pages by letter": "\u0423\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438 \u043f\u043e \u0431\u0443\u043a\u0432\u0430\u043c \u0430\u043b\u0444\u0430\u0432\u0438\u0442\u0430", "Indices and tables:": "\u0422\u0430\u0431\u043b\u0438\u0446\u044b \u0438 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438:", "Last updated on %(last_updated)s.": "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043e: %(last_updated)s.", "Library changes": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0435", "Navigation": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f", "Next topic": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0440\u0430\u0437\u0434\u0435\u043b", "Other changes": "\u0414\u0440\u0443\u0433\u0438\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "Overview": "\u041e\u0431\u0437\u043e\u0440", "Permalink to this definition": "\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u044d\u0442\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435", "Permalink to this headline": "\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u044d\u0442\u043e\u0442 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", "Please activate JavaScript to enable the search\n functionality.": "\u0414\u043b\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u043f\u043e\u0438\u0441\u043a\u0430 \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435 JavaScript \u0432 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435.", "Preparing search...": "\u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043f\u043e\u0438\u0441\u043a\u0430\u2026", "Previous topic": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0439 \u0440\u0430\u0437\u0434\u0435\u043b", "Quick search": "\u0411\u044b\u0441\u0442\u0440\u044b\u0439 \u043f\u043e\u0438\u0441\u043a", "Search": "\u041f\u043e\u0438\u0441\u043a", "Search Page": "\u041f\u043e\u0438\u0441\u043a", "Search Results": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u043f\u043e\u0438\u0441\u043a\u0430", "Search finished, found %s page(s) matching the search query.": "\u041f\u043e\u0438\u0441\u043a \u0437\u0430\u0432\u0435\u0440\u0448\u0451\u043d, \u043d\u0430\u0439\u0434\u0435\u043d\u043e %s \u0441\u0442\u0440\u0430\u043d\u0438\u0446, \u0443\u0434\u043e\u0432\u043b\u0435\u0442\u0432\u043e\u0440\u044f\u044e\u0449\u0438\u0445 \u0437\u0430\u043f\u0440\u043e\u0441\u0443.", "Search within %(docstitle)s": "\u041f\u043e\u0438\u0441\u043a \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0435 \u00ab%(docstitle)s\u00bb", "Searching": "\u0418\u0434\u0451\u0442 \u043f\u043e\u0438\u0441\u043a", "Show Source": "\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442", "Table of Contents": "\u041e\u0433\u043b\u0430\u0432\u043b\u0435\u043d\u0438\u0435", "This Page": "\u042d\u0442\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", "Welcome! This is": "\u0414\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c! \u042d\u0442\u043e", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u043f\u043e\u0438\u0441\u043a\u0443 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430. \u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435, \u0447\u0442\u043e \u0432\u0441\u0435 \u0441\u043b\u043e\u0432\u0430 \u043d\u0430\u043f\u0438\u0441\u0430\u043d\u044b \u0431\u0435\u0437 \u043e\u0448\u0438\u0431\u043e\u043a, \u0438 \u0447\u0442\u043e \u0432\u044b \u0432\u044b\u0431\u0440\u0430\u043b\u0438 \u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0439.", "all functions, classes, terms": "\u0432\u0441\u0435 \u0444\u0443\u043d\u043a\u0446\u0438\u0438, \u043a\u043b\u0430\u0441\u0441\u044b, \u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u0438 \u043a\u043e\u043d\u0441\u0442\u0430\u043d\u0442\u044b", "can be huge": "\u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043e\u0447\u0435\u043d\u044c \u0431\u043e\u043b\u044c\u0448\u0438\u043c", "last updated": "\u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435", "lists all sections and subsections": "\u0441\u043f\u0438\u0441\u043e\u043a \u0432\u0441\u0435\u0445 \u0440\u0430\u0437\u0434\u0435\u043b\u043e\u0432 \u0438 \u043f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b\u043e\u0432", "next chapter": "\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0433\u043b\u0430\u0432\u0430", "previous chapter": "\u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0433\u043b\u0430\u0432\u0430", "quick access to all modules": "\u0441\u0432\u043e\u0434\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0432\u0441\u0435\u0445 \u043c\u043e\u0434\u0443\u043b\u0435\u0439", "search": "\u0438\u0441\u043a\u0430\u0442\u044c", "search this documentation": "\u043f\u043e\u0438\u0441\u043a \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "the documentation for": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f"}, "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3)"}); \ No newline at end of file diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index 35b2d911cfe6dc5842b2d56be838539921a3d827..04c451f2fb1af6e4e4df2eca6fd7ea43613a2f80 100644 GIT binary patch delta 15393 zcmd_wcYIV;{{QiNLkKmLKnMx#f<#&pLWe|ZKzbFV2tq<85J@s2jUq4<Q4ta03K0vS zC>BJK5kirGx+@5x6YDC9i(OH%Enq=^ulJm>EbIE)@8hxGzrH?{=Q(%oJ>_#g=gegu zZafx#_CUDrWK{S%i+{F<Syp4bE?TwU{`st}W!+Bob8Lmzx8pzCvL3}-d8SJupK<-! z_LkL<>rW(G)@ka;J6P5L>U%p{Rt)~!$+G5iJ*JCg72sOTu`HiexhogBP=M{Z@g`hB zeP1`r8iM`1Th>urjgxRv56hx&YZpf1DXffVkTF{Sz@F%&SQbrKSK}aDkG=67Y=O;E zEvp*+Tm2|h<-#zG$8o5Ju0=Jx73<+6SQigreS8UP<40H%&!Gksewk&}z$nz`O+)o0 zR68ly07qaQ`nNn3YGDaFxE$5dR#ZcKup0g)^!W>T1@$x77t@%o8eAUoF04b{kBaPH zFc#lJ4d5)sVf9|bzafQq3YtML)D1(CWwoZF9$ba2iuC|C!;{zuf5Mg+M_l(}Z|sEM zp$4AV$Fizm51fX5Q4zftNe}D6KEz*zH@PqnYcicE9E;?UH3QYr?U;d2pz<@OpBYdh zs-B4s&PPS+&XD(`BKsI>iOZ2OTZcoRN2K{It2Gzuq#1i)Q|cMWB&;Q<2cJT%?NMxw ze?#)o`W}@to%)-ZPDBkT9XsP3bnp?>^T$z3a{{#lpZO>>qfljl>8KTIEt63*8Hn*X zI^-N|Lj7(ek*)oxEI*5SF6nZU-2-qq^_i$#+Kmx-1gqnVsL1->3>D5I(Y2yjhru`& zr{P9a7XOTuvGyRgBt|3uT9f!=C~iUJ(iyCRRcWLu)<L$q6^qKPk*Fn^jttCa6;Mzp zuS4a+0c?S1LPia-tV^hOK{Y%PwFK#?2rNTIupAvciPi9DRL9jcI-BK0MX1j(vlQd8 zp7y_oLKq*+LzdH85d46Bj^Wf_!6bYGwWd{xt2*e3x;_vUnG)36F9^976{!bNGygoK zJ;JiCq8^P+=--;H0<K1_)pneS2T?PP9ch*z6**0<p;#Rkp$5DH6@lZJho2+qU`-xn zw)MSOoBCs@ZFw+s{TTWZx$rj%tubP>X}CRVASt2xFx2PcQER*y6`2h<2{)o5@Es=L z&!`hJVT{T4z8Fb;4C?u5sN9%0hWIOFOSzyK-HuwLE!Y_Mp|;8EA-_hQXpvVK<534x zPrMYzBU{^AgxUBMcEomLO;TTtTEYiW5qo<q@mJvj7u0Z*amFrKkNR+|h3OcL`B(?9 z$C_A*3hjLug-?X)hfzuUI<~|gQ0+Nan&&!W1ogf?3Tki=DgqNxS)PentDI1ME^45Q zQ5|hYHQ>kkxDR#zi>LvgK)xQVPf`24)p(P%X{dgNqx$ttprEzL#&%eMYG@;R@nO`F z88^XnJP|ds9IT7CVhP@h8h9+3s{u7fwc8bSUvE?dMkD`P9{wPAeAYn<ZMhIftrHHw z_BaofbPr(?zJ%ndWwUqkaSSRV&!Be6d#H1x@?;b8*62_ljvmZIny_BM5!ikThn)8R zA__yf@G{0@v#U+R1CTZ?4{F9wVJrL~RF9l$>K#x6n20^`TI_~<QRl>0cqjgVnOHiF zM8zMm#7ALlx>?I(Sc&>esO|L{I(P!R;E$*Xb<8lkBnul+Ux=Fd2GjtaM9uVj)Bwg! zH%l`WwM}QBwrMW<lmvHBXoK4@8ec^v*J->7zeYW<km0Mthf$wDi^`SbsI`A1R6iA} ze~!w5f1pDC6RyPJtVeI%?;-v=fMT=EJ{^ckp841WSEI6hJ8GbZum@IP9M+g&W_T%T zJ0_z-+Y>e5b*TOSG!hK!A2<*v%ryOMo=N;Q<6T@(sE(m>;8mQ4KcEIOIorG!%txJM z8&LcHfskdWEI*8j$QyVmet<2p<~8P^>VRr*C~5-PJ_?%gb=V9yU|-yeTEibu5xR1g z8NhYenEDpfbBC}wzKY%P9BPe|b4*0KVioFXsH7Z<U2z$vqHiCC!4%GhF7(MYU#kmn z5ZB94A=fvHLYIOH>C%w9uom@?u``~-2AII%p@F7hKb(eoZVSfZYvyyG^(6&`B$7?t z5Zhr>?2j=x9hC#uhU&MV?%Rs3@gVlZkFgG3I@>HwH%z8J5W{gUs^f*&9!oJ!`~NV7 zwp@4@wPuk8CKo!RX5I@mz`5w)dQ|AkP)qYXYM|evW*${&US!&!+Pw;uW7lI<ybCq3 z`|(oxw_c-A7cZc4pmvd&S$nKaeF7?!Gea&%CF#A$PO^^RJ(yH%mLPzdab?bBJzpIs zVjODCi!cdypiiNGhk`oz2{nL5bIf-^Dk{V?uruC@y8o|O58p?f2j`LF->N^?{FN;i zHGn;+fgZr>_#W2BFR&q2nn(QGQD{8Rtj!?Q05Y%|F2(M6GY-eUB9pV~%{LKSfl<`& z#0Y#8HLzV6htFXQzK_~fKcWWG>sm9B!PgT1u3VVO1?_@Os2e{)HPCK>S*y#j0rfek zU2qGIz}HY~8o$tlItdlpUZ^$C#YkKhat-#Rz6l%S+dc}dD146!b&EyjtRIRA)R$m$ zd=#5v02|>M)BtNR0X3*ZQY14`$#pAUiBE-WxY$I{i(|Nc0Ch0=>MSt_Mi*4*Qc*J- zi8XN}s=;m82H!%>EMlqI6^&6dNkMI^@feFYpay&oDsqQVyX$pqjz5{Y&vKTT6KWt1 z;DeE<j@O~K&%M|Uk7En0e4U9@Yg8mgV-w5`)mNhKdjKorQB)2DP|5c(Dk(2us`mdS z%T4l34Vi^%AQv^#TX7if41NAHUP3+MdNc60*q?ew?1FPpNwyusaSv)j2e1Pk#R2#u z_M?BR-wh_ImSa5i<ERjRgX$>qMsx6VK-I@!0+yg6umyDx9mLl7Ich)+R+xcYg?cUv z_4!Sqx*vTJTzH*ARXmBc@FT2&XHgG?-4r^SQQNUUI=B!=;YL)%&Y+SqYNfe95l2$L z92NTYs2tmd>hIu6;$Mft5iV%vZ=klz&!~Y!-fU*t7!|_7r~zGx3ZW0%;$Kmr{SuWc zEmoPxOv38aOHk*;5>)cuh8oDjtBAiYlygBx<tw2Z-^WX-pF<^2(_741c14|psi+y{ zqXxbl70GQl9e1LZu)%6`JsE3I?}n`~4O4KIkAg#CEB3*|SOu%zYPMA!)W{Q21L}iq za0Y7TYeLtb#PQVM!(N!W#zbO1a#UD5u^M(*Ya*PAs{000NT6^9s=>vWjN4G#>Mhg^ zzsFK^T;m?3O>5L`CW7zcWa{TpNjYwvndxlQ^Bb@o9>lBhG<KwaYsh-DZ5E<J<44W( z1nK|@qgREpIchtlVi)X#>Zk-O<62Y)w__syCG`2%sBK*9c4IO|Qy&wov;H$FG~mKb zsI0sPwOt-YMdXFh_3to>de{bYe>A31Pr%Wbj~ejP*aJ^tDmJ>qEZKO}(k?-@vjQ7x z|KCMHGuee2Sq17y{Rnkq_?;#RV{l{`$1E}y%XhblSi_CxC)qxzpJWejGC#>qxR(xW zw%-=>lkC*{*frFL-cNhDW-D#Xr=f=)Fu%#Rd@%T%tW}CJ>i8i#<Hp9gg8HzB&G-9j zc$9kcZRREQGgRmYK4SjTS%_Ma9jFNIMtw=0!fx1XyLq=9zn%5(&4tZeXn}u6Wo4yD z%~C|7lBWTxq03MW&p?Gb7qxUZV=Qh#MeqPBmtMx&_ya~_jmJ!+W3dMHE{_ramK6GO zAqlfk4Xi^&U>gp?XF~OwJIsqmOH_kh(ZT+B1$wYA?nMpk2W*Z}kDK$NGb&PpQT-PC zD5#@5Py^VBn&~O5i#2zenKi{k>fNyeW?@&n9h>2cs2n<jYPg2q{3M%<BdC9hnsJXO zOcD;jY1DngDTGsa6xFal<OevAddw~}gQ=*cT7udgPhkdrfLgjiyUl=RVKnu7(ZM|! zg>PUT{0wX11+1z4U$e~oRuhYAXc=l-ZAFFjQ|yYp_Lv_eictgj05#)kd(8mju{-sF zsGM1h>Ub;a{=L{A-$n;p?9-C4{%I5vxG({=R?D#uJ`lWt7Y6K0{Q~Ml?7iP~FeT(N z9KiL5Fa^(GH*EW)$$<>i#OC2NybHBt7qBM%TTKp_3vIC<^&!{@SD`w72nXY7oQ7S> zO;)c*LTGJ8&CHKV*7G<N`yMnovkG<JepKj>U>AHHef20r9x`Wsb5zoeL4`6Cl@oWP zX7FOjuTde5e#(5k_P}1$`=cVT44Yv&I(QN_fS*wv*L<3H3!BM4P5j4kp~qj$eqD`P z>oU{>Utk*kfK9OXU(K3MLG6}&?2MbRI=&LR{tjyY*Lv10MOReEdDtKC!+8AUS)bXD zwGW%$dQwpxm4@7fZK%JD6Y&D-!SP4THeHAvsXvId@dRqXr%@4T|D5?rb|em<UXHOC zel)bLeH63=-BB|hhT7*7u{GX+%HkcUj-Np_{0WZ7YRAl%Ogh%5em73Sov5{rd_MFB zg=%*&>iIb#eWer{a-j^XV*r!!1ghhj$IXMyus!wR*bWzlu0MpqWC|Jif*DX6Udnww z9F1Es8_%O6mhoaRseRTu3R=T=P$R1!Fm}cm>SIIZU`y)PVRL*4qw!ei^HW%p`gf=h zM^u;zIH=v!36-=Xu{RcCTkU^81wC*Q6~gma2P0oH5owBQxDBeIt{8=5Py_aa>dR3P zyd68@mQejQ)PPT6E>?Qkd_EiN(Z6*ch1$3W)xnWa{e4uZzYSe?UNI-&WvK1;2u9&) z)XaXuy4d1X-ioj@*1~OAANQd?e=$@)g+7h!ECpqE!`Dpm6kuEG$FUQh$M%@;x=G5( zm_&U!j>0D}A1nXOM5F}O?t0X@u?MwuC(uFb4fDfA^EZgUvh@ZojKFtsEOvO)ytQ7B z%KFMDOvCN)D(XW~GkySD;jvKtn@~OGEi-`LsP@yb8$O9K_$}UvHQy%wnG_y;o8uNE zPnyu(iRvKg9kZrgu`2bx=-?2{!da*Yy@YKr;_qe&lTkAthCR`X8pw9kQdB)<Uh$gv zD8z9g1ru-_YDP;@4L*#~_zFhgr}#B~g}VR!cTI<N-!ttbVq>lk!iMNUb+`zX)Go&2 zeW-~0$|<a*5c$5@78@{;`Wx60t9)RRFa<|a&q5{LZd8NMVGn#0HIe!snxt!w>Zliv z#|fwb??AQtHfGSjRp%q~qEUz%>3-CV19%C3i1AqcWAp8oj5?y%U{ibyBk={)E_y5E zXQ=yrL`^8}6O&tmuqE}oF;@HkX$lkcAZi9(J~bm8g;S_6!@hV5wT73R=I;!+2uI^b zsF3&g%uL`)Y)*X^cE?p%9iK%dUj=GgeuCZT-#SmBD<*$#j?Ni4nEIAb{c}vA-sTJQ z{ho;m`F0$LAE83p{){mL+fZMJWAGq0z^E_H61TyA)U(m22OpuJwR#6NlkZTWYw(px zqRyyL4@b=)2cz)1P`wnDY>#1UJc2#(E3AX<zcx$L2a~Cf!kW0`YvQktZ{b3Fd=Rw+ zf5W!;4PJ^(zcC#SK+SvtYJh9e!5ygFslY`15H-;H-<p{xU<c}HsCJ7{Ikx#*;;#|z z=7L6c7}eo<R0GZaVGf>dsF{t&+PD}Msar#CM<wY|^x&6x4_<lJe7T)R%{cL#c|HXv zQXk@@kV@e`Ov1mTLS6g3=^zQ4Q6Gx!a29GHrI>|>Q1`d`&b&ulj*X~K!U<S{L-0jZ zQpSC626`DP(!LA|ttc!+b#Q;k3XG+G0X2Y_A54h5VR!1oa2+nkVr=xI`Epr<QPj6! z1n$OqcmU(D0%Pzq?5q7Be!(ok<*1pAN9~3Z)GpYL+-RLcHPGWHvs7bI4KGLSf(<wV zPhl-g{@H}OH!89tF&Y<P6TA(ZY5(t}(31-<VPmXg*};e;qC!0myWk>Bz$Z|lJcUiM zl5Gb=-U2niUa0maq9R&~%B^ScO8hqD&@kH?PXE@u6vp6}sFNwJk{t};Ow<goMa^tA zDv3^_8a$2K=Z(Yd;LI*Z&1^DiBJ)wZsuZ=9hfxDQg$>ZEY+F8Mdkh85s28d}4IAMN zH~_bxvilR%_Ng6V2ft2Jun+YDRHXc<=iWjM<b0^!po$&*HtdL+z&KP6WK^+z!F@ZQ z3+iAsrs6KFieF)M{2p6i<*H_&t#KIjA*cpRQQsB!h3ZGJKlN8pOBYwod_D?we-Ubc zORD+o;K8to3z}&K>S&CqZU>WU5^7-gqC$8C)zQ1?U_=d5Z-oiehoT}d7j+QbhKkJ7 zr~#cuO(?mhc`nsQK{redUAPf7!beaC(_U<bN3jNein{+SHpFI;c5pj(M~C`s9EEF9 z5ql4nlo7Se{mpSC^%Sg+zMCj0$u^-z=0|l{j+*&NjKuKTCS*~lnI@yQ(-hQz3Q-Zf z3zZ}9qK@3iIwn_oV<+l!Q2lH}&IzBjn}Qm84mFT>LiKM@Nm8w@34L=^a;9Q1d9W(= z`Pdnkp=PuPHSpu8NPdIU(TXz9XQG~4iNXK>=QavD0UyK^44{KG>Y40Lz$(;pQQN8* zb;7Mh4d{N<Hhdm6^RuDr&FkC2H=jY+i|d=Q8@_{!FecizYH9zkr=ab3zb@cmRES?g zHCU;E+3!iHteuLQ;X*9MEg@6+QEv_Pmr=Rl;m5zpxCoV$Cr}eThkCwQEc;(4)Bp-s z<817R0o1ms6lWgjftqPL>HxVBwHqG52z&~4{}EJ2KVfBzYh+G92eli9p+29Fn(+EY z?0*&Za6vinX6S=2Q72SXV>9D6sBJe86_Ht}wO)^Ea2x9W!<dFAaWuAQVg_7<J*c~w zipNn)R;_6tv$ma@nwh4eLN^`N@B-ApZbz;Cqo}n%hDySdP2ISJyZ!Ga<kfP2e*7AD z!ODhi+sm5y52bFl!{Q6w*L!Yo(lawXnF&sOp)-AEdftpsxxka_E%9Vp-1JpZth@Qz zNdLNCD=Ybz_e%|TU%5QW|KsH^g(o^iUZ=p5p6O)g6?qB@^Jiw~&7GQ?o}ZtcH{+`K z!YK*P;2C+|0#9a&6JOweZs^Nl{v9Ls*zPqiboLjI{vymR8k_0<ee50X#&HKLXXoU2 z=eP^TweU~5G9lcToj2X%lypo=PH?UWHtZA^dJ3Hu*?F0sxh<UZLMJ!9kY1-|dZ#-X z^PEgiR(f$xQIaz%$CF;@(Y%}%zq_TU(`vexVdfPTwrZh)&+`@+I9$p~%Ac2HT|tcw zGqVdk(~G<X^W57f&GQxK=X(o^oGfpF<0(ncDNZk9V$P^}MKis5PDiJ3US3i9TqnDb z&hvRLy~va4q~~QibC`>h;UPA`C=#Au=FmAQImt=$=9PG8mzXn-P;;F^%`udDxf$M^ zLTju)_Nw7_wM=hrIt{QA-pQ?gSKBms<Zm_qxykEnyU<;8b)22xZo7I{^;E|*H=nt9 zGX1$z$JuUr`d)W%#%#N~e_zJOc4Vg48e5Q_SD2H|Z2kQ_b;A5jvy&@Tx6+G>3bHeb zi#%@Ni)-A~XAY%#i)K1S=^4d2=>^lhImNkog~3Ut%*oCynpv3Qc=L<0iAQ>Y$C;5` z;>k;Le*K8hWGe&QAz!xNQaR6dn|N3G4|^Bb{(-YsS90Gw=ZP$+epO*nrnk6gO7-{x zcWQAQ|E0Pci(}m#=li-fOQPK5@7{GA&w1YMb9ZO|yK~xxU-U@qf)*ED8ML6ayJA5% z_l*TNx(N%bMP)i;y=e|BUoelgEY8bJS+~*dGpx{?>tXQ<i%F|F*-SEc!JFk2&Ez^u zlt*Z?J%tGl;n2l-&P;NBj<;Zz(jYyD?8_r1N<4)r>niMF?pq7D#T68gEOQF7gPD?* zo#Szar_b`J;9s(+n?2CVN~fHuh0o3nW><XSzh3iZT*K0_=D+(WKfQpo&P!*|@rC}! zeWXT?Cs_4nxy>)stJ^xX1yY<`Z)S0hr_lfX;!3s~voxzw_KcZ1{1+UQ`H;-d^du!E zIc2LN?8_>-Wy>FG_3Iw~b@rMu8%;+6Te#3k?4`b^T;DG2_gnsVw`Uc2bGe0vUEht3 z-Ay-MTY77xJ=ec(#okJ#pSQ5n++nLeFN>&WXV~>E_6(C!EZM`wx!RiUldDJgBX8Ym z*C-5bNVVj+53li+j=IF|>~FnxgB>v|J3rr(>7H~~_;0!`P`SQm?)02u4zXWb;jnRc zY>0M8-O(~(dQpK#8!^jM;Ne6mWLNy_-ByuT_ql<c%}Vz*vs3-s?igi9=VzMz?#V03 zF7W1Qd?}9qyF2^XZo7>Sy2my)F1@CuU8gj?rCs0cv8k?`yQzV@VN-JL!s6WAbmbZ= ztw;>mJU+5VVsgjC4&9yP4k=wax({t`q$`~gJ9KtBbWQ2h)nBoBY8VIgq+0Io$I~u4 ztQ**2fhXL>{-Y6T?b>MpVs=%v|Ko$(<>2<exO;si|IvL9S9Whal;}TpXl_`ez&(NT zKw034z>dIyz@ES^r{X$_djtCeJN%=b*}@H*Di-s>lYw0oi>=>RDptDjLx;K}o?ZMu z`v!2Id$y!T;6Bp}^Kk1v)wn@|6F5je<@~v<Vo6{hpY94g>7RPIypq4ev1wucYhL)N zk~{CE{91uhKGSHHa@QXBov}%7%a@ay1#YWYT(K<R56&TQFtCHxLih2(N;l)>6911c z7upe{e))!J?)Sc$8rCcDSfH$8WnkYg1K1VVN7Fm3Q3c-M?$h3~0-G7me%da(=r(uF zg!+vFYZV-Zy{BUJMW6e>fBj6@|KV>j(o4CsGvLlUkyt;lkp&{NsP8AB!G!adok;vI ze7(83Q>Rz`C9B+_FU5^+P0uWuLsC6K@qlBNPs2GFC}+KvvR+ELoebze;6TO7iscR; zayyBn@$GHn1a^`eWx-qayLG1R<O_6n!@ydulVLY1M}ONeyVUI^p*;47^6yES-l4Q8 z=k`5;$CcXdqKwP<2JZgeh_HHrO~HU1`2F{A!iOK)alx&&D>xSIjNMEk7_o}g?sHk3 zCLeqKi$Cod-o~Q&rQAT<Y@MYR1$Kvebrfi3$y_x{_w6sH{I|Zz{X@PSV7m`|HEe9) zZaUjZ`(?q<?WW^$hpnKnYL~7E4)11%dGD{drQ!xBF`b2QG`>(=$pYf@>#?JePVx4+ zQVp}2XlOt4x`Er-@)b*TtIh{bir<!x4{rXoh2T2#`QyPA*!@e?_&P{=db7Lc>!!Yc z-*j+TdzBf#HdnEdC#^quq@3IL>5Td3QB*83N5OAPxGS`Xb%Qe|I(syx_(De2Du3gj zjEY&`z+^d<{<#Y!^u-e;Xf*myF(R8aC8D{D?N|P9=F(ZArM(@&z%Kbu`XUvp&+g$4 zoITk;_1hQ2t_d#70akKPz|Wd-09RZeT-@M5O;!do(+ccVLX@-VF1lIQltO{MT6>LU zp9X$Fi~sAAu!E+a%l*&Z8~w@O9kfF)jeJeBi^^H8WoD05EOl$mn;28E`VYSX{JtOW z3cKi~^3Pr~uUMCA&uElcoS&0z{u1!N{=T`Z!X9il^8EX^&9dk)`=<Ze>!$m-FRkoE zCA*egLoYRd`qo+YQMespmsW|eZ~XtgcYa;zfAG%P&n_#kVJFzFbG+%9dTIRKUpoKn z4fN{L>`1$18Ly$Q+m{40OeZ)Q|A%Q<vAS$_ZF_#$FE6VLN<C5b&1GTr?5sb2V=cX| zzCE?{!}|8HXdS?6*u2k#UMI?WMcc*y^g3Jma09!2ESuzyUo1*bH?W5UUw7TsYg5a- zG4{0=z4LCc%lNHgLim68&9{s<-&J<fAHMbS-NM;xj^vwzM~`C2+3Q}ob6n}h=5}-= xPW^xPD&*$g^}Jr0<E`IL8NOWg?fc8g&fhJ5`5q{}x~1LtUtX%~T=Y_H{XcQATkrq? delta 16489 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 *y{qi(!q^$@351D9Fv8sqFpt-YG2ddm7Ek zX2&u-q8Xm%^P7XEk!MbBXnM5!)LGNB3p60jA=>8eb3$n~Q#p|vR7fvs?(eN#ltCsQ zCLGb0<43!h!&Jk+Umeaw64vVvc~UNnu|Jdg-?aC;m}q_jM-Lt1iDuc@K;g{b^gzKy zQ=1+txOhgF{+8y^R`QG3EkR!>nuk8+!eo<$lQ}T5d{YC3K2KIrZeET~zh303&-BA) zA@3t+vfIVRarAhcrqe>hImafuN9p9LdERNPrIL0I2~j|@a@OVi?$qM6BSS8{6DZIE zDFdRXSE{q|vlk=xPH$mXjdt(Nj;2e2cbbnboqf5t$8t706KB+pjGb|{ZN@R<)Wk^Z zytc8GLb?7TvWe~EXD2!11O5uZ_zA&K4nw~pzNzzdpsO?OOhxB`yAxv7+>kT9qRoZR zc*;e$NbZ%s9LIa6s<ZCQN6y??2P3P_*0&?8gQa6DUffX7**Lq=AD+BFJ2}DK1Wblw zUmg5ByJwC30>v>H3KYx<6mlZ7^!g}c&W+9|bGkame(2$BpZj=Z@w_&6BxZhp+nIOO zua%;^`L|{~&egxxbQWJdVN0r=5$m*H_-Lf;qU0E7+>)v$0C`L1Yd$OIm9ghWCSUtZ z?8@{C_La^%%VursSkazlC-I@jVm%7HIxsm|e*5v!GVZ=HQ*TEq-1Ly`?7Mk(WY#UK z?0W96UvwZkDxysUXXX}YI!@)=mL=r+bqta&{O;+T+V*8t`w2VJ=Jt+p&OLY5S$RVp zyJMuw%Hek8zE$0A+v9XE%y9PJRp0ikJXzlEr(&F^Fp%d=Ih*brzw2S=w!5n}804QC zNac8p2FYX1Da>V2r+G#X>l01rm6Pk+N%~LCmABTntJJ)(e}1=<omcN}R52R9=v#^n z_sP!Ti+4K@e``KEH(ht;<Z@K|edhPYys!Olwr}*8L&rx(yoV`Ue|kYThUj_mkH0^> z&}nne==PmbT6aoGZ{um*CZkQemaRLtZXG{-SjtG>>|7oEDSg>88J_gkZOr#td)jo! zXwyEj<DSVe|G8V)x=O#hk=3y6JDk=Z*Kn?V^66H^JBoJ}Zz@?>ve3i5%-o)Mw!3&& z$<pF2#d}H?U3l))`LSX6LbYT`$>QQ&#XI=o_L5suiuV+6DOte3*HK+atJ_N!(ZbG> zoBpj=E<ESm-Mq2o!V})zUcBc*U6)4P=xl$a$Hua@!(A>?YxAA|(feE^@brmNRr>_~ zbenU=?ntfvk1udbcFc=$w)Rhq)Z4W-#wj~!g46K11<o7K&2qeh*G7JQzGrOJ=&2jc zjtf`2?k{>{{@=UWIR%;BB5%BOAT}YB)V%nD=d6BZ)*tV7Y0jX7sR_gQ!7KC(_ZE8d zeIZ|A(7E&A?AYPaTVKOSg;#@i<e@`dVw|O8iXy?112NqHu5%uLt3#F1(fby+xISEd zbu*5fdn@Jt-wOYex5BgUX2ygsx_bQn=JBt&7bcoJ)y4Nhr{@RN>_BAn2cOx_wCuLd zqT_+^zje#|7u^fPoVI_z$^AFn3&Vf9wf}4Hg_##_`>Fqod*L_7yT?_H{*v;`vWVY= z?Zul*7MCn?(x%P$FS#Z<ToWUoeO|+^`S;uEAFhi(eKFMeG&lI?D`RBFsg|)$&-^&& zlz*(#{F^@iysKkm-I+c1Z}-OB7$@bs2mf$W{J+0D&iH<p?v9aTKXkR7h96Xq4Ed?R zc4Fptjr9Myk{!ABmpJ>+H^@7<J$@6rZD5=|Gp1qjw&G32k&*@cmT%*Sf0KuwblnHE zZoB#Y-r?jenY40D8M}$DhTFJUzGFKZmX_ZZDre7&*~ay<w4LC7e-rO+=Q^<IKXBPx z`BWu)a`diRrLsLFGU%o%_R2X4b^-U!N-N7%v1>V>+&psSl~wF`XVxtl+s;<8=l`Ex nMdM2A7P^gF=rY^6Z`Ih9cP81@otV4c|DSLZz52iPCi=esLB{R2 diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index be3776227..c95739dce 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -1,10 +1,11 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: +# Alex Salikov <Salikvo57@gmail.com>, 2019 # Dmitry Shachnev <mitya57@gmail.com>, 2013 -# ferm32 <ferm32@gmail.com>, 2014,2016 +# ferm32 <ferm32@gmail.com>, 2014,2016,2019 # FIRST AUTHOR <EMAIL@ADDRESS>, 2013 # Konstantin Molchanov <moigagoo@live.com>, 2016 # PyHedgehog <pywebmail@list.ru>, 2015,2017 @@ -12,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" "MIME-Version: 1.0\n" @@ -23,21 +24,21 @@ msgstr "" "Language: ru\n" "Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" +msgstr "в конфигурационной папке нет файла conf.py file (%s)" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -50,95 +51,83 @@ msgid "" msgstr "Проект требует версию Sphinx не ниже v%s и не может быть построен текущей версией." #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "готово" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " -msgstr "загрузка настроек" +#: sphinx/application.py:298 +msgid "loading pickled environment" +msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "ошибка: %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "Сборщик не указан, по умолчанию используется html" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "успешно" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "с ошибками" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "сборка завершена %s." -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -146,7 +135,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -154,894 +143,777 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "Отсутствует ключ конфигурации %s" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "Ключ конфигурации %r уже существует" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" -msgstr "" +msgstr "Файл конфигурации (или один из импортированных модулей) вызвал sys.exit()" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" "\n" "%s" -msgstr "" +msgstr "В вашем файле конфигурации программная ошибка:\n\n%s" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "Раздел %s" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "Рис. %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "Таблица %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Список %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "Событие %r уже существует" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "Неизвестное событие: %s" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Отсутствует аттрибут \"name\" у класса сборщика %s." -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Сборщик %r уже существует (в модуле %s)." -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Сборщик %s не зарегистрирован явно или через ресурсы пакетов." -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "Сборщик %s не зарегистрирован." -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "Изначальное исключение:\n" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "Не могу загрузить модуль расширения %s" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "расширение %r не определяет функцию setup(); это действительно модуль расширения Sphinx?" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Предложения об улучшениях Python; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" -msgstr "" +msgstr "Не получается считать файл изображение %r: скопируйте его" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" -msgstr "" +msgstr "Не получается скопировать файл изображения %r: %s" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" +msgstr "Не получается записать файл изображения %r: %s" + +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" -msgstr "" - -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." -msgstr "" +msgstr "записывается %s файл..." -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Встроенные функции" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Модуль" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Алфавитный указатель" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "указатель" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "вперёд" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "назад" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" -msgstr "Документация %s %s" +msgstr "документация %s %s" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1055,188 +927,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (в " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Алфавитный указатель" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Выпуск" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1255,253 +1149,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" -msgstr "" +msgstr "Не получается найти файлы %r" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" -msgstr "" +msgstr "Невозможно совмещать ключ -a и названия файлов" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" -msgstr "" +msgstr "Не получается открыть файл с предупреждениями %r:%s " -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1509,11 +1397,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1521,25 +1409,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1549,15 +1437,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" -msgstr "" +msgstr "Версия проекта" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" -msgstr "" +msgstr "Релиз проекта" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1568,22 +1456,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" -msgstr "" +msgstr "Язык проекта" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1592,36 +1480,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1629,29 +1517,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." -msgstr "" +msgstr "Создание файла %s." -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." -msgstr "" +msgstr "Файл %s уже существует, пропускаем." -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1659,26 +1547,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1688,214 +1576,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" -msgstr "" +msgstr "имя проекта" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" -msgstr "" +msgstr "имена авторов" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" -msgstr "" +msgstr "версия проекта" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" -msgstr "" +msgstr "релиз проекта" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" -msgstr "" +msgstr "язык проекта" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" -msgstr "" +msgstr "использовать epub" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "Некорректная подпись: %s" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Автор раздела: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Автор модуля: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Автор кода:" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Автор: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Параметры" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Результат" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Тип результата" @@ -1924,12 +1812,12 @@ msgstr "%s (тип C)" msgid "%s (C variable)" msgstr "%s (переменная C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "функция" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "поле" @@ -1937,7 +1825,7 @@ msgstr "поле" msgid "macro" msgstr "макрос" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "тип" @@ -1945,297 +1833,262 @@ msgstr "тип" msgid "variable" msgstr "переменная" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Добавлено в версии %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Изменено в версии %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Не рекомендуется, начиная с версии %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "Параметры шаблона" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Бросает исключение" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (тип C++)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "%s (концепт C++)" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (поле C++)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (функция C++)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (класс C++)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (перечисляемый тип C++)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (функция-перечислитель C++)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "класс" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "концепт" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "перечисляемый тип" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "перечислитель" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (встроенная функция)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (метод %s)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (класс)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (глобальная переменная или константа)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (атрибут %s)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Аргументы" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "метод" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "данные" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "атрибут" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "модуль" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "повторяющаяся метка уравнения %s, также используется в %s" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "ключевое слово" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "оператор" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "объект" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "исключение" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "команда" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "базовая функция" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Переменные" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Исключение" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модуле %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (встроенная переменная)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (в модуле %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (встроенный класс)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (класс в %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (метод %s.%s)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (статический метод %s.%s)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (статический метод %s)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (метод класса %s.%s)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (метод класса %s)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (атрибут %s.%s)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Содержание модулей Python" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "модули" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Не рекомендуется" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "метод класса" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "статический метод" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "(использование не рекомендуется)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (директива)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (роль)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "директива" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "роль" @@ -2244,209 +2097,200 @@ msgstr "роль" msgid "environment variable; %s" msgstr "переменная окружения; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "Опция командной строки %s; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "элемент словаря" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "токен грамматики" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "текст ссылки" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "переменная окружения" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "опция программы" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" -msgstr "" +msgstr "документ" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Алфавитный указатель" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Состав модуля" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Поиск" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" -msgstr "" +msgstr "новая конфигурация" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" -msgstr "" +msgstr "конфигурация изменена" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "см. %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "также см. %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Символы" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2458,352 +2302,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[иллюстрация: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[иллюстрация]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Ссылка на это уравнение" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(в %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[исходный код]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "План" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "<<исходная запись>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "(<<Исходная запись>> находится в %s, строка %d.)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "исходный элемент" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[документация]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Код модуля" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Исходный код %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Обзор: исходный код модуля" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Все модули, в которых есть код</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2811,66 +2684,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr " Базовые классы: %s" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "псевдоним класса :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2885,113 +2777,113 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "Именованные аргументы" -#: sphinx/ext/napoleon/docstring.py:626 -msgid "Example" -msgstr "" - #: sphinx/ext/napoleon/docstring.py:627 +msgid "Example" +msgstr "Пример" + +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" -msgstr "" +msgstr "Примеры" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" -msgstr "" +msgstr "Заметки" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" -msgstr "" +msgstr "Другие параметры" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" -msgstr "" +msgstr "Предупрждения" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Внимание" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Осторожно" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Опасно" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Ошибка" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Подсказка" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Важно" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Примечание" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "См.также" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Совет" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Предупреждение" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "продолжение с предыдущей страницы" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Продолжается на следующей странице" #: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 @@ -3003,7 +2895,7 @@ msgstr "Поиск" msgid "Go" msgstr "Искать" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Исходный текст" @@ -3152,13 +3044,13 @@ msgstr "искать" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Результаты поиска" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3200,36 +3092,36 @@ msgstr "Изменения в API C" msgid "Other changes" msgstr "Другие изменения" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Ссылка на этот заголовок" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Ссылка на это определение" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Снять выделение" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Идёт поиск" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Подготовка поиска…" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Поиск завершён, найдено %s страниц, удовлетворяющих запросу." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", в" @@ -3246,76 +3138,89 @@ msgstr "Свернуть боковую панель" msgid "Contents" msgstr "Содержание" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3329,140 +3234,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Постоянная ссылка на таблицу" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Постоянная ссылка на код" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Постоянная ссылка на рисунок" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "Постоянная ссылка на оглавление" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Выпуск" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "страница" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Сноски" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Неизвестный ключ конфигурации: latex_elements[%r] игнорируется." -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[рисунок: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[рисунок]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.js b/sphinx/locale/si/LC_MESSAGES/sphinx.js index 45a6c894a..f2367cf3f 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "si", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\u0db8\u0dd9\u0db8 \u0dbd\u0dda\u0d9b\u0dab \u0d9c\u0dd0\u0db1", "Automatically generated list of changes in version %(version)s": "", "C API changes": "C API \u0dc0\u0dd9\u0db1\u0dc3\u0dca\u0d9a\u0db8\u0dca", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "\u0dc3\u0db8\u0dca\u0db4\u0dd6\u0dbb\u0dca\u0dab \u0db4\u0da7\u0dd4\u0db1", "Contents": "\u0d85\u0db1\u0dca\u0dad\u0dbb\u0dca\u0d9c\u0dad\u0dba", "Copyright": "", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "Full index on one page": "", "General Index": "", "Global Module Index": "", "Go": "\u0dba\u0db1\u0dca\u0db1", "Hide Search Matches": "", "Index": "", "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", "Library changes": "\u0db4\u0dd4\u0dc3\u0dca\u0dad\u0d9a\u0dcf\u0dbd \u0dc0\u0dd9\u0db1\u0dc3\u0dca\u0d9a\u0db8\u0dca", "Navigation": "\u0d9c\u0db8\u0db1\u0dca \u0d9a\u0dd2\u0dbb\u0dd3\u0db8", "Next topic": "\u0d8a\u0dc5\u0d9f \u0db8\u0dcf\u0dad\u0dd8\u0d9a\u0dcf\u0dc0", "Other changes": "\u0dc0\u0dd9\u0db1\u0dad\u0dca \u0dc0\u0dd9\u0db1\u0dc3\u0dca\u0d9a\u0db8\u0dca", "Overview": "", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "\u0dc3\u0dd9\u0dc0\u0dd4\u0db8 \u0dc3\u0dd6\u0daf\u0dcf\u0db1\u0db8\u0dca \u0d9a\u0dbb\u0db8\u0dd2\u0db1\u0dca....", "Previous topic": "\u0db4\u0dd9\u0dbb \u0db8\u0dcf\u0dad\u0dd8\u0d9a\u0dcf\u0dc0", "Quick search": "\u0d89\u0d9a\u0dca\u0db8\u0db1\u0dca \u0dc3\u0dd9\u0dc0\u0dd4\u0db8", "Search": "\u0dc3\u0ddc\u0dba\u0db1\u0dca\u0db1", "Search Page": "\u0dc3\u0dd9\u0dc0\u0dd4\u0db8\u0dca \u0db4\u0dd2\u0da7\u0dd4\u0dc0", "Search Results": "\u0dc3\u0dd9\u0dc0\u0dd4\u0db8\u0dca \u0db4\u0dca\u200d\u0dbb\u0dad\u0dd2\u0db5\u0dbd", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "\u0dc3\u0ddc\u0dba\u0db8\u0dd2\u0db1\u0dca...", "Show Source": "\u0db8\u0dd6\u0dbd\u0dba \u0db4\u0dd9\u0db1\u0dca\u0dc0\u0db1\u0dca\u0db1", "Table of Contents": "", "This Page": "\u0db8\u0dd9\u0db8 \u0db4\u0dd2\u0da7\u0dd4\u0dc0", "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": "\u0dc0\u0dd2\u0dc1\u0dcf\u0dbd \u0dc0\u0dd2\u0dba \u0dc4\u0dd0\u0d9a", "last updated": "\u0d85\u0dc0\u0dc3\u0db1\u0dca\u0dc0\u0dbb\u0da7 \u0dba\u0dcf\u0dc0\u0dad\u0dca\u0d9a\u0dcf\u0dbd \u0d9a\u0dbd", "lists all sections and subsections": "", "next chapter": "\u0d8a\u0dc5\u0d9f \u0db4\u0dbb\u0dd2\u0da0\u0dca\u0da1\u0dda\u0daf\u0dba", "previous chapter": "\u0db4\u0dd9\u0dbb \u0db4\u0dbb\u0dd2\u0da0\u0dca\u0da1\u0dda\u0daf\u0dba", "quick access to all modules": "", "search": "\u0dc3\u0ddc\u0dba\u0db1\u0dca\u0db1", "search this documentation": "", "the documentation for": ""}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "si", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\u0db8\u0dd9\u0db8 \u0dbd\u0dda\u0d9b\u0dab \u0d9c\u0dd0\u0db1", "Automatically generated list of changes in version %(version)s": "", "C API changes": "C API \u0dc0\u0dd9\u0db1\u0dc3\u0dca\u0d9a\u0db8\u0dca", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "\u0dc3\u0db8\u0dca\u0db4\u0dd6\u0dbb\u0dca\u0dab \u0db4\u0da7\u0dd4\u0db1", "Contents": "\u0d85\u0db1\u0dca\u0dad\u0dbb\u0dca\u0d9c\u0dad\u0dba", "Copyright": "", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "Full index on one page": "", "General Index": "", "Global Module Index": "", "Go": "\u0dba\u0db1\u0dca\u0db1", "Hide Search Matches": "", "Index": "", "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", "Library changes": "\u0db4\u0dd4\u0dc3\u0dca\u0dad\u0d9a\u0dcf\u0dbd \u0dc0\u0dd9\u0db1\u0dc3\u0dca\u0d9a\u0db8\u0dca", "Navigation": "\u0d9c\u0db8\u0db1\u0dca \u0d9a\u0dd2\u0dbb\u0dd3\u0db8", "Next topic": "\u0d8a\u0dc5\u0d9f \u0db8\u0dcf\u0dad\u0dd8\u0d9a\u0dcf\u0dc0", "Other changes": "\u0dc0\u0dd9\u0db1\u0dad\u0dca \u0dc0\u0dd9\u0db1\u0dc3\u0dca\u0d9a\u0db8\u0dca", "Overview": "", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "\u0dc3\u0dd9\u0dc0\u0dd4\u0db8 \u0dc3\u0dd6\u0daf\u0dcf\u0db1\u0db8\u0dca \u0d9a\u0dbb\u0db8\u0dd2\u0db1\u0dca....", "Previous topic": "\u0db4\u0dd9\u0dbb \u0db8\u0dcf\u0dad\u0dd8\u0d9a\u0dcf\u0dc0", "Quick search": "\u0d89\u0d9a\u0dca\u0db8\u0db1\u0dca \u0dc3\u0dd9\u0dc0\u0dd4\u0db8", "Search": "\u0dc3\u0ddc\u0dba\u0db1\u0dca\u0db1", "Search Page": "\u0dc3\u0dd9\u0dc0\u0dd4\u0db8\u0dca \u0db4\u0dd2\u0da7\u0dd4\u0dc0", "Search Results": "\u0dc3\u0dd9\u0dc0\u0dd4\u0db8\u0dca \u0db4\u0dca\u200d\u0dbb\u0dad\u0dd2\u0db5\u0dbd", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "\u0dc3\u0ddc\u0dba\u0db8\u0dd2\u0db1\u0dca...", "Show Source": "\u0db8\u0dd6\u0dbd\u0dba \u0db4\u0dd9\u0db1\u0dca\u0dc0\u0db1\u0dca\u0db1", "Table of Contents": "", "This Page": "\u0db8\u0dd9\u0db8 \u0db4\u0dd2\u0da7\u0dd4\u0dc0", "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": "\u0dc0\u0dd2\u0dc1\u0dcf\u0dbd \u0dc0\u0dd2\u0dba \u0dc4\u0dd0\u0d9a", "last updated": "\u0d85\u0dc0\u0dc3\u0db1\u0dca\u0dc0\u0dbb\u0da7 \u0dba\u0dcf\u0dc0\u0dad\u0dca\u0d9a\u0dcf\u0dbd \u0d9a\u0dbd", "lists all sections and subsections": "", "next chapter": "\u0d8a\u0dc5\u0d9f \u0db4\u0dbb\u0dd2\u0da0\u0dca\u0da1\u0dda\u0daf\u0dba", "previous chapter": "\u0db4\u0dd9\u0dbb \u0db4\u0dbb\u0dd2\u0da0\u0dca\u0da1\u0dda\u0daf\u0dba", "quick access to all modules": "", "search": "\u0dc3\u0ddc\u0dba\u0db1\u0dca\u0db1", "search this documentation": "", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index c2a7b0076ad809a827542eb10a224e427e634487..c88111a053224a4034ebf14ffd600a5cf423a5dc 100644 GIT binary patch delta 13947 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 Pul&<{I_4klY3ttrII8dx delta 16120 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 RU1$C`d{$le|Mau!KLAZ`N)-SA diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index 3f6dbfaa5..cdb5b2ac2 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" "MIME-Version: 1.0\n" @@ -19,21 +19,21 @@ msgstr "" "Language: si\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -46,95 +46,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -150,60 +138,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -211,833 +193,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "ඊළඟ" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "පෙර" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s ලේඛණය" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1051,188 +922,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "නිකුත් කිරීම" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1251,253 +1144,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1505,11 +1392,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1517,25 +1404,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1545,15 +1432,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1564,22 +1451,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1588,36 +1475,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1625,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1655,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1684,214 +1571,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "කේත ලේඛක:" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "ලේඛක:" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "පරාමිතීන්" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1920,12 +1807,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "ක්‍රියාව" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "සාමාජික" @@ -1933,7 +1820,7 @@ msgstr "සාමාජික" msgid "macro" msgstr "මැක්‍රෝ" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "වර්ගය" @@ -1941,297 +1828,262 @@ msgstr "වර්ගය" msgid "variable" msgstr "විචල්‍යය" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "%s වෙළුමේ අලුත්" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "%s වෙළුමේ වෙනස් කල" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "දත්ත" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "වස්තුව" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "විචල්‍ය" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "" @@ -2240,209 +2092,200 @@ msgstr "" msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "සෙවුම් පිටුව" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "%s බලන්න" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "%s ද බලන්න" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "සංකේත" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2454,352 +2297,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(%s හි%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[source]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "කිරීමට තිබෙන" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2807,66 +2679,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2881,106 +2772,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "දෝෂය" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "හැඟවීම" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "සටහන" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "මෙයද බලන්න" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "අනතුරු ඇඟවීම" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "" @@ -2999,7 +2890,7 @@ msgstr "සොයන්න" msgid "Go" msgstr "යන්න" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "මූලය පෙන්වන්න" @@ -3148,13 +3039,13 @@ msgstr "සොයන්න" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "සෙවුම් ප්‍රතිඵල" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3196,36 +3087,36 @@ msgstr "C API වෙනස්කම්" msgid "Other changes" msgstr "වෙනත් වෙනස්කම්" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "සොයමින්..." -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "සෙවුම සූදානම් කරමින්...." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3242,76 +3133,89 @@ msgstr "" msgid "Contents" msgstr "අන්තර්ගතය" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3325,140 +3229,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "නිකුත් කිරීම" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[image: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.js b/sphinx/locale/sk/LC_MESSAGES/sphinx.js index d64fd2fc2..f481c1bc7 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "sk", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", v ", "About these documents": "O dokument\u00e1cii", "Automatically generated list of changes in version %(version)s": "Automaticky generovan\u00fd zoznam zmien vo verzii %(version)s", "C API changes": "Zmeny API C", "Changes in Version %(version)s — %(docstitle)s": "Zmeny vo verzii %(version)s — %(docstitle)s", "Collapse sidebar": "Zbali\u0165 bo\u010dn\u00fd panel", "Complete Table of Contents": "Celkov\u00fd obsah", "Contents": "Obsah", "Copyright": "Autorsk\u00e9 pr\u00e1vo", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Vytvoren\u00e9 pomocou <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Rozbali\u0165 bo\u010dn\u00fd panel", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Tu m\u00f4\u017eete h\u013eada\u0165 v tejto dokument\u00e1cii. Zadajte h\u013eadan\u00e9 slov\u00e1\ndo pol\u00ed\u010dka ni\u017e\u0161ie a kliknite na \"h\u013eada\u0165\". Pam\u00e4tajte, \u017ee funkcia\nh\u013eadania bude automaticky h\u013eada\u0165 v\u0161etky slov\u00e1. Strany, ktor\u00e9\nobsahuj\u00fa len niektor\u00e9 zo slov, nebud\u00fa v zozname v\u00fdsledkov.", "Full index on one page": "Cel\u00fd index na jednej strane", "General Index": "V\u0161eobecn\u00fd index", "Global Module Index": "Celkov\u00fd index modulov", "Go": "OK", "Hide Search Matches": "Skry\u0165 v\u00fdsledky h\u013eadania", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Indexov\u00e9 str\u00e1nky po p\u00edsmen\u00e1ch", "Indices and tables:": "Indexy a tabu\u013eky", "Last updated on %(last_updated)s.": "Naposledy aktualizovan\u00e9 %(last_updated)s.", "Library changes": "Zmeny kni\u017enice", "Navigation": "Navig\u00e1cia", "Next topic": "\u010eal\u0161ia t\u00e9ma", "Other changes": "Ostatn\u00e9 zmeny", "Overview": "Preh\u013ead", "Permalink to this definition": "Trval\u00fd odkaz na t\u00fato defin\u00edciu", "Permalink to this headline": "Trval\u00fd odkaz na tento nadpis", "Please activate JavaScript to enable the search\n functionality.": "Pros\u00edm, na zapnutie funkcie h\u013eadania,aktivujte\nJavaScript .", "Preparing search...": "Pr\u00edprava h\u013eadania...", "Previous topic": "Predo\u0161l\u00e1 t\u00e9ma", "Quick search": "R\u00fdchle h\u013eadanie", "Search": "H\u013eada\u0165", "Search Page": "Str\u00e1nka h\u013eadania", "Search Results": "V\u00fdsledky h\u013eadania", "Search finished, found %s page(s) matching the search query.": "H\u013eadanie dokon\u010den\u00e9, n\u00e1jden\u00e9 %s strana(y), ktor\u00e9 vyhovuj\u00fa h\u013eadan\u00e9mu v\u00fdrazu.", "Search within %(docstitle)s": "H\u013eada\u0165 v %(docstitle)s", "Searching": "H\u013eadanie", "Show Source": "Zobrazi\u0165 zdroj", "Table of Contents": "", "This Page": "T\u00e1to str\u00e1nka", "Welcome! This is": "Vitajte! Toto je", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "V\u00e1\u0161mu h\u013eadaniu nezodpoved\u00e1 \u017eiadny dokument. Pros\u00edm, skontrolujte, \u017ee v\u0161etky zadan\u00e9 slov\u00e1 s\u00fa spr\u00e1vne nap\u00edsan\u00e9 a \u017ee ste zvolili vhodn\u00e9 kateg\u00f3rie.", "all functions, classes, terms": "v\u0161etky funkcie, triedy, term\u00edny", "can be huge": "m\u00f4\u017ee by\u0165 rozsiahle", "last updated": "posledn\u00e1 aktualiz\u00e1cia", "lists all sections and subsections": "zoznam v\u0161etk\u00fdch sekci\u00ed a podsekci\u00ed", "next chapter": "\u010fal\u0161ia kapitola", "previous chapter": "predo\u0161l\u00e1 kapitola", "quick access to all modules": "r\u00fdchly pr\u00edstup ku v\u0161etk\u00fdm modulom", "search": "h\u013eada\u0165", "search this documentation": "h\u013eada\u0165 v tejto dokument\u00e1cii", "the documentation for": "dokument\u00e1cia"}, "plural_expr": "(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3)"}); +Documentation.addTranslations({"locale": "sk", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", v ", "About these documents": "O dokument\u00e1cii", "Automatically generated list of changes in version %(version)s": "Automaticky generovan\u00fd zoznam zmien vo verzii %(version)s", "C API changes": "Zmeny API C", "Changes in Version %(version)s — %(docstitle)s": "Zmeny vo verzii %(version)s — %(docstitle)s", "Collapse sidebar": "Zbali\u0165 bo\u010dn\u00fd panel", "Complete Table of Contents": "Celkov\u00fd obsah", "Contents": "Obsah", "Copyright": "Autorsk\u00e9 pr\u00e1vo", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Vytvoren\u00e9 pomocou <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Rozbali\u0165 bo\u010dn\u00fd panel", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Tu m\u00f4\u017eete h\u013eada\u0165 v tejto dokument\u00e1cii. Zadajte h\u013eadan\u00e9 slov\u00e1\ndo pol\u00ed\u010dka ni\u017e\u0161ie a kliknite na \"h\u013eada\u0165\". Pam\u00e4tajte, \u017ee funkcia\nh\u013eadania bude automaticky h\u013eada\u0165 v\u0161etky slov\u00e1. Strany, ktor\u00e9\nobsahuj\u00fa len niektor\u00e9 zo slov, nebud\u00fa v zozname v\u00fdsledkov.", "Full index on one page": "Cel\u00fd index na jednej strane", "General Index": "V\u0161eobecn\u00fd index", "Global Module Index": "Celkov\u00fd index modulov", "Go": "OK", "Hide Search Matches": "Skry\u0165 v\u00fdsledky h\u013eadania", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Indexov\u00e9 str\u00e1nky po p\u00edsmen\u00e1ch", "Indices and tables:": "Indexy a tabu\u013eky", "Last updated on %(last_updated)s.": "Naposledy aktualizovan\u00e9 %(last_updated)s.", "Library changes": "Zmeny kni\u017enice", "Navigation": "Navig\u00e1cia", "Next topic": "\u010eal\u0161ia t\u00e9ma", "Other changes": "Ostatn\u00e9 zmeny", "Overview": "Preh\u013ead", "Permalink to this definition": "Trval\u00fd odkaz na t\u00fato defin\u00edciu", "Permalink to this headline": "Trval\u00fd odkaz na tento nadpis", "Please activate JavaScript to enable the search\n functionality.": "Pros\u00edm, na zapnutie funkcie h\u013eadania,aktivujte\nJavaScript .", "Preparing search...": "Pr\u00edprava h\u013eadania...", "Previous topic": "Predo\u0161l\u00e1 t\u00e9ma", "Quick search": "R\u00fdchle h\u013eadanie", "Search": "H\u013eada\u0165", "Search Page": "Str\u00e1nka h\u013eadania", "Search Results": "V\u00fdsledky h\u013eadania", "Search finished, found %s page(s) matching the search query.": "H\u013eadanie dokon\u010den\u00e9, n\u00e1jden\u00e9 %s strana(y), ktor\u00e9 vyhovuj\u00fa h\u013eadan\u00e9mu v\u00fdrazu.", "Search within %(docstitle)s": "H\u013eada\u0165 v %(docstitle)s", "Searching": "H\u013eadanie", "Show Source": "Zobrazi\u0165 zdroj", "Table of Contents": "", "This Page": "T\u00e1to str\u00e1nka", "Welcome! This is": "Vitajte! Toto je", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "V\u00e1\u0161mu h\u013eadaniu nezodpoved\u00e1 \u017eiadny dokument. Pros\u00edm, skontrolujte, \u017ee v\u0161etky zadan\u00e9 slov\u00e1 s\u00fa spr\u00e1vne nap\u00edsan\u00e9 a \u017ee ste zvolili vhodn\u00e9 kateg\u00f3rie.", "all functions, classes, terms": "v\u0161etky funkcie, triedy, term\u00edny", "can be huge": "m\u00f4\u017ee by\u0165 rozsiahle", "last updated": "posledn\u00e1 aktualiz\u00e1cia", "lists all sections and subsections": "zoznam v\u0161etk\u00fdch sekci\u00ed a podsekci\u00ed", "next chapter": "\u010fal\u0161ia kapitola", "previous chapter": "predo\u0161l\u00e1 kapitola", "quick access to all modules": "r\u00fdchly pr\u00edstup ku v\u0161etk\u00fdm modulom", "search": "h\u013eada\u0165", "search this documentation": "h\u013eada\u0165 v tejto dokument\u00e1cii", "the documentation for": "dokument\u00e1cia"}, "plural_expr": "(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3)"}); \ No newline at end of file diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 6a44b68c82117913844cfd5de005ba29cae37cc8..9a8a8c54698eeee4b48c33595d47082752dceddd 100644 GIT binary patch delta 14146 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 QHA*65U3H>=^Ww1nA1!`B^#A|> delta 16735 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 diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index db64f0cc5..a381c9496 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-09-09 14:36+0000\n" -"Last-Translator: Slavko <linux@slavino.sk>\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -21,21 +21,21 @@ msgstr "" "Language: sk\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n == 1 ? 0 : n % 1 == 0 && n >= 2 && n <= 4 ? 1 : n % 1 != 0 ? 2: 3);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "konfiguračný priečinok neobsahuje súbor conf.py (%s)" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "Nemožno nájsť zdrojový priečinok (%s)" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "Zdrojový a cieľový priečinok nemôžu byť rovnaké" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "Spúšťanie Sphinx v%s" @@ -48,95 +48,83 @@ msgid "" msgstr "Tento projekt vyžaduje aspoň Sphinx v%s a preto s touto verziou nemôže byť zostavený." #: sphinx/application.py:234 -msgid "making output directory..." -msgstr "vytváranie výstupného priečinka…" +msgid "making output directory" +msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "'setup' definovaný v conf.py nie je funkciou. Prosím, upravte jeho definíciu tak, aby to bola funkcia. Je to potrebné, aby sa conf.py mohol správať ako rozšírenie Sphinx." -#: sphinx/application.py:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "primary_domain %r nenájdená, ignorované." - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "načítanie prekladov [%s]…" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "hotovo" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " -msgstr "načítanie uloženého prostredia..." +#: sphinx/application.py:298 +msgid "loading pickled environment" +msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "zlyhalo: %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "Nebol zvolený builder, bude použitý predvolený: html" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "úspešné" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "dokončené sproblémami" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "zostavenie %s, %s upozornenie." -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "zostavenie %s." -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" -msgstr "počas nastavovania rozšírenia %s: trieda uzla %r už je zaregistrovaná, jej funkcie visitor* budú prepísané" +msgid "node class %r is already registered, its visitors will be overridden" +msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" -msgstr "počas nastavovania rozšírenia %s: direktíva %r už je registrovaná, bude prepísaná" +msgid "directive %r is already registered, it will be overridden" +msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" -msgstr "počas nastavovania rozšírenia %s: rola %r už je registrovaná, bude prepísaná" +msgid "role %r is already registered, it will be overridden" +msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -144,7 +132,7 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladá sa, že nie - prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -152,60 +140,54 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladáme, že nie je – prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "nemožno prepísať slovník nastavenia %r, ignorované (použite %r na nastavenie jednotlivých prvkov)" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "neplatný počet %r pre konfiguračnú hodnotu %r, ignorované" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "nemožno prepísať konfiguračné nastavenie %r s nepodporovaným typom, ignorované" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "neznáma konfiguračná hodnota %r v prepísaní, ignorované" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "Neznáma konfiguračná hodnota: %s" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "Konfiguračná hodnota %r už existuje" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" -msgstr "V konfiguračnom súbore je syntaktická chyba: %s" +msgid "There is a syntax error in your configuration file: %s\n" +msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "\nZmenili ste syntax z 2.x na 3.x?" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "Konfiguračný súbor (alebo jeden z modulov, ktoré importuje) volal sys.exit()" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -213,833 +195,722 @@ msgid "" "%s" msgstr "V konfiguračnom súbore je programová chyba:\n\n%s" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "Sekcia %s" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "Obr. %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "Tabuľka %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Výpis %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "primary_domain %r nenájdená, ignorované." + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "Udalosť %r už existuje" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "Neznáme meno udalosti %s" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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 "Tento projekt vyžaduje rozšírenie %s s verziou minimálne %s, a teda ho nemožno zostaviť s načítanou verziou (%s)." -#: sphinx/highlighting.py:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "Trieda builder %s nemá atribút „name”" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "Builder %r už existuje (v module %s)" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "Builder s menom %s nie je registrovaný ani dostupný cez vstupný bod" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "Builder s menom %s nie je registrovaný" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "doména %s už je zaregistrovaná" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "doména %s ešte nie je zaregistrovaná" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "source_parser pre %r už je registrovaný" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "Analyzátor pre %s nie je registrovaný" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "source_input pre %r už je registrované" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" -msgstr "source_input pre %s nie je regitrované" - -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "rozšírenie %r bolo zlúčené so Sphinx od verzie %s; toto rozšírenie je ignorované." -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "Pôvodná výnimka:\n" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "Nemožno importovať rozšírenie %s" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "rozšírenie %r nemá funkciu setup(); je to naozaj modul rozšírenia Sphinx?" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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 "Rozšírenie %s použité týmto projektom vyžaduje aspoň Sphinx v%s; takže ho nemožno zostaviť s touto verziou." -#: sphinx/registry.py:495 +#: sphinx/registry.py:496 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "rozšírenie %r vrátilo so svojej funkcie setup() nepodporovaný objekt; musí vrátiť None alebo slovník metadát" -#: sphinx/roles.py:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "téma %r nemá nastavenie „theme”" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "téma %r nemá nastavenie „inherit”" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "nebola nájdená téma s menom %r, dedená v %r" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "nastavenie %s.%s nenájdené v žiadnom z nastavení témy" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "Rozšírenie témy %r neodpovedá správne." - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "súbor %r v ceste témy nie je platný súbor ZIP alebo neobsahuje tému" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "sphinx_rtd_theme viac nie je nutnou závislosťou od verzie 1.4.0. Prosím, nainštalujte ho manuálne. pip install sphinx_rtd_theme)" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "nebola nájdená téma smenom %r (chýbajúci theme.conf?)" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "zostavenie [mo]: " -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "zápis výstupu…" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "všetky z %d súborov po" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "zostavenie [%s]" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Zabudované funkcie" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Úroveň modulu" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d. %b %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Všeobecný index" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "index" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "ďalší" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "predošlý" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "Dokumentácia %s %s" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1053,188 +924,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "(v" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Index" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Vydanie" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1253,253 +1146,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1507,11 +1394,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1519,25 +1406,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1547,15 +1434,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1566,22 +1453,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1590,36 +1477,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1627,29 +1514,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1657,26 +1544,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1686,214 +1573,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "Neplatný popis: %s" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "Nemožno použiť obe voľby „%s” a „%s”" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "Súbor na vloženie %r nebol nájdený alebo zlyhalo jeho čítanie" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "Kódovanie %r použité pri čítaní vloženého súboru %r vyzerá ako zlé, skúste zadať voľbu :encoding:" -#: sphinx/directives/code.py:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "Objekt s menom %r nebol nájdený vo vloženom súbore %r" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "Nemožno použiť „lineno-match” s rozdelenou množinou „lines”" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "Riadok %r: žiadne riadky z vloženého súboru %r" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Autor sekcie:" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Autor modulu:" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Autor kódu:" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Autor:" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametre" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Vracia" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Návratový typ" @@ -1922,12 +1809,12 @@ msgstr "%s (typ C)" msgid "%s (C variable)" msgstr "%s (premenná C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "funkcia" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "člen" @@ -1935,7 +1822,7 @@ msgstr "člen" msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "typ" @@ -1943,297 +1830,262 @@ msgstr "typ" msgid "variable" msgstr "premenná" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Nové vo verzii %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Zmenené vo verzii %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Zastarané od verzie %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "Parametre šablóny" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Vyvoláva" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (typ C++)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "%s (koncept C++)" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (člen C++)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (funkcia C++)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (trieda C++)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (enum C++)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (enumerátor C++)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "trieda" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "enumerátor" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (zabudovaná funkcia)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (metóda %s)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (trieda)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globálna premenná alebo konštanta)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribút %s)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Argumenty" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "metóda" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "dáta" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "atribút" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "duplicitná menovka vzorca %s, ďalší výskyt v %s" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "kľúč. slovo" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operátor" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "výnimka" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "príkaz" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "zabudovaná funkcia" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Premenné" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Vyzdvihuje" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v module %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (zabudovaná premenná)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (v module %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (zabudovaná trieda)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (trieda v %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (metóda %s.%s)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statická metóda %s.%s)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metóda %s)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (metóda triedy %s.%s)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metóda triedy %s)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atribút %s.%s)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Index modulov Python" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Zastarané" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "metóda triedy" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "statická metóda" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (zastarané)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (direktíva)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (rola)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "direktíva" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "rola" @@ -2242,209 +2094,200 @@ msgstr "rola" msgid "environment variable; %s" msgstr "premenná prostredia; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%s voľba príkazového riadka; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "termín glosára" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "jazykový token" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "menovka odkazu" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "premenná prostredia" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "voľba programu" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "dokument" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Index" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Index modulov" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Stránka hľadania" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "viď %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "viď aj %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Symboly" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2456,352 +2299,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "chýbajúce „+” alebo „-” vo voľbe „%s”." -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' nie je platná voľba." -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "„%s” nie je platná voľba pyversion" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Direktíva graphviz nemôže mať naraz argumenty content a filename" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "Externý súbor Graphviz %r nebol nájdený alebo zlyhalo jeho čítanie" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignorovaná direktíva „graphviz” bez obsahu." -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "príkaz dot %r nemožno spustiť (nutný kvôli výstupu graphviz), skontrolujte nastavenie graphviz_dot" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "dot skončil chybou:\n[stderr]\n%s\n[stdout]\n%s" +"%r" +msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "dot nevytvoril výstupný súbor:\n[stderr]\n%s\n[stdout]\n%s" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format musí byť „png” alebo „svg”, ale je %r" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[graf: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[graf]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "príkaz convert %r nemožno spustiť, skontrolujte nastavenie image_converter" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "convert skončil chybou:\n[stderr]\n%s\n[stdout]\n%s" +"%r" +msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Trvalý odkaz na tento vzorec" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(v %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[zdroj]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "ToDo" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "<<pôvodná položka>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "(<<original entry>> je umiestnená v %s, riadok %d.)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "pôvodná položka" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[dokumenty]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Kód modulu" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Zdrojový kód %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Prehľad: kód modulu" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Všetky moduly, pre ktoré je dostupný kód</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2809,66 +2681,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "Základ: %s" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "alias pre :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2883,106 +2774,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "Argumenty kľúčových slov" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Výstraha" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Upozornenie" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Nebezpečné" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Chyba" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Rada" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Dôležité" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Poznámka" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Viď aj" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Tip" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Varovanie" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "pokračovanie z predošlej strany" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Pokračovanie na ďalšej strane" @@ -3001,7 +2892,7 @@ msgstr "Hľadať" msgid "Go" msgstr "OK" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Zobraziť zdroj" @@ -3150,13 +3041,13 @@ msgstr "hľadať" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Výsledky hľadania" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3198,36 +3089,36 @@ msgstr "Zmeny API C" msgid "Other changes" msgstr "Ostatné zmeny" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Trvalý odkaz na tento nadpis" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Trvalý odkaz na túto definíciu" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Skryť výsledky hľadania" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Hľadanie" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Príprava hľadania..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Hľadanie dokončené, nájdené %s strana(y), ktoré vyhovujú hľadanému výrazu." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", v " @@ -3244,76 +3135,89 @@ msgstr "Zbaliť bočný panel" msgid "Contents" msgstr "Obsah" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "viac ako jeden cieľ krížového odkazu %r: môže byť %s" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "%s:%s cieľ odkazu nenájdený: %%(target)s" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "Cieľ odkazu %r nebol nájdený: %%(target)s" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "pri pridávaní tried direktív nemožno zadať dodatočné argumenty" @@ -3327,140 +3231,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Trvalý odkaz na túto tabuľku" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Trvalý odkaz na tento kód" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Trvalý odkaz na tento obrázok" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "Trvalý odkaz na tento obsah" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Vydanie" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "pokračuje na ďalšej strane" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "strana" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Poznámky pod čiarou" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Neznámy konfiguračný kľúč: latex_elements[%r] je ignorovaný." -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[obrázok: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[obrázok]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.js b/sphinx/locale/sl/LC_MESSAGES/sphinx.js index d58aa9fc9..5995c0968 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "sl", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "O dokumentih", "Automatically generated list of changes in version %(version)s": "Avtomatsko generiran seznam sprememb v verziji %(version)s", "C API changes": "C API spremembe", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "Popoln Seznam Vsebine", "Contents": "", "Copyright": "Vse pravice pridr\u017eane", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Narejeno s <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Tukaj lahko i\u0161\u010dete dokumente. Vnesite iskalni\n niz v polje spodaj in pritisnite \"i\u0161\u010di\". Spro\u017eeno iskanje\n bo iskalo po vseh besedah v iskalnem nizu. Strani, ki ne\n vsebujejo vseh besed ne bodo prikazane na seznamu rezultatov.", "Full index on one page": "Poln indeks na eni strani", "General Index": "Splo\u0161ni abecedni seznam", "Global Module Index": "Splo\u0161en seznam modulov", "Go": "Potrdi", "Hide Search Matches": "Skrij resultate iskanja", "Index": "Abecedni seznam", "Index – %(key)s": "Seznam – %(key)s", "Index pages by letter": "Indeksiraj strani po \u010drki", "Indices and tables:": "Kazalo in seznami:", "Last updated on %(last_updated)s.": "Zadnji\u010d posodobljeno %(last_updated)s.", "Library changes": "Spremembe knji\u017enice", "Navigation": "Navigacija", "Next topic": "Naslednja tema", "Other changes": "Ostale spremembe", "Overview": "Pregled", "Permalink to this definition": "Povezava na to definicijo", "Permalink to this headline": "Povezava na naslov", "Please activate JavaScript to enable the search\n functionality.": "Za pravilno delovanje Iskanja morete vklopiti\n JavaScript.", "Preparing search...": "", "Previous topic": "Prej\u0161nja tema", "Quick search": "Hitro iskanje", "Search": "I\u0161\u010di", "Search Page": "Iskalnik", "Search Results": "Rezultati Iskanja", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "I\u0161\u010di med %(docstitle)s", "Searching": "", "Show Source": "Prika\u017ei izvorno kodo", "Table of Contents": "", "This Page": "Trenutna stran", "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": "vse funkcije, razredi, izrazi", "can be huge": "lahko je veliko", "last updated": "", "lists all sections and subsections": "prikazi vse sekcije in podsekcije", "next chapter": "naslednje poglavje", "previous chapter": "prej\u0161nje poglavje", "quick access to all modules": "hiter dostop do vseh modulov", "search": "i\u0161\u010di", "search this documentation": "i\u0161\u010di po dokumentaciji", "the documentation for": ""}, "plural_expr": "(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)"}); +Documentation.addTranslations({"locale": "sl", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "O dokumentih", "Automatically generated list of changes in version %(version)s": "Avtomatsko generiran seznam sprememb v verziji %(version)s", "C API changes": "C API spremembe", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "Popoln Seznam Vsebine", "Contents": "", "Copyright": "Vse pravice pridr\u017eane", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Narejeno s <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Tukaj lahko i\u0161\u010dete dokumente. Vnesite iskalni\n niz v polje spodaj in pritisnite \"i\u0161\u010di\". Spro\u017eeno iskanje\n bo iskalo po vseh besedah v iskalnem nizu. Strani, ki ne\n vsebujejo vseh besed ne bodo prikazane na seznamu rezultatov.", "Full index on one page": "Poln indeks na eni strani", "General Index": "Splo\u0161ni abecedni seznam", "Global Module Index": "Splo\u0161en seznam modulov", "Go": "Potrdi", "Hide Search Matches": "Skrij resultate iskanja", "Index": "Abecedni seznam", "Index – %(key)s": "Seznam – %(key)s", "Index pages by letter": "Indeksiraj strani po \u010drki", "Indices and tables:": "Kazalo in seznami:", "Last updated on %(last_updated)s.": "Zadnji\u010d posodobljeno %(last_updated)s.", "Library changes": "Spremembe knji\u017enice", "Navigation": "Navigacija", "Next topic": "Naslednja tema", "Other changes": "Ostale spremembe", "Overview": "Pregled", "Permalink to this definition": "Povezava na to definicijo", "Permalink to this headline": "Povezava na naslov", "Please activate JavaScript to enable the search\n functionality.": "Za pravilno delovanje Iskanja morete vklopiti\n JavaScript.", "Preparing search...": "", "Previous topic": "Prej\u0161nja tema", "Quick search": "Hitro iskanje", "Search": "I\u0161\u010di", "Search Page": "Iskalnik", "Search Results": "Rezultati Iskanja", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "I\u0161\u010di med %(docstitle)s", "Searching": "", "Show Source": "Prika\u017ei izvorno kodo", "Table of Contents": "", "This Page": "Trenutna stran", "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": "vse funkcije, razredi, izrazi", "can be huge": "lahko je veliko", "last updated": "", "lists all sections and subsections": "prikazi vse sekcije in podsekcije", "next chapter": "naslednje poglavje", "previous chapter": "prej\u0161nje poglavje", "quick access to all modules": "hiter dostop do vseh modulov", "search": "i\u0161\u010di", "search this documentation": "i\u0161\u010di po dokumentaciji", "the documentation for": ""}, "plural_expr": "(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)"}); \ No newline at end of file diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index fd0ea7752fe51e2602a81d19b7350a9443f838e8..38e934f9354482b518841b2b2a80ecd6d527a7c7 100644 GIT binary patch delta 13955 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 delta 16156 zcmeI$cYKspzQ^%rlF$O7By<8i1OlO?(Fq_eNKrx;=}eMIGGv&EGZR8lMqI^$4MqfH z6-2$FVq@$DY`EeIwp9^91uHfbR#8N~pYNQ<1>Jq!vVYur_w~B_a($oklv94^cg{R! z=Z2(b?oNulo0_!7;(t#iSXMfwH&^Y{|I&L{);g+fu{%D5UGNaDa9LJzwq;$*yQ^|6 z>r1X@<Xcutt~c&!S)Wty+RL&=Qg7DVvRdHGK9;qF>!H4u6|}5~^%Vsl7u@}L0QX=n z4}Of7Q*S=Nvc}>jd=Wp#8Te3v8BmjfmX$(%FxJAe94BHo>eFyAUWB9ZDI9|J1~FLr zx5iMY#|0nO#f6xO5mW=Wp&EV#)9_7ff}deiJc*643B5GH4yXa;V0|2fx<48l;<?xu z%Q1!itwj{n@CsDJH=thFst521)Qc~oo_ia$N?)QHN;<>bZ-zGYPN;T9q6RPxHNg^` zj0<oWK8+DIlt?^eYgB{zsHGT=t#Aga<1n_y%djQhf|~IY&i!4OP5l7sz4}8fi`BI< zu|3YhHh4aE!gWK5|DzP1<U%j3VOSdRU04Sn#(B5{OVJ)~mf{j5&#aY>PvR)*M=%xp zjj*gd9E<93DHh{eY=$RL18ZCuF&9P^n$XQgg=(4OWvI}vM&-uMNYt!5o%@F|i~2Fg z^pTd;j`~O>2v#ZTy<1UBc{g^z$FV;ih)~F+(ELm@<3Xqq79u;wnt?W6gKFSD)KY9m zE!AtN=RZI#%@3$hHzgeExHoEP2csr71=Zgi$H>JL+H&DeWJg&qAUn@W9Bp14h#Ax; z;W(^DCD*f98{fcW+>Z+NCyt3@Op>)n{;}NrYaZT(O6~?@<4YN_(kT!<D+77gD#x?% zK2(yO#5&lFi*>Ora)wx)QIVL1TB0h{z#^#7u0jp`MaM6(BlX5-oA!ER2krks6g2ZW zsL-uP8z04bxDVCghiJJ7Ght9j+Z354>4_T1P)xunNPbz<oa-AL@5LmpKZ`l|0`{hV z>o^5<)MLE4(HCn`_n_9c(s4N|QfpBi?sxneXHrj^U{2C`SV?_1YH0^dG)_ZBs2Zo^ zr5I5*9;DC+6DL^~$F`M*$#^DeCKFMSS%ZFj5XoDs(`2*%=cC@Q!TNZqb3KaL)Hh)k z?m@MC95s-HDa2nFnocnfv`4M^XjFE)Q6UTB46H##<~3AK?8P4VJ~qXasph>5)Nbj8 zYHt`ScV=KSEJ5YM;;F=61Gte3TGK6<jyq7>X}{xf)QOmSj<Fl+gd2{-aTa=UBlg64 z(@fS6!rs(Zpd$FV<2%@b`i~K(kan(F)9%=i8$+-e7NH_hiVd(D73zyH6<0g;+fXxl z5If=9n1(;2-b-b{wO!kz+Uty(c%&Z%g>pD*?Z!Iwb5J9mgX(A*s)1FgP_IKhe>ZBt zk0L*W)(fa}pcd<;r0#&~s5`3TzNn=bh281jnm|DfosT+NFGF?sC)AAgp_1ii)Ib}P z>KZ^xR72UQ`+ZR}9*vB_nuWY#J%rt`$t?35GYE63S7Da+|0W7KT-b#Z@O!MnF|$ns z9z*SteW(NFBr3%1=a_S%5G$yAP#x|;Hk8$ME@uHQ#k24g)X|$h&$K%nXGXYCOyMTn zj+*goxB0|cj;i0`)OTYC>ffRU+@jcg*_?@esb7o=`Qx|&cVa2JOE`@1d0dF?xTvLE zgONlEf26PqH(?U?^q7wNVIS(#u@_#0&GA`mgZnT8zr(@Us?0=S8fqZhP)qg%*23pd z+x10ME*vi-{#_~5EjQWT6Khi+jrlkp)$wvXfDd9JMv3=u+>2LW8?R~j-%ta49o5be zRBnBTbueMRsVAfA&F2$;B~d#r6k!)!i3@QECRCaeY&dFPSD}*c7Ho@;ppx}X)Qk?} z06c;1u(!`dVlrwQ&PFZ8d{k~c6QR(9LW>2agF<B4tQu5D`%ve=5v+%`{3eMS;XLYn zPy@Lh)!_q}g0G{_iGz;cpbi{Y!0eV*Sf6^NJB7{^`e7%WgRSrnn2tB1I(Q6Q<6hLj zj$wPO%T^hNS*YxvkJ-2rHK1dtc2dtXM{zDHiAQ69?f>}{lpMEU1H1#ZHV<Jx+>Xlb z?{FYy2hGvyMb%?ifJbmNb_<y$2;nH|cVkcd)-fw=4y>8jTl;@L1!eU{)JPw4>aU}c z>@!pY+12L$Jk$&>KqcEo)Jz{og?Jw}#-o^uiR?K&*Bo`fC$_|~m_`3q35CIUCF;c& zu@Sz5dH6YMTc+2TrRjjV)CZ!Lq!PQ~3e-~GkII$3sHHoEHd>3!(se*BQD2O-pioMo zIi8RC7)3R>6Pw}Js9jQfu^CV!R7XRx36`UBVKHXmdej7-K}Ga6$0L|Yy}=SrOYFIX z_}@%n9T$3I!BR8R0IGp7PREOJAij$^*!p}E@-f(wdIhSZ<*0$&<Xqp5-KoEY8d%~5 zrk@^|M%{e@@oz(+nhRrb6)M#GQ6oKw$yjHZ30*3x!!D?Xhhi)Ap+dd_`{T7Z4tF7G zV6~thMd~V4PHe<sxGh3K9sCvB;V;-1+g)g~d@Aa}ji|Lgh+3+XsO(N#ZVs-Qs3p1+ z6}cEHQqQ6Wcoemi4K6b0Lxy7{kHTPXoPk~Nd{n4z#Xh(jbwDNl!DM|NYM_%)kvk7H zu&Yq*Y(YilV^s2{UTj(C;0VVXP?7ltCu#o=xx^eitFab09!9OrlURhWqRs_-g=sJw zHIq5m7Q>j1t5Lh+Uet`=Lk;u?RK!|dYLYe=J5WC-UMJj(DAeJ?MjVN^qdNQ&wF^#Q zKg_(${MyaN_S7##4PX;065E~o`>+=EpHPuWyxinYJItis3kTwKtWE#c8Wr%5n1Q#T zM)*9Qjh{OA`&?nZ2L@psuFu0ltUxW*-I$CYU=n_Xn#eKKw$?A3CfE~)<06cVqVPBc zjV$p>6S}V0k@^U<vD~R&hCQfnMa}qa)IstsW?{#x%mB_ty*~|geW_Ew6*bWpur9uQ z73<%S!d@=a$4^i%97Aoh^sCKG`k=N|0ooYC33weUVjrPGUH2OEUPl~HeUMYX5_Qns zhU)l9)JgmNHN;;tf6KY>6E>vY@LDs|w%CCBSk%C#p+a~ecEjgUq5TGxBOO<n$jroK z>NTkSei15Z*ErsVji^5zaUOUTJ9FVf)JW^EHZ$*tO{r(0209oO!V)aO`KWB)<6Qp~ z70Dym1%Jc>>=-qXn}b8CM^FQbJVikvc@wpb-osQpi5gI&>-dtzzNk>oL(TjTsQdTe zG<*Zk!0a_95<Xl;{Z_1p9j`YBPd2JP5PN9<kEEamgP4amqPEo@)QrEtwV2Ak<emJB zAX&rLnHl^AXHowQm6W5_o0*rO-d~B`@qV0x2e1zgx<Tgy>mQ`hiVLey+vYCR1NWgC z{1|It!Uoe&UCgH58+E@JwOyAvZo+2NpK<DYQ4v0Y+7*d^G!yQEb+!K|QBcTdVsrH4 z2)qO*;x0TF+uUf@JdBg6@5KSw<0f;Ul%bYtGpfCpQ0={kY4{zs!Q_p`&KS{}4yT|I zdmNWyI`vhkhVH=@_%tfH-bO9eN0^JvH<4&A{$7Brf;D`ziPSr&B&>4_zl_|^Mg6V# zp<B)0ibvf}{PoA;K3mKmi;M1Hdr>dAlMeC1yUZVp*KLjevDiwx+x&%N1!_RYP=70~ ze~<ZF@xXh{&-hM!k^7DBGasezpmLz^{boBCqn0{wf5fb9m<vk6B{&#w!_oKw4#6JV zO!oUw*?SFYP1mE6Y%}Wp7f`u!3>ESpQ2RV3W+K@ZRnJ46D?=krVH_rNVForu59+}s z*ch+C6x@Jmcn3DYCs7C1%cut5b?TpE8ub&XHE;NUX{Q_N`GII-WUO<e5;cJHQ8T<0 zC*vv{h99Alsmp`LGf)GYimkB>wTqUcI^KY7@m_3+yHOMP7*p}Dn63R^=OL49eXuV# zCSiNL95wPguoLdYNAWZ4g||Lzl5sEU*YHD}hhJbRj(fx`#Wu{R{)ppes2{y_8cWsw zFQt&jg&I_cTd)|PLxr@<V`gBzu^IJBv~f8qQkzk0z7-YPZKwe~jRm+1^<2{9<~O9F zV?S(1|JFPTO0ozlL_1JxzZ*N?0ql>zppvcs6DIlQU`y)d*c&fI8y`fq^CoI3K140m z_oxZfd(zk*BMNmN3d-iGXyY7gjuBLc*E>FeZK)qZ&CJ?v&ia9<=R=r*SKwH@8<nKr zqau>L!$cw#TToBmLHyfL=*@*;I047tYMh7rQIQz@l=;;ghlSLqptk3FJPQw@B9Zg7 z>1Y&cLgTRyo{Nga)u<)fj2hVePe)8>pXGu^e$ui1Gv=%wjv9Fxc0fOB=GS6-{4?74 zIqGM*!Lz2rG(19m47S1n&zS*EM$O!Zdj8@Fg%K21qDJ_#^S}qr13zL8*AsS{HO@!P ztPFKMfQryfs3o`uTjNeF#P?C#E%SNPet(=v{cQAMWDA8#3eEmx)^@q$MvNaYIGy`1 zV;AiDf;pfjVo&O2sB>dIY9hCyBJ(NwvF<MO#Z-d|{gaL_VSW0y-Z2I16XZa!j$syd zc+oUG7B!Hms0PYW_ZOnpd?PBmAHmwV3uoXfSPQ%V*(_l`_Mkohn_?L@*8X1_FYuq= zs0MGuI`|N3yKKjf_!q2)-=jjE@RC{ER;ZBoLWQ~rwZ?A8#i$%ug@f@f^x|RcN&nX5 z-6rc-p!V@As1VlLW6VS~IMQ)8Dp#tpAzqFe=sHv+?!gAQ1C<*up$4|!sUJa2=ogH1 zqR{bW)8J@Kp*{;6;(Szti!m9mK!tb>*2O<!65fUy@SUiRUPL{202S&FQP2N?TFQi1 z%-@QezC!#J@`+qfXy>Ck3S%RTV12v>yW<AbO#g&u-~m*J>93j@<)S*6j9NkuY5)sR z1GosA;7U{kZ+w;bE4%OKf|92GYvy;n40};ug}JyBm2}@?4z_#U{0GQ5tfGDsDgurE zV$O+N%%DCI72z=2xE?F;F;ssYBX5{*yk$6r3$Nf=nE9qTde1{OycV@@AI6(7?JYCo zZK!Serc?jfsb}mp0~w1Nun(1d8?Z0FjauSJ<F~m;p*@!3<2ViNeddqFi%@HM#PK^^ zMg1q#+F$dI>F7G_L;WFC<i5b>Xzw?_s{K$AnT#69LY$%f{{RK8eWL@$R;Yd35qn@) zY>ek%S1iY7xC%9}+c6*SL3R8-@{iT@U2_5+#o^TZy=VSbyad&5t@kys2z!u%8Y)61 z+f-EYxShJ!saK<t=mIRl6}S@Lz#-^9Xb!NOu_yJHQ4vTuWKPyrm`c4LYC>ai0R3At zDYU~isE!{%?cXO*OR)=;8y!9{BVUN>;1(>#H?b)W_|QbA2o=#%%tSxV!|Sjuev9fa z?IYr^{oa#;w%bt03D|=AJZyrCoa<L$XX-a#Cwv-P;m4Sc*2kuUw%D5LK-9p_!S+~* z!*C_C_SWu?iGMbQtWV5{&OtR)jV*CCcEG!^KkmlbSo>2Gp%kn`y*2j33{-Z{z=605 z$KY<K-r}(N`JRlUxqkIw;y-}GTU;20O+GWBo$h!gYMbo9-na*~riq`M{oEQ=ABe+o z5^8DIpeFJHY62f&8?5t%nP^8;goj5cC>ds;lA{v!;4<fd8&HwhhFSP$9E^WOz1Q<g zvveackNRXx!i!N$b2;h&y9Ko*uVXj-3Oi$@)mJ82hN6;VEZSIsTD!|J8*f65_$Abg zKSXW2A5jfvA2G>yF4m>)M-8Y3)zKDIF1?J(g@ee1B9`lGGlOoZkQF#i!%XU7^xzG6 zGg{x6rPz#`>08(c_v3W@0=4#M9yKT5MW}4Q9~H@0Q2iXn_S*lokC_{tu{$@0ph8`V zTJ!5L4R@iI<^YbxA5a4*{Hq!07)+)fKt*T?D&(tB?QTUa$zD_vAI1LkZ~Z`F9QORy z{IU2#Y(o7zOvSq2nQhYs)xm7kj4H4%UW&@{?KlkU9ycA2#pcvKsN_B$i|{$r5~Y1l z{1v)%3OU#VHNu(L4688(S30goCExAX1wTSXD&+@r_V>je)P1O|UymB-<EY5(Lq+5} zR69*h5PyYc{0WmROYt1)TOAXBG?AHsleoSGb@2R%8n}JZEKMG2W`)=QqnL-AP!o9- zmE50TI@bEh?23$^h<__COyYt@>O+NWB`Rw-qh_+pseg{@IQ3`qRhxn8umZIUs<9t# zLcO;amF*|6Ew=u}M4~@tP@fW^P>VthDl`{hQ(TA2{=0D?zK(jXk>!dfPcu{l>8Or| z;MwR#J$Daw#0OBxwigTWJ?w*>T&{R7MP^XY10Gbe`7j?NI1=wioovTZNmP*FiVy4} zROGgxI(i0e{Mf12Np!_?p*yzW`njlcB#g?L%}6pwtUpsw18+JvPB`_BNoHW9P}y39 z4RIRQ$1+qyL2QW|P}}hV?2nJ4jYn|;rqwbLD@8^6Qf#UHznQ{#E<7H;z&Ai`SNx>w zgbL*#RAh!@CQil1xD+*@D^Xd$0hJ3cpa%8^DuO?wa-*=0iEIFsBR69@{abHS(7yf- z)sd^NE1tDY9lN2DZYb*h1XOaCU<<qgHS^7=+_@b!&?it!dk9PLFzWen^_(Tgh(hV3 zp#8iE3vd(K_zn)mlc;SpIN2=4WYjjAg&NRe)PSzUt{6il=K<8rt@`GEcbrCb5}tu~ z)^|nXp*YNiWnAdcz>I7YD#W*AJ$wWe;%86|9zpHz)+w&|wmJ(nV=u17YaF{Ybj3eb zcc3OPv5_nOx8ibCQa;xxVrKq67t}!A#;*8*l!J4q&p>ULN3k6qL1lfzCN3)xvrzYY zpc*X3TDS~#uw9JG`um*w@1nNr3CHwEsu|fCs2fvI*}f39D|BBozQwt|2Nm+SPzTj# zI09X1uK3@IN8-8E*P_<^Yn+Tzn!4g2I$KcZ$syEIMcOqp4UR@NI1|$_h?>y~$IYlU z-Hr<7LC52$Tu5nd+UbT$vcag_nu=N~H|FAMw33I}<J^^=GOsUsyxX<i3caQF;y|@s zQsMTOd+cz9#||y_huw?pvS46=-7{yA9S+#NauyAVUDCa(VJ*8f;P*uHwpPa07Ho7y zN__56sH>G3va?2X?{1d_{3V{M@Tm(PfAxaj);vLXI1oH_t*qK#67~lCr>-pUEGYJz z_C$DbmFLvmYX9FJF0PIa9keQTbkKc?ox9mZfv~5*_6Pjg!zPayGsZ6Ul)0;YVSAz5 zSM9N@f`NtJ(%7Bb9&p8441YeMe<>67mixW_a=Xm!^?6FI5dojiT@}*xQctlv$b|(9 z-2PJ94BKUaYJX{gof(RKUifBG?AVw+38@}mmF@MHdKP(tP8+cuXFul3@VUdDMRQ97 zCDjW&{%|PAT^+6n@Q9kQvle*EE216tHk(%A4u*2<2|kaTKCAWrjGUaD40Y#LL})t{ z_P9&C(rwTh<7Xl)*6$k+d&54@@7vD)Z?zq(D(aq?=FfKfsw&*Yp0KyX?XwilXyfOK zYZp~(Iigk1ofDlr>CA*NXGdpG&WNs`v?CUo+#@O4=G@C-t*1|Q)ypg;Hx{_P{^+6^ zT~4cQnKAxUZQIN>uJ)c%<&@hFg@c5@hwbx*!gip{sfVKX&w4PWhwWKZ<tYirpN&<` zp6ZHJDBi_^K&9;s5gR)*D^MLS^#;3!a*{P#lGh!!YXbf*VY}F4yNihn{Veo)YHV-V zuJ-#pp-?>8tE$7gLL19+&-NAv-ND7Vh0b!tL!UcZeX(X*0=Lhnr(5$lJ0)nltEzm2 zD859+EUC{E-7#lJw*?-C9QOD_TDr_2!SICQsT1^sssgNhNgx<xM!v<-#d8<NzMlK3 zD`EzxO&6aWo6=K|+{s>0$+Yb3D!bF@@#9A3=J*1vNN$Kl_2ia%7V6nt1tP?=KEItE zvO7(fR+xJ#Aphx$Jj;&gFrV>sRVz-b)|5bLz?u?t`$ObeAQ*_v`pXhmbZ*J@5xd0g zXF4_7NhJ!TMm=`&_##`Q{{4bj({-l&gEy+YC6&t8|LmP$wcpM-uY@hh5Q%7{+~YS# zM}}SF4Ohgw&pEH6q)G$QJmPKsHZPP~mC6fmNMSv#xxck`S{9j@n2^L<PM+dq4^xf& zc7-_gNLsf)Y-gVu<C#qAKWOhaG12@+PZ@W%9nZ9Bfna5*B2abO)GESNr_boDUsFBa z%7SWkOvn?C=b}gXFxO<_Tuz8$Pgx-7v5Tv{zET};!^l^U>4yzN?#I3<>7AIwSz|{t z%fk~msOCC{<=ir#yPUOD;?|H9RU|BjS?O<%DULI;<kUNXDlL#QAbwosL{s+djNM$( z&6O7K-dz$;mnwI;hc2Vfdsip&GZDRcf2-KE`4_m%I3~V3E0*W$m6#Ux`m4z%wveCQ zWb3Wy!Gqogq2!sNa4F-Totzo1IyA_<w)Ie}L^Zne(6D%;-ygD5;+w_0goA@5i`Dz! zN!PZIIwhr?-asgte>mfJSLPkgYV7O+X2PMab|Z&}HeXPsAcn$$s+vHM^OtqkttSqz zjDA=%DEi}P)zPmORmc9YINue!<jXT%(UV`@8_l|4Lc{o${<SGPdgMqjw(RSI#Au)8 zcf{&ml$8*jesNlS8mo^ljn87~@kOz@mpqynoqhS|vHd5@UFmdWTP#AATPGz)%CA2u zTD$Eli}YHo!Il5!iavkU!q|CNuXD9^e$(Qe>x_su5vuf7X&TW+*IwS(>(}{5j__-y z1M1=QMAueVEPr*sr09n0Td&<v&(%LRXzh4cZ1cJ^TrNBM)Q1JpXV$l)bnlNNRjOqN z1DtyH<!z(0u5KDVxc>IFol{&*TaWRV1#&nX;}Np0nxL2EEVrkOAF;M;imSugoD^4! zwR2KjO<J7VG{4!t(cL#>q{KrO&wa+e_WTsrfXL}voQuD<9G{!MUTVCY(SDElVKMJ( z)0;gT|H;sqQIKpiW$W)=(04%mkod>XPY6cyH%#f%KRd5~cF%k}FTWtaclW#jd3nhb z#%E9REcEKc&n{%26xcoU^38L3c7ET2{64YAHq=k}?|o#=Y1nLuo3kb8@ddhCcGg1M z`rAiWbZx=bXyoprk)V4?&{KNqtLUHm@Tx5F&Uc?`<hiSS?$f@*!rrP=_fGrlT38;8 zo_|j?dUVk4*iZL<k?>#t_6jBa^PgSaA3mhdt_H5ySx-LeN{b(x@s&RH@s+Y;&%fTs zSG20=j@Z(tuSsZJL>8U?2^OvQocGk%*G<2Ec{SX*E%wRIUjP5)_0N8J&3*0be~mA% z)P(>4>Wcr4>1$CRaR1U@UD0n!eu|a9H6X!!x@>wo_&@yRHDv$wfB)qboA~Z^|B_!_ zU&iWwk^8qVu3!G~*VdPbd}$4JMc?@L$nU?lVoQ(rP2x*ySu}id!GGavYueA_oUg4S sSM=yF)Ahv_J@4v*hYMY<S^w;3*9W!q#q}^>Tr2+Xd~IFuzxuWH?|vO&IRF3v diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index d4d6e9da7..d429739b7 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" "MIME-Version: 1.0\n" @@ -18,21 +18,21 @@ msgstr "" "Language: sl\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -45,95 +45,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -141,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -149,60 +137,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -210,833 +192,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Vgrajeni deli" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Nivo modula" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Splošni abecedni seznam" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "abecedni seznam" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "naprej" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "nazaj" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1050,188 +921,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (v " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Abecedni seznam" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Izdaja" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1250,253 +1143,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1504,11 +1391,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1516,25 +1403,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1544,15 +1431,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1563,22 +1450,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1587,36 +1474,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1624,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1654,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1683,214 +1570,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Avtor sekcije: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Avtor modula: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Avtor: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Vrne" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Vrne tip" @@ -1919,12 +1806,12 @@ msgstr "%s (C tip)" msgid "%s (C variable)" msgstr "%s (C spremenljivka)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "član" @@ -1932,7 +1819,7 @@ msgstr "član" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "tip" @@ -1940,297 +1827,262 @@ msgstr "tip" msgid "variable" msgstr "" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Novo v verziji %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Spremenjeno v verziji %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Zastarelo od verzije %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ tip)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++ član)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++ funkcija)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++ razred)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "razred" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (vgrajene funkcije)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (razred)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "ključna beseda" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "izjema" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "izjava" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "vgrajene funkcije" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Sproži izjemo" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (vgrajene spremenljivke)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (vgrajen razred)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (razred v %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metoda)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statična metoda)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atribut)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Zastarelo" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (zastarelo)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "" @@ -2239,209 +2091,200 @@ msgstr "" msgid "environment variable; %s" msgstr "okoljska spremenljivka; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%scommand line parameter; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "okoljska spremenljivka" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Abecedni seznam" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Seznam modulov" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Iskalnik" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2453,352 +2296,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2806,66 +2678,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "vzdevek za :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2880,106 +2771,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Pozor" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Previdno" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Nevarno" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Napaka" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Nasvet" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Pomembno" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Opomba" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Poglej Tudi" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Nasvet" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Opozorilo" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "nadaljevanje iz prejšnje strani" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Nadaljevanje na naslednji strani" @@ -2998,7 +2889,7 @@ msgstr "Išči" msgid "Go" msgstr "Potrdi" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Prikaži izvorno kodo" @@ -3147,13 +3038,13 @@ msgstr "išči" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Rezultati Iskanja" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3195,36 +3086,36 @@ msgstr "C API spremembe" msgid "Other changes" msgstr "Ostale spremembe" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Povezava na naslov" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Povezava na to definicijo" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Skrij resultate iskanja" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3241,76 +3132,89 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3324,140 +3228,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Izdaja" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Opombe" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[slika]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.js b/sphinx/locale/sr/LC_MESSAGES/sphinx.js index 3b06aeee8..87d3ce968 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "sr", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(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 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "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": "", "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%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)"}); +Documentation.addTranslations({"locale": "sr", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(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 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "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": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0458\u0430", "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": "", "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": "\u043d\u0430\u0440\u0435\u0434\u043d\u0430 \u0433\u043b\u0430\u0432\u0430", "previous chapter": "\u043f\u0440\u0435\u0442\u0445\u043e\u0434\u043d\u0430 \u0433\u043b\u0430\u0432\u0430", "quick access to all modules": "", "search": "", "search this documentation": "", "the documentation for": ""}, "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)"}); \ No newline at end of file diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index dfc3f8be877eaaa8aa121e25f00c609025f623d1..4c6de511451ff6d8e9723e95daa76e01ff19aaec 100644 GIT binary patch delta 14447 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≫T4`&VO2Jc#4)Yi!H=tvgnjZ8HaznjmVXr%?w;Io_&N zHb!lybnJlLQ7<aR3iv4M1*@<XzV3Yf18N&rU1dzgn#4oGG3!5>MlCuPp{nvp)OL9Z zm65ld{;L>ATyC|wz9wc6C*xo&L=E^)*abhsbgcJ;S+bF+rJaX*&O=y7`~QzLG?N{u zk(Hs2)bpqdBi5KAtc}&mam*rPv2I&yGIk2}D_LtDhZUbcu-^Piw$4+$fd0s*&97t| zJ;SacuJSC;!@<vy|C!vE`@H#`>^aOM9{GZK;p?bh$$pF+1y=M+=KFmG9wq(^@5Yxm zn$%Z(*%Vhh)ROeT7T5>7Vi9)2E!Y<?yv+LFMx)IpbAU`mRpnzCh3ino^E~Q7$59Xd z1+{;F$6GLNv)PVKuo`g}jK+Q#gCkJeFWdRN(23`6CjWZS!*r+yHef97!m9Wt+ISN6 zqF+!Cs{D!>Xf4#|HV(xe*aII&J@2IBx2We<*kUqU3*(7X{4_LxzE~H>U>%%>n!z&X z^R?KDcq{70Pp~6i#YULA)zr`+Y(kuedvH0n!^~}F;C@sQF2)Jy571CbFJl|L=9nBb zUrOUJj{fH`75AWu^()N6$nB<Rb5R5GJMm7miQhsk=|#t%QJHn^2rn_`KaFm5#G@{} z3!7n<<6_jd+K#G~cTu%beWzL5`q+iI1$M@4RL!hK&Ga>_iN~-#eug&I+NJwh|4uYw z>FAAGf)S{cPDQ<FIo84_Py^hGdcmuXpP^35io4C3o`{`@C!p?Ig$eiy4#0Qt7PMKP zNZxO?rBNBXpi<k*aRRECW@A4*fD<rkuc`7})Y8pBec$`BFTReM81t&BrBSF%6rm<G z6FcAn^jD{`hlbYVIBH}cV`uypRTD}3%nU|3&c<8mUytDwV`JiDn1&Zo8Em%Sq`EIE zbGfJ&`_OXntDXJiUnzR&fLY7Kr~#co4l?U3X5g1je~W|WJD?k;(4T=?(<0Oho_G4U zqB8R-YVE&typGCL+#&Oxk%#=IF@=uNeBj3hc-rwQDkHTIn}0$zN6mBrR>NnpE$%=q z;RV!yf5b-E=}+cYvLmrK@f)aZ9sQcQKi*G62TF6)2OUuRyeBrpLac$SQ3KhGdeI^0 z^J7?t_%cRd%<JYzjzeW2ACu9Cdd>z^vG2eb^uIwv4|oq%92Ze3yMlUA^q)-?*T(w9 zDOeXX9docY@jS=X7*D(v^)-GBd*Tn6iyhuD8C#DOwcmP&hSsqD5tFjPj#E(&UheoJ zsx}UziuHZeK+mCObPbikDsP(9)<GRy&73$LZzayeCg{cR@Bbg8p&MVoNZf&X;679a zj$=hUg<7glo%kEn8ehhGSmQ6|{!~<|JE5-cj~eh@_y?SXy8aogMEzNZXy`>pQ7?WU zqwq^?iI-3hs&~}<N;U~660bzf@K@B#sva{n(iTgJd!YvYDr!Klp^Ekts+KNbc>iCc zF^Z0=Z<*qmj4gBnw!?3+H6|Q4ML7hu{bu1Hd<hHjS5!vw-Zs1BVN4+2j7oVK+IR&$ zSo;L)e>aUeC(J)OPvJ1)q>wqmW@94po2UnWi`u4D%gl`L!6f2GoOq`be}s+cFZYi5 z!J`T4NY27a_yn%OXWk+I*)+PpOMuU!Qg_FDW-Sk6dEz%Q0^dR#%TOoT52y?^d*AGm zF{rimp=Q1myW%#~M887~AoByWG{gNgD$p?&lW`)(;xcTGPhw3xhAPg_a1mZWUGF<- zUbq4E`97?Iuc6ldgcF~1;<KpQ`WgqK|1yomG%`+^uh$dUin!W`W}kM&8pMUDlW`%& z;nS#r?!+#51a&UBJ~A_`kI}?UaU`}w4R|rO#od^t{r@$MK6DH`ZC<njHRFw_R2@du zz%iVF-=hXH<YV)5K_SKvFGW@NTE|Uz3-NwbMowT;JdG;Ga(~r9#rh}F&;xs5T^x^^ z@k~_FEyW)A3f_(1qcYV0j2Xa8tWUfeb>B`@@g2j?coDV4O+PUiNk%PA7wqJx(St@u zoPp`M1^eMQPTcWR^R-%ped*tXO8FI3=2Aa1DV^@P5v$UF26ONt*1}<*n}JTjp2QEL zUu$uUMm+wGnn|6rCL<kC-wi{tA?9IiT#VrwaN?b)>)ys@cpkfA>^V~-15rye9#hea z5xC(T`PYk|rK2?-L@mK3)B#la3$tb&P_-}yHS-*7fE&=p1E|!0f?Ar(sDUPYX=a{= zZHNb>p1S~5W1GM9o9*yA9U9qjY>L05iYM{Bsew+YnT<rvWG*UG%N#dhBJol5;CJ{W zj<{gH+<rmrhE{(w_ov|~;ye5_wC2xX3Vw=8b+xa|3sSHVaVECJDX4+0#P)ayb^T9R z9cz4T&Vy!n7jZAV1J|NbegQSmi&z=`)xR;RYlvFIcGwd8qn2hmY5<R7CESLcaUTxA zpRfcoE}D$(LDj}FjKnjjfqj8m+N-Fgsqt-iSNW}E8mi6$)JztlcEdB+4^LwcOuS?s zFbTC(^HKK&u@4@_ff)ClSyDGvBfbYya3*TaU&I(Z7?$-vPD9mt8nveJ-<vO$j;K_R z!w&cWCgXl=j9;M!9Q}hyc}vs``=Fkeh05dxOvSfw1pekY>_;-l`>l;MhTv6fg8eU> z17j*Gb<<EYTa3~85$b{Gu{qZH$;_-LYFFHann)?O#sF$5UqcP}uc*vjN587Q`V}*y zG*mnWE8+s|jf+t)F2fdh20LM;pUt;i4^*bIu^ui#4dg{9K7t9vXR!iC{$gq%`WN<p z4LX|8p{neH+707T#k0ooDbxdAM5X>M?2q3%pQm3nKM(Xo4Lk>XVF7l)AgbE`hS~*} zF&?j8CI4+`RKI3s+8cWkFGdyB+o*xn`qkX<2fUSd1ll;$iPxZN;~>_<Z?F|cT{oHO zh#Js%)Igp=J?9m_bHTe#$92@q?cYolCt+3MRIGxxp;DcRb+8ya;}W#-4IG5$Q5oy} zyD7@isOwAdPF#x0y#Es#DzeKMg;6)m+TDVhd27^m8IBsrMAS@+P&Kh0HK3QVH@=Um zk$RRZoY~v46Y+FZX11U*@D|4Le(NNSnsj`H8i?gGaShb|ZGl{9rJ;&*0M^E0)LK4_ z?QuD3MsJ`7ej1fYS2<Vsr{yTrn&+YV@5d_o{$D~PiH_BnhKJF{>)0I|ly`-TY8=)l z&Or@m0ct=iP}^`nYUbyi{<sKN_$Qw(*p2?>s7!?LUW}^XGC%)6Ktm~Bj!N-*REjsF z9(WqH-y<Vk;ce9kHN)Y!5@$J9ujmT@N_HbEqg|t1;a|xP#c=9T6MYMH|7G;+gsNM~ z75<&<?bw$1S=6>Ug}R|?Wi!)`*pPTEDwVTQORxfU{TkGZ%CG`nL_PmU)NW{0#e6;h zwT*MDxcuS9VmdV9P0k0eVJ+e>P(^tiwOuMin~XF^^$$ZW#aPt!g_wa4;9xw48gPRc zSNP|KKVUj>DQd~K#dJ4o`!OAQ&^gpL`585n*s5k=$*8sOiMnn)stAj!2I?lS4W3Od zs2W(d^`5}&#dU%oZ9V8Jm*@+`ZeMM?v$H+f$#$a8o;cZEFv)2bdGfubo@|SYzAugs zY?u`je0%%i^1%bU(<1`!-5wY0u>YNiR(7%1F7mju?c9Q5Pm!;1a&E!&@%iq;!rX#M zqZ55&lkI+!3cN+0>@+*EDEODmcgqF04BYJs&ODM(K2SU?JMihSCj#q+AFPm@m*<@p zm_0lpICeyGL_u!BM2}tCHYGLL9vXhAUE=fj?1bEcY|r!r+wHUS-9FwpKHEFd&YEFo zdve?*dBrLApgfP;=h2+(gqtquY9~$fGQ@&nUs8ewJ;Pg4WYd+CQaB?ea459MUs71; zEh@HiyhXOB)SXx2E@lq)pc%!Jy#;n#+c%@2*gf6O_3^I4BF{v3u_xPh7i8Ph7`mP1 zAr0Y#k%@mAa{H9j6g$IPQ0n2iq?gw^k89^VF2x!;BR|WV=d*?d<3|s0Rm%3}yLkXf z_l`-rDOx|~&VP=Asqa4Sa`^(w$JKQu2R4q|Q90fAOfU3IWJtmM@xxsKw|h@u{;8?1 z%E7%^7hEyfUTav9yTF&{F7_4$XPu5M7i^fDT0XG&^Wwm;vxhRg#gpw~cUDQByJ(^} zuOz>~7oJ(#wA}3C$-Xq(TUeY+65K@|ds1$xry#}t`$yy>S1TN>cCNK6Fyf0P!6V+; zuHfABOUnnEe(i}Vsyy0Pob4?s9$PuFC@{XHE`QPk>q_DSdrNu*qD$j~X{DQ8f$nSD z2S1<IBH|yekDs0J4?XjKXcl;AcBeqxj}Hct=TwTzwugB$Y}U1C21{2`kewD7JEwbp zpEuvbTKP&SnrXRAFWlkHv5P0u&x#a~iCm8_+0H5{R_6?RGF3dyTQo(h?#`pO3aEfm zk1s8-Y|hVt=Pt)Z4RBBK<mBdgg7fa}<mzMPxM^o=Rde&hrIYCU*L~isdsr71^rnvr z-9?mWftw*F`hr{i16-~0JmF9SbZ6yxY#RSmuXZ!1xYO)>Z+1zZ#}~Xdx4bJ*dwx#6 z+)0!3_!F*F^C7oods0$T?BJ~VUzAV!`=<Q+q%~1?kM=fu(r35ora_Fozh$|b_wY@Z z=M;JKxrAp1{14U-tbcG;u)#xZB38a#-IWpOzvN=D+ap=78Wwwkc`12p$&!5Sw7|Zl z1A{Tko^w_4vD+qk^b9-j(sKXGHZ@%Bce$fnt6h;(atjMR*?}{Ghk}b93stD$nLaVE zgahgCkKy15Y*}41FzAUU$rFo<JlbhFo+1w?gpacS*H>G`UR@V(Z)>#c#aP#3SIxp~ zvza{wrMX4k0u3(B4qjc;-4$rL?uEdyb@f+f)^x?L99Pqo7|35=E3kTfYBgU;e!g2( z#VTv^y*G@E>C!5-ZL2n&?bJ4D9ohz7+)z(F?OL^IZ@1}~)~;i)Y(t}R|9J;($MWq% zYePFi`$Ajn(C*N#(6-QlvbmxCp#!0y9oin+O|T=hw`_j6dw1EYvIV*}5WDYh{~0Ir z&T=(){TAN3I}{9UDZ8H+uHx~oVOjs?(cQRwY-l~>+pD3Kt<m6v2Tnw|{QqwcbSt## zrgZJLLqqv<AhbQ4FeUCmvPjpzkwcqLci7~TM3*hFLtD9HKG!q-9o(~@r0fmt4%`T3 z{&#<C1mZ{6hz>o)fVMKUS3_HZQ_9-^mwb&xyZoVb)WVjsRd(ngi98U_#$Gz++a!BS z*+O!(Ls!`RwSy~msbI*T^9^3gX+tT!s>JJpHDwEuZ_4yeQeHMsc~_|ixqnM|eUx~* z_Lnu8#|yUT{_tno2K)ZStJD#wpMC#-%lF-_<#R$$FoOMM_c2<^MuXIzQJ<#p@75X< zXSUq3lS`c+OLPm#CDF?3UJ}_X(bqgBu&%iCfBdU;N%`ndApEEUB>zC*<?mPj!#C^y zg74bER)0pEj#O4>Ug#j|95@iX=8yQF_Z9qsD_$oNHRGH~Hm5WvfOcT;#-cmR{mXCY z^#9v8wE9YOy(K;?yrp-P%`aO>y@rptn;y5aTBNJ}f9#ultE+10>6?=rn7Sfi*ZOGJ R<?{dEe8tE9!&kiZe*nw+U`PM} delta 16115 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 diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index 4b7109c8a..c40bdd4ef 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -1,14 +1,15 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: +# Risto Pejasinovic <risto.pejasinovic@gmail.com>, 2019 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" "MIME-Version: 1.0\n" @@ -18,122 +19,110 @@ msgstr "" "Language: sr\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" -msgstr "" +msgstr "Конфигурациони директоријум не садржи conf.py датотеку (%s)." -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" -msgstr "" +msgstr "Нема изворног директоријума (%s)" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" -msgstr "" +msgstr "Изворни и одредишни директоријум не могу бити једнаки" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" -msgstr "" +msgstr "Покрећем Sphinx v%s" #: sphinx/application.py:214 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." -msgstr "" +msgstr "Овај пројекат захтева верзију Sphinx v%s или већу, не може се изградити инсталираном верзијом." #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" -msgstr "" +msgstr "Готово" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" -msgstr "" +msgstr "Неуспешно: %s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" -msgstr "" +msgstr "Успешно" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -141,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -149,60 +138,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -210,833 +193,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" -msgstr "" +msgstr "Табела %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1050,188 +922,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1250,253 +1144,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1504,11 +1392,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1516,25 +1404,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1544,15 +1432,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1563,22 +1451,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1587,36 +1475,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1624,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1654,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1683,214 +1571,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1919,12 +1807,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "" @@ -1932,7 +1820,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "" @@ -1940,297 +1828,262 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "" @@ -2239,209 +2092,200 @@ msgstr "" msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2453,352 +2297,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2806,66 +2679,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2880,106 +2772,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "" @@ -2998,7 +2890,7 @@ msgstr "" msgid "Go" msgstr "" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "" @@ -3068,7 +2960,7 @@ msgstr "" #: sphinx/themes/basic/layout.html:31 msgid "Navigation" -msgstr "" +msgstr "Навигација" #: sphinx/themes/basic/layout.html:138 #, python-format @@ -3116,7 +3008,7 @@ msgstr "" #: sphinx/themes/basic/relations.html:13 msgid "previous chapter" -msgstr "" +msgstr "претходна глава" #: sphinx/themes/basic/relations.html:16 msgid "Next topic" @@ -3124,7 +3016,7 @@ msgstr "" #: sphinx/themes/basic/relations.html:18 msgid "next chapter" -msgstr "" +msgstr "наредна глава" #: sphinx/themes/basic/search.html:30 msgid "" @@ -3147,13 +3039,13 @@ msgstr "" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3195,36 +3087,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3241,76 +3133,89 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3324,140 +3229,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.js b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.js index 3b06aeee8..755d53455 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "sr", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(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 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "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": "", "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%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)"}); +Documentation.addTranslations({"locale": "sr", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(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 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "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": "", "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%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)"}); \ No newline at end of file diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index 0168c0c645e2595567f9f81e856fd9af1b041072..ecb52efd530f06bf198f0a693118807488604947 100644 GIT binary patch delta 13923 zcmeI$d0bW1`p5Bo6ckhxaReN;C~7hY&O$hwnmNz22hUMR;1CB;96D-gnGNd6Da#>C zOVhHGWtM5(%F?vb(gw5AO3S=f_oij0zt5MoZ?{+X-`}6z*RA(@*4}#!&l(_BY!6$p zHY{)|CTxYp|F&1KtOj^z9Yz2B-}kL7Yc=5oY=MiC_{U{gJ8&uAv`^s~^>4PetoqbH zmu6Y#i4Uh+R&U}L+gMgTyx!KbW>H_Sy=4{Qa?G==fEC_>N-B!5H80+Si;4Giw5*%4 zS0~Flh!5ac9NXEl=-b+bQTQc><3(hQ*3X!Qc7|oqgf$WS;!5m_pJM_x&a|vZ`nP&e zh@j#YOvDkWhGwH0-i)>IDXfY6u{IvX8h93~;bqi-!fv#zsu+WM-pGklQSD@4T^xwf z^ly17RL4@ZaUrUs&8UWUV<f)rJU@cNh%aJy?8$W1;6lfTF`77p%IxbHiziV7xP)<7 zr3?A5Pa%<lX3z!oLVsjgtx2d4??YC_+JcSo6vpE<Y=&{<^+oK8ZShysz*D+eR%Psr zld(H0qmLrn!+N3{`B&i+D*9kGrW1q1k$q%MLv^$ov++69{;b!-3@8N^d(g&Ns7$SO zd>ob8r%_A%3NmKvfb+ak&wypMq$0Yfu`@Oz&PFC-%}0IsDr#*HViWub*^ky0)ShYE z%gl5PYCvvmhcnQ|r%>M?MlH>!s3rJ5K%p^(%DqiTEl_KjhMGwqOvE9MGq54?BgjU! zUPA5iOQ`QsZ!){PHx3}qLG7jIu@b(8Rq$O@W&@u%g-b|wtr*s!9}dUKxDK_8uVXmY z=*yABI>`U6vHYt)ZbI#)i&z;WXe0uok)v+KqW0Dx)RIg=1{Sc2C@7V8qV~dGOu&nd zF*jRQQ{wihhR2|mz>Uhl9jFYxf;OJQNW6~fI8vi?v7D$3b-TqZ#VD+$^Y5ilfd^&C za$0lBA8^hwjQ9gg#g9>I8bMywK^CgM4=OXIsI{NtxEz(KCr~rL;OH7?S>uT7U_<)1 zZc_mtK&{nw9E1B%GmRZ&mLL<kO|AY|1#d?Ucrhvihp_-JAltzjKiC}WN3jO+)2L&) zCzffOn}qR<j64KWS3MhzsxiElwYAB9@ud8o{+!Lhgwm4RO|8Ly*m$mF4Bw|B=V z;-RSTC!_X8*--MYlr5k_Gg^&WqfOWV_n?l+3CEvMH(Jy%V<PH;%EIP23OU-=?U;+N zVjD~vZZ`Eq)Dk{{%GhVa$-fG}Q=x_%jxe^zTEqjeI=ZnA7Gg9m!fLn*mD<NJ2A^}{ z1E@`V0-ND)sP^oU=DT)SiMV@!f*S0L%D@=ZF883;D$j{$q6Rt-)zJo210k%9dr<Gc ziyH8!$d3o>JJdOEG0JS(o~V8Xp!yArrl7UR#Uw03HM9<WxD|C}#*H=|k3r2W4{PF5 zEX7Ar1CM3rYCug;?RG%D*A<n4A;|wNFaKii1gw1&T2T>4)E0YVYb--;x+gIek0Sfj za&dMFaVRPy|3ICRGpKtbe7s3{OSFjxpce~}Cae!|Ahw>sC8zU$JB9vK9K%FxJkd1V z8)?(>qGtRmw!p8QIBJrK(@_H$gIPEmJK~F|d*Vl2i@%`<S50Q4;#DjSP#EquYk3GO z5+6k!uj6Rrr`R5^qB7Jb+nkcA7*9MGHS;y70lbWw=@rxfMockFGYNG}r=gB%J_fW2 z9-?pqZo@kGA!>7-$9wQ6)CY4JzB=5Bdj2MAuN+3L{l`xHr4wI3?SY?BDZhqGZ~*Jk zRquPrzb>HIspg#aL2aH{*bpB;?e^`cf$qo7_&&yA)oEsi%~8iO4VBs~)PPr@&i`vj zGOVAm501_;{cOk~|C;eGDwL{2s6Fr@PR8F*0~w!delM7Xy2;j{&ixk07f`$W04gIN zV{`l(n_;zE%|(@tYOg<P0=WSSn(>|37}sETd=a&Vzo9ZTa=ID7o!EeQ6Y9JD*aSbs zPIwu$#%XybBOS0ZaZl8y?2jGr4$Q>B9t!;^TyiS9<(nU?bFeS<FQ8JcpDapU1}dcs z9Cu-L;&a#zFJoOy=JL=$dtwiqjQVa9#^Q1FJYfAmK`DviP}j#KY=phA9!^2+f!R)c zKkB{B*b?_)7M{asY<`<rnvR%8+y}#OCaUAP*cw-1oX-CN3azL(jasv)BC{9Tp=RC% zHNcr@<4RQOUqCI*JE(zPLCrkIZ+?-v0oCp})E--e5%@4_V2@*S`nQf#sENO$_CSqd zGqcuMgLpJ5l{t<JQJeHp<Rn>d;YLg?F-!0sYR2K*%lf_wj=?z8nipd#K7#?J`g02E z;2LTG@iWZNf=pD3r(ru>ihBPItc72p?t@>D>))z9)BGn}K578FQ3KtJRqzbf#(!dc ztXM|=lPEMOGi%cqHGpi4#0A(1@5KT51~NIT)-02;#TY}p7AxTn)WCLO9KMb9@GI1* zx{4Y|m)T|_{brN@4pih&p;NFP_2Rdv29oBOwYmxG63;-Lg8OkG9!ITd;#`yJR8(ra zpw>Jeqwo&LWtc_09vk3i0SYZBTtTHe;dXP^_s3-7`Pc+^U?Y4F<MASDfK{1*8q`Ko zCOxRlwG>C<tB&>OnGE`HDD`_$7gHd5zPT{kqf(cNn%N+%hU-ubZo?b!Bx+`r7MN4f z05y{g)Ug_cv3M71z#CDS+mAY3C$I@#GjYJO?=Ux1AMDM8L8y*bppMU@*bxt70*2pd zGSw25i6Ph!^PPAJ>b)%(jt5bD;62plJBQkozhkD(f769#^GtG_ifSMqHPWSc3qI>S zzm83bD=jhuZ-u>x+hBW~f!bu-F${O3CbSpR@gVlbtJs77tsZxoO|=jci4UVv_%BpP zQFoh*Cmj_J#bhi+WndHPBHD*7@d9c<br+j~j6;1l74`fcCk|nt5)~&XMBpi`j%Tqd zUP66P;U4E|MjgjqXyaTQjO$PtyNKG9F-y$*DL9DuCRFNIqW0J}RDb)HkpE~3Z&9I{ ze~daV*HHtBy4TFK0V;+4Py-r?N?`z7;Tx#b{(#ym3HO=IjKwO%rKo#iK5Fwmh#JV& z`^dj4UZFx)<p<7-Utx3N%c#xM=zg=79Z)x6CTd27sDUp;WpW!%!DmrRSoZ-_pN3V5 zJ7Np$i5WOOK*6T48N1;Dtc(#$&9RC`jXVW4pl)~rPD9OnnN$BVjv_vTT`+T*$;2$= zs<58LNK9XDGMtHu1N|r@Qy7M7a2}@NHq@~?iJIXRT!nVfxEpEH8vLNi;AtFB{0nMR zj#y!4dK>EdHJF6^a3Y?^HuP`ZywV(-xv12HP&54$b%9i%SEaHE>NsU$d+dhls1(C- zIjV!zn1Zi6&woN4<Lax8X;_DNXnD-~=TN9i#XYE9xe;|-wxTj}#Hs%kV~8uPG4I#G zp2W#G1Pf6EehoY0mzat151Az!g<9JAsCE`(eVzY@DQG6UP$PREb)}v~y%@IEY{Gij zv;x;GG8SvtBPL_tqy8jYdmWb*&)2Ruf09jpln$tm+hqPE+x9U|4RPbgX%D@d$^R@G zn!CmPP4*YeBcA?*>F^`epJabPt^&*6YJR?N#e>8@<5=9k&7?m5DYLoypq69=w!(3k zg^REwzK(tI>Qk(LR|>tin+s$iYF9pi5%?@>^Sp#==u1??)pnTk8-q28o1>0nC#-=3 zuo_OlD7+PQ{AN1O?{wk^caVQw1RJQ(9(WF;@eo$WlW604R7cgGHVrjG4YU>Nc{?12 zBd|L@iE8h>V})l-yRlf0`c@c=JpvRofbkfIg;*b#pl0xx^L!_!5Wj)?@L$*gqjs9# zn0lf1kO!OLJbV!!$F?}>Su^k;Y7?%<$r#u|K`D(0nJcuqV>j$WeG$gs9!$f-sE)2- zHpV??Htk&0fPzkZ5N+ZwP?>V=GFC-pwhpqy0jn8>E>xsAFXUlM;!?-;sAKgOYOkC{ z?Tr@Co3%~DCd6H^6HZ3$nKh`H?!!8G0NdebXk*L^`kwV~OCg$y?x-agij6TJ)zN)e z7gwTYvK`gI3yz<mZpw<g&7Ix^I}(paefJ<H;5Hn9N3bR~V0|jlzm-a%3bse3wwvR4 z)MlEA{csOX#;`qRmwQo5SAzO^KO6hve(aBtFPXhG0+opZ)Pzd0Jq9pPi^47nT9da? zBl`$D;dhvhO<y)M7~wb*n^M0P%TtV6f&-X=-=Z?uY_CamFI48dsE&PTx!9b0$-h#x z`4zL4dr<>Agj{6S=hzcZJN3=?nV$g}m`Z(D)S4EcI@sjYZ%1Y3Bx>zXJN|;oRQ3I) zpJDq0rZA0)aXgrf4e^BI&!~*lde!_VR3bJZ4qy%3h;48uY6-tW4frB9#<s7O|A(_R z40{v5hC0>}|1jUz2~g0@l!$tejymUEuqEc98eV}K$Ob2V)_J}c>r?*?hT(M_i(#*u z3{1jgVlURl<*3cR1$8q9c2iITZ=yEG=ctsOLv?%&wM3C`m>)_u#t~;Zj>dY#e#a#k zOS}p7V|*|6z^^bDTfAv9whY<S0qb=NTEprGOv-vXPC+$%hvQn*-Uy*K>jBh2kE3Sv zJt~90qn4)1Tjt`5L&YiB6tl1yy0QH4|BEQ-!-udEZb3D;1C@b&SQ!tZmg=YzpF*wi zH>ex3(%a_ySX8QQ)cfsG1MZGD;$V!&`!JIIXFW+l9feRGzk(6?E+*kesD{E0nm@@# zV;ACisE+rcW_A>{M=oJ0MjSE&51<Bg7pmQdQSUvD<>&te3S+1^gxWlb@0cIA^RO-P zHf)WbV@s@Y*c`u3IGA`E7UFJHMs7G_PDwvZAfAp&`Tb~P2)+2h5!PQFX1r_uqjLog zC;kfiW9RqGRl5+?@HW&jJ%pNZi}%fMK>bm%--%aY6XJcCg<qns<i<zMJuwQ`61$I* ze-DM<sThUX$4u(>p!P!g2j)+*oiL2}Mzpaz>L$xZWoR|(l)Qsl+cT({Uq=lf;X{+z z$rwre5^7Jq5ugxG;V>rSF^op*xcQ~ACe|U$L=9*N-h-o2@1H?+7=6M#PsXamZBZR` zb>cowJPfr5#^FE=cqlBP5W=qd;3IPZ1+WeAcC3wGpl-&WF$QaWYzEpKI}>+A-3zy& zW_T}F!<9G+H=zdn8>-!wpOpXp5U|Ek=tIRTsE#UqYGxddYA78OF%u`F8#R#Eun~TN zQFt9|VAM%tL##=hg33r&Y>xd=o3RLE*?-n53TkjCY6kD32J#(h(_P2z*!VNEhHgwD zei=1@@2~+zo-*GxM{T}L?1U3gOS}@5k%v)B^CWhpe`_a&4)`r*qW!t~c|RT%Z^jHf zjeW7<7bfLXQJLF-O6fVr_%F?cGZ5QRKLP9Fa@0VdL|w^mVn828o;G*(ji?t!Vng&} zeO!i(a4Xisw^4iGODFy}>b+`b%>9svS;PZToB3YU(maA`xE*zxPMsnDu@ufw(Heh8 zEkVjx<^t-AS~EXtFFb^u@iEi@Poa%hQA^hFYqK<MPy?Nen)ysj#|N+#zKS|k-+vu2 z$DzVEW@J@S9o~rAJX5eSmY{CF6{wlKg38np$Mcv-9C6m%Y^k`B_(9YXbU0^bJRS9Y zA&$X$0Sa2<PcRkherr<Q8`XgaHGuh;gd4FX9!52M3AHpy-<h9|H)A~UL>!H?@Mb)Q zVc6)r8E8|iLLBHvL8%*#TEkpS!Ud?M*?}6sTNsJwuoM1-12E}(^C#IdRK_l%_J-?% zxsYmOE#i38(zZq|&CS@I{;g~Z8p&g*nLLd;4M(sahX2zXzd@)5mZ3J$Q>eB54Ex}} zaUkA!(Jbi_RH`4uRD2Az=EpD!zb%*bzf3{9HT(yY@}Ag&crq&0cVm0piOF~tn_%r9 z&44?gQa%DTz}rym-HS<h5YzAyj>Hx}8E?k{^lyDgVJJ5Jm${irF`RfUDs>xCGuwsL zFznx^!J2pjaSznY@=&K@0c!7Tz}C1IwUif78Ls@Z$y{>`G^Zkqf@b7F#fz{qZpYrZ z3)S&&*a{;qnIETZF@bnGDpU8PGVuaxAjh2eN7Q>!m(9e|P<x=mW!Aqog@IJ)_)I~a zhQ(M3-*9{f)xa^-Kri7fSpOIEo)?=E=b;9^6no)nY>%Iz_E@c7ol}6CP}5(@e>#OU zDm2q<?14|9Hr095z}j9hDIA09$d5Lza^l^XOnefRfym#?MU;rj%rMk|=AZ`hDyp4# z0?rFRI2Ey1&5W`zf){#WbsT_IaXhNQ9ITJauoG@Y8_(ci4Ex<=Yy`#;&qTc+#6kEJ zD)WJ>6tu}|UNapgVl;6oYUW*0$Hj{ph#xi61*jB0jT+F)s0@CM+9OHVO=d@8N8-CN z9`~a%a1vv5{?AgVL&X);K%y;IdE5+Z5N9ASa*MgjH|GSbM|>yhMtd0B;YQSqj-v*C z9<_&Rx?JUdlC6)i#B)&fE3qp5TaQrCd4Cc!@O`wgS_PNY4O38?ssI~cDQZAL)M?p_ zI);Z)Gr#QACscHm|K`&VyHLLom5DF#cB~)fGQa<?qM#ISR0TebO7V-R2ERdFAT`5X z<;SWAYKD_>6)tjYRLNETC)wvw8SPuyRsJX0iKx`Sgqr9H)c4mhpc^VN!d3n^*&*15 z_!-o(IfMEjHqy+rJ2oQDL8bC8)Dmn&y}udN(Mb%)Ur_B|!xU^)#XKL4I>yCST!He! zN-8ws-Ohs}SeN(*)G4T3)m466qEQ)XhpL~1T8bRh`?IkpF2^Bw95vvU)m-JjH}t_w z;`yj0+gq)hS=+NzsG*CfV^Sf?j5HoKu#Tv;AAoxAR@5e(8x@R8ek61zxuAM*ROYS0 zIZNt?e%QIsRUy$IJdw4=c6&TtPqLlpx2NQ|3#K{cB5%I0)a$W$>Br*O;D*^zp%q=0 zR17Wbkr@{J;HH?+)tionrP#$jyU6SI*trG8-XectPHw@>N%`)=!rX#s;}ZQ7lI?!e z3VcOgPllaX6neY=u?nGQ2JUu+x(`XH7%U#{34SsBq2Rg^`@(bc@_aLbb4DbDCX7rD z3*;6|@!F+rQqz*{Vdah5C4R5pPRK3rcxNWqZoi%H_S54ek8g^dU1oc{Q{5$b#i{n- zJg?jD)tu~vKfRJ=x0vE%hy}&|76}@3nXjbCrfO<xVOgp*jED|BxkcV7#lE7l;Oenu zfs(>PUs16=)mLPDOWk=T?qVio4=yXt@fFx@Y=2onv3sVS>!<TVzH=9QJ+`~RW6xkN zcD9$ilxL9C{AUjBQqxlHp1y)oFYS_V#^E&A)@hERl;vmp^8D8DQ0%w?u1JqB-%SIo zf^U3_KSk@u5BhHux;%b`%jFL)n;7Rx4sM&ct4gNromt3Syq-}0q!F&5+x=p&U-oUT zDxp2u=Uh=9pEbP5UEt4iGuzOzPopb@8s(-{3~oGK9E{K3-_uu|V;8%#OY+=BQ+#<P z`33&+nPtq#^%Up$Gi+aBaV|-47kTYzxuxEMRQr!d<Re#09y*@i+7)c*yDxOWH^&v~ zbK3(IgBOauQAJh8`HMZilHv(f5{rV9O5*q@Gq|oKHn^vxd$3w*Oemvthb!3ak#?ce zGg^iH<^9+>34f{SJEvuE@tlsqkLTPSOr9GV<FSYPdfF^>Q5j2DQsBu5PMF*67QZjw z%UbzM*hMpPnO=E?Z>n9KLp>`}Kqhj%{$xA5q*#?@b`INmhOcP4R^6S)W-DL^lzROc z!KHIA#}yT^FJ=_wmT!uwxp`iDfP1=Eh0y%lJG%N<Q{9w3TI1aO@{N?}|KB=a_N}ZE z%loHCh3+DDaDkfvC;CG>0|Q(sdEW9+!*yrV6@~w7XS=1d_cQE#pQj|x>knO-SJ4%$ zw_s{~?zEgd{wW`#dB|rTZ)$3)9h$x1>xwP@IJ1AGK-1=M>F9H0{dP(h4PwHgqzZpN z;(vO5YLPFWS7<XBxVu4c{oS)e4Hu_}RrPr7DS2+cpK~8{9jhCB{*i>>E%#jrb-6#= zRomjgFimBa16-1?a~XX3fq|i@rJG$<{pF`oP1?b&%K{aAd8?Mya<vJyT)xItX?kv9 zq1O{U6<i#;=fU^FYkOx-$t&Rk`=cRs_{^F*!NCtTOP*3(<kdl(>Mineqxd-$|NFL8 z?9+R}^_h)Bg%2%p)hYCtqwXyz%`Ng3XmlBN=-0K~T*0JuPXrIGYp`l=9aq(GEw(?H zxIQtMzrJp8&HA(&{*wHBw>BP6l#$*WMn!c_No$jm-pNi&&uHH!_~eFo)wE4XZ)c}> v$Y|Rk`2L11u5O{(8<)8LzM}uWqW`|4|GuLCzM}tnq5uC~(b0doqOJb}2vXP1 delta 15985 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 G=)VBKF)pP5 diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 8d439dc07..56a44ec7e 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,10 +7,10 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" -"Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr%40latin/)\n" +"Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -18,21 +18,21 @@ msgstr "" "Language: sr@latin\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -45,95 +45,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -141,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -149,60 +137,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -210,833 +192,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1050,188 +921,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1250,253 +1143,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1504,11 +1391,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1516,25 +1403,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1544,15 +1431,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1563,22 +1450,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1587,36 +1474,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1624,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1654,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1683,214 +1570,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1919,12 +1806,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "" @@ -1932,7 +1819,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "" @@ -1940,297 +1827,262 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "" @@ -2239,209 +2091,200 @@ msgstr "" msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2453,352 +2296,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2806,66 +2678,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2880,106 +2771,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "" @@ -2998,7 +2889,7 @@ msgstr "" msgid "Go" msgstr "" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "" @@ -3147,13 +3038,13 @@ msgstr "" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3195,36 +3086,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3241,76 +3132,89 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3324,140 +3228,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.js b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.js new file mode 100644 index 000000000..37e3c9154 --- /dev/null +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.js @@ -0,0 +1 @@ +Documentation.addTranslations({"locale": "sr_Cyrl_RS", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(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 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "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": "", "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%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)"}); \ No newline at end of file diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo new file mode 100644 index 0000000000000000000000000000000000000000..fe4d02c015b163d260ae7d1693c515bc154bb4f1 GIT binary patch literal 69008 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%0AI;x%;Rz8-g z4{Tv5o0bom>lLj52aOq)@1(G;H785;w<|UCV~!!6N7cp0W+~KXl`|8o-<H}NRwPfm zsnKy@#5Z!I$<z^(_I(-J`Bl$)whW+KF{|@KF}Clen62i#t4MaaMTJ$R^C~wkY}=VG zL7@Cq?I|n`PWeUOWExc%+JxQ~y-&$tu`;NxNh#bc#=1q+@i5kxXzFFQp0~7%-j<j~ z_J709@q{N!kBLLJZ<!8aOGnyhEPc%nwubN9YAqY}#V(S>;~0BXVPbNi-*s$j9F<jW zBpJV2jhB<KX4h=KWaXJNZ_{J!B?!F=lD&BISnmz{_gZZ+ffpKMxZ`oA)Uc%bxO3s& zQ(ks?`~`?B2O<Aiu;cO81Py@UfZluDxwjW$!t?cla=%}A+&P#m4rR}#-8IYJxMIVa zy)=E$?AaZUAT6w~`m!Wl&X-&3&h7Z>lY}Ub9@U%czIETUl<k=1N>yIPxDs#O(&QIY zR9ixATxQkE7kuQ7(1XaKhUD3|DC8PnE#Zd#a6>^hy6;4YNysH5+eL$vFS4{;S*@}6 zx^h)ZTgCn+XZo9``dXtlM+E(68c3Pl%P*R9)qiwH-|V-tju5-KY3uB^8DoYfa%uK+ zeYBW<-8A0xON|y?W5yZ=j(9`d$ZEP4wJZhUt&Eq)Uw1|gC1Em@EAg#@9aFM0HKw7% zgS@-TBEGtYj#^u+U5H1^d`j`|fw-k2UeMe~2_@n6_qcDM?qz5g*IB9ZA-;p%*SPWW zNpz8zue#0cDYL1wU)(Qhg|fQdYjXC=2~wNoAihYYq%`Q)@+0gd2-}oe^+ITC>gJ$J zRNsoV$q?HH?DY^{&A>%Nj%14Y2BB=SkRzJrdieS4e`&lW?##6T29fYSI$b#owX6|^ zJM}iE+CZN-;byFRdwuhfe<epmuvfF(R}oDNUT-eQwS>K??aHyA#%gCnEB0EK??9jh z$~N^4f>CeU>DRLs4woPQ17zGOl`af++f9{ygJ^*+=Xf%C88j12m0@OpnObq|*3bUR zi+gG*+PJ-}hdG>CjnkzoyTRT&3e9eAR!#E5pkGfn4j1(+Qlsipvi};JJ|=9sT}`ft z%oQ;~=ufN=Xgd#^afZx2!Nf(IIk6kEg`Zhuq~S-UHicEyu(;$eN{41bz|A79TNPU1 zq61Egr41cq$SokvxqPm)U?P0DA&}~`eG4`lj4q=v#fp-Q^0o1RpT{LLdW}oV=h_U6 z%fu5_vxOb{Qa=*2*km%z=o{_Yh#g;H=KXcQ&);4R^O1Nd>s`qCG_7PyAIz1MB*r~U zCF~DH+(RBDKrx4sIU2=W>kZQ&?PA}RpV9&s8-~^2OsS|?s=+XE42HgkXCJkuy(<~_ zSBCyJ?RClc8w<|%9*KN5_N3@}Vy-nbsm_n3=wHQAmU{O(vMHU%F%ZTf$<=+MP<s!X z9M>M?)K?Xy>hMpZlx*B$-NSwizOt}V$woQm${N>(vKIwt1-Gv?C3SbRY<q31P$NqG zv$(wD#Z2=tM?}!$&ZWn2(@@%1UNvL2I_x7N-<b<K3D@$Kfg*D_gfsi8%5OG-Wj>&H zhwxYW>tQ}l*adQ>{u1kp4GX>?#YKG-4I`yovG1Mb$8d*ezW`q$>z$UcD-ipNh?<3J z3NOs!?9omcpq`G%4)OT{GdQ#&5qHrSc#W3yP>U5s>$imHXtCcmD3B0~cIAfpib6I( z&UVpWI`st=-}O(w#v@}c$GG>{)r)P3r_SuXxagIX4AWdDW3&9SA(##Rd-MV&4gMhe zutdXd2aVThT{F=4wKodGCM3c9%4S>CfL7L6n!|dWoZyAr=n!CCnX%lIx|V8Yz7iVr z$a!R=A+?I_*+CHKppA3s&|`d8D^8|a9!H1w?WCSYy3tl2X(CM=8Chz22_!D$HayjR z6I5x;2OIwUC9)*E_uy#Iy7aIa*Fp}b{bXBD!fvR>ThNEW|2<Q(UF;?9b<dr5h~Dr} zYlC5ShB8>VqM;cw2N~L`T1#9aD(>sjyJK-eppA!nM6OS~ALX_%{Mu)ctV0I7Ih)qZ zk`j;BSf+jY%p<Y^-1o*^Q=G7j%7*rV&t%DN@Vo?rv~G9c_Uo{pH2!F|KXZVtNA{r# z^EYmH@ycZopbz8V9WL2QM3;R=Dz&WOG~C;#lC;gwK9IEM_mL8BDHgJ|hX>EM+=p7x zDD!3mPG9%`26tGPQDHRdBXcOK9M)}dqL4%L+2;FP68li%&Qi?OF!hUz;mEZ4lH+2c z&C$XlQGIPE+-^!lZX=v6n%wZ^1NL6Z62^0!_&Ts0Gx$9fvNwYIeQ*q0<+E3x!+QR_ ziP8w$7v@!W3brkUg{Vq0+W7KcFcah(w&BaB==8Bl-o50EeB@!K<XSwRcs+)QSRVcI z*@Zz9Day7rd#+_WF%^g#JQ9{3vPB1Wr#{l=xM~u8cN%$EKNzCpxMN$Tq8nC{M)#Q; zr_qYFUfS^U3}Yah9Q99BiaS}RY7Hup=Z1Nc$&vJq)IsQM=4?mqqs51=44cVZ1J&<F zwpoA(Ynf<N*5Nm<)u6WZ(zU+Gve&r56vTbJOMB<oO|*f;o|50KtVPcs_FFVW8r*rh zHGZT{69?Ppo8z(m;(u>?Z8zIV>QT7RbKUf0hvREj|GUZl@1~~SL*-^}%)h$a2n^;k zUYmh3FMsj2ba17!8%1BQ<O>{T3i7Y%Zhvhg7|phF!q}Wy<<hduiw9XCwU;)L9d_1s zb)U76tq;78Y!<xD{g{*#vIRI+N#(V$<SLUBJaw)IT&bjWPoa8j(Bi&4l+D(r-w;h( zvk&ZJDC!Vt7vIc~)OmO6WA$j2rm40^H(njAR{N!k)xpAu!Uq2M>(d|UNB`J~@@RgU zMs1L#r71y7jQHq_`Wr#@tj+j^r69gm6K}-c<0WX-h1uJ)U5?K0{z3K=5W7%MT%T;o z>sz{(P0in^8cYA_<$>_UmT1kG@?uE{la%FcFJQvP2`!2zJ6Ng+^G@7kW|d-t#V=Ll z({_8IP&>^qMQU~HEX7#!3SNd1)0;-|-J`^WEYzbkrCOWOKtnCvdZf_a)73WAVaiYH z3FTVbr5AL=?t-Y6e1al9m3?b9j8;`1p?#y84+b0D*XpX112LRvEl4vZlgKE9nM|1( z==(NeL`?V{+Dz79U1y0zWrK+8efa8CHXz}z^Hp6n;~wUdHpS}kk|IWsE-Jv^%#vKX zE6_e>l;Bda37yX+Ged~$+V`9(X|n;jhzV5RTVn36=@SU1K*ZWz9G@Iln-QHFq+Ws{ zqoDvJ*IoqDkkGejRf9|Btd7L}G(ey3Nyf1omAiTK{T+iYb}jO)KYfJ8Es9(gC0lV; zCnZwdnvIFnV`!faRY_$Nu{XGeSYfTijS1PSHJWzT?`x|jUXB1gikaV-?+HQ9qr1t5 z&QN6H(oNWrK%UI4Xy2{!z4U6Gc{rHn;djNR>B_V*E!rEBCRuy#BPKH2?cAleKHQ?< zPu_R4ms6M<pdTv<bHpwQ9j~0B!T2~Ii-zGdwUX>uZCRd3j<0q2W~bOm_WVql6>Ev6 zQ&|iwR#KxBn(Hx9vQ+l=nX~%+)3zwimIQmQv{Jm+50%xEdc>@(H1|SS-t`Z%sa2wb zkA_f&eLiJ^71mE^l$`xS-Gy!7k|rb~d{9E}V7}#~I6)bqhq8}d=^0_ZON8LbVbcmV z-<itN($25Aj%$g8I7~-a!ywS<Z}5brUR0d@z~os^^beu&Jfw!W>V)e4mSdmIXb818 z*jy6ZV{_ZDISCEl*-}b2_n97>F|EXcm#wZ~Sy>fnMHw|LGg=CFx>k^9gqzTrrq0W} z*BG0$!Ntu+9gQdYAe?HT{uvilmKN}B!9Eyd)QJs!dKk`a`83#{)5}E!7RNnp6*tp) z#5fh;7p3lAewLuDAre;?iT23m<@ku!9_kn?KM9pD<0Q$}zcI<fMlu@SyIJD~VvFc& z)HbCxbu8_hXpKaYVsp0w+m-lqBT3UKQSYSXGYCu;KEh%zPTNips(C^coDXZij4b6n zzB5b&G_Hyy<vPe5efof6>Chc)W2cP-4ca&RO!|Uch{C+n6686t5BaFrxZIRQaeXHZ zA0uZ!h3c!1E|#os7MWRb7?8e{*r8^OAJ?i+itVGGOa`(~zLQN2o~q!+(G#;0qd`|= zhN$|m*qHsHu5Id&IgCyLK%c}<ok&bf95Wj($8GUL<}{!}ntq1CNJ0Oww|!BEH>4hE z_f(9mu9e-XKtq$*8+)N%^%DgRj|i`}J;DQ~@6PY)q7J%(?#faL;YUa%(RbHl^?Bn< zyv+R*GKS(&&(^0bZ3S0%grBD0IN%$CGizXax{1yEW%=tRMx@9Fp|EF*-+YQtNbIZA zwA7BtiLk26CAYQAbEvUb`<$|?F05|z#F%l_FJ29kAk;q2X72PI(P+(3-(0daH``jR z3Xof!o?8F<cgn|$aztan+ZG(^!=_voTClW#9#K8crWEy|#mz$lQtz3&GYMZbu7AEd ze4K&enX|;YcH%CD0CKCZvzfV~H5mqEe*wq+AEs~_r(=uN6|^bdUQ;NZMAY1xNc;Dp za`728Z4i%1n6&VV*)M_}8$iRb!xd9JPCT>kI(lErW@Ad!{l|>7C`;QLYU<I(3ED<F z&dZ3F^Kr_R36GGCX&xp_=kNx_v>L2WVCvp!nl*S{?VAWL?Y7s>RH|k<L9SH@-?*3T z=|QyVVsyVY=*jTrZ;bEC7b(v?VwJ6Z=D;&Ad5G2@PWd2bZF?D3V@&hZ`mFKMq6U}b z-lO>j@46oj;ll%-<<thAeAr)<>GW*>vwNrHF`xF*G3_}cT@xjVp2pNYhRQG<3mp(+ z>oMIfnV2@(#{2p!wV{3&60-o1etiIoT=Mlr{9^bj=pbwc)6%To8|7sg<_Kv|&R%{D zd%JCwif*D+M0<yZ9iQzJ#R+;B9zTBYOx7RPk;oHhZwA<3_*TQ*hOZb5+Gi+}Xsnqj zQs1hJNXsCcZoxfz<jgs^XVeB^3_GMBCGDsrT`ZF<m^Hau8u9&2S2}6{dTX{8fjYp# zaf=HBk<$2!_B28@KkWVkWS6>Ql`p7g=3MdfmQ=KV3bZS}ro!PG*7NI6pkwNDiF794 z8>DTs+9{w`ii^I<|0rK!nd<*lzFcbsv(CFEy3fYI@EV`H{Tp_&XP*pRLS;~wa=9^R z*_W!~)^-~XgW{AKl=V=pcE?EBYl612-&V<4O-<9`YG%7yuW~YJUrGpvB(SK+hl4$n zq2EsLMS4xs@>x%UOlKCl8pnJwVJ)ul+dAH7d0^aeX5TvESOc4Zu#GM3`r1o8yW9{f z7{64xwkg=Bc2&_DQ?%|BjdV?F;#SYbxW4C8cf=}^X11O>Er0C0(C4n>XKi+5LwnSs zLywYtSgA3Oz3*jt)EqUIp&@tKgR&u4-7_4N@hI^oXMCev)xwv0?1i^pJU!;*>20u( z?UM!BtklK|7sSMTq*{Ap1;93?1dYUK8NPojXMf!EVM{`-=e3%nj_p-4HDrDvXSQ~& z)Z%Y=eq&D68fBvL!ef7M##x)9AmaQqi#wy=;i5tBYkPDk5VvNr-TLuWA3a<m5}!Kr zHx1*O$;KGtY!$P+Ov_`T#-*7o#-62W*oSR%@Zh7MfM$~<_GKlNtzpi?&USTf?FzO( zqy`^pAC)3A$qyAF4XzjM%n4y*epmb^a5c%6|KrHmU>)zu<J=`DDw}pP=tWbkUfU<6 z-H)1r#XWG|4B7y}gB!L+*6pxxgqD}mCy9QFfcDs;HsmIV=3jOakZthix#80)nnLq3 z8$<7I`Sqk+Y;fQ-B;TJ9jZ4iU;<`BlS8w8GNUL@vwc6}oUzhL~iqNr`&9W^K6gCbN z`E<Ixdgh!M3U|s1aO<u<W3{^Ugk=+HfC?s}N9_prX5FS;QM}vOp+3P1rF|@>#4?OY z8f^7AtMBlRS3|A(pd8~i{9yYu8*j3wWs|3PNAR{VzW7_f+>vIF_G$gJOYtq4n5E4= zU+r2q)OD#_RK02NwDZMdeUQ0pLv^G$)U|SQq}tV2?oHQhSg~&X`72hh-m+%v)|Sni z`np!xw1&@RuckSB(}mqV=XP~3?CM#ZcK7ryS~$P^-0p57c5PuFv23<!@y_h(IV<fs zyZ6kq=kxY#cguSG+FgCwo1VRCA6=w6T1+q6v|-)lE7GOKTx~~ryf~FVpAXj;$8d#> zFXt{l7^^p}R{FPW&B9%Mh5UGLx|OxBBGS?BfACfJ@SWCOyLRQwd0!kZ>{e1Uza`z( zvmiPf7g*v8Iyg)RN77i=1?-{0|5KW<V0GD<OE7};%d+-TTTl10Wj*QXr>FX}d+xHH zp7gx5J0&{d<;xbvpO!8=OMluO-AjAA(`P)xZy`>12lw=F&%%zD4eK_nskc#2uDfLw zV<hUXtIsqoJ*l<;<y<T+k?`_KlG?J#+Hlw6dOX!CGwH51%na4(d(*}2mdegxq>*`B z)*Y@3b7%8}<^hvknpI*GNUyOcqItliS+ZzZO$B(*OH$N4V3Ijx^MJ|b0h2mk)SUvV z3)@)QJYdp~>NHOhbG_yPlg$Grn+Hrb514EoFli1@Hb^uNnAAXt^ARURJdm<^z$8u_ z-ZQf`O<PlA==3cXnP1bEznTY3^4-zwdsya&wR&kDFxfm{vaOond*i?8L-z%5E;J9A zqz;+~Od<*X8c103t)E1x{S3Yu;ful3f0^yttO;d%;^O-@F&#@g2H2*OZClW_<^hw< z114<=LN9<c518~FX1;XQJYceUz@!}z$wy-1TdyorHhx|~3xD;U$;|^MeV1JGfJqF& z<^hx10-!wvdN-nZz$71EXdW<WXNF*c%E6F*+BQ3hhQliD3&(6~iEoVPLk+At$Acv! zn+Hs?=d5|aWb=T@<^hxOdr{2;CYuLLHV>F=9x&NFU{d?J{mbah119%4`Z9jHv3bB` z^MJ|0QEhnM9KSc*JYaH5^MJ|b0h9W&UGsoR-WCi_isk{6yfdTi=;7tQ`j<g@vx>!T z|2#r9>C>B@9FaGmZyq!cm~0*}**st}Z5}Y0GrchF>rM93H=jnz4&)7S{L6~jt7UsR z^3h(&Y#uP#JYdo{`tM}xj9!jpJ%RU`AM=U7jA!xFIewC`)*~8U{A?aDsTIsi!u#Ig zv#-qqCOL_wdB7ygx_V79d$+fFz@)zq9*(+b_$-INF>52)9v|3f9x!Pet(pf+@~Jdt zn(P^F9x$ozD`|IC^MJ|b0h9WqMK};MeuJgqw2SzKlK9n*#&2Oa516cSOr3pu)pw33 ze9onLz@*NbwbL=12TZbMwbi~U+dN>hdB9}zfXTfa0oXiX5<h<PfXU_olN{lYt@4<C z-aKH^54ws=gz<&X<^hv!6-1?Zz@$#m;SJ4Mj<0MUFgbG>IcXj+spDsw2TZb^z_y;m zSM3_kq~!B&%>yPmudjK)Wb=SYoW%wIgt~pAI%ys-se|bJAX9zVm(TMy5190?`1}vg zt!(&0xOT(+4^z|k1^A9<^MJ{8ogYPo)KVvYL<AONI6J+0z-04)N$VrExJ9LTz$D*a zDCmH^nfp+i2TWEt0zuzt=U~a9NgXHGJYbSf?l%vZ^aG+eFm*&HoBA;mCMTS;5Dwsr zXFF)oy?MZ7{WC7Atn6c2%>yQz2TXDbWAlJX9qaxGM?*Fbm<-2G`Y}fFC`mtxG9H!| zuQm^uWXRFcIC1TydB7y+0%`+X^MFbAST_%tY#uP#JYaI9dB7wGPT8@mZOsEF<4D;& fV6ryaJYdpJ?`}MNvU$K{^MJ{0C*%LW2TcB7P!N(h literal 0 HcmV?d00001 diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po new file mode 100644 index 000000000..f0c08ec0d --- /dev/null +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -0,0 +1,3354 @@ +# Translations template for Sphinx. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the Sphinx project. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Sphinx\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.6.0\n" +"Language: sr_RS\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" + +#: sphinx/application.py:153 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:157 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:161 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:192 +#, python-format +msgid "Running Sphinx v%s" +msgstr "" + +#: sphinx/application.py:214 +#, python-format +msgid "" +"This project needs at least Sphinx v%s and therefore cannot be built with " +"this version." +msgstr "" + +#: sphinx/application.py:234 +msgid "making output directory" +msgstr "" + +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 +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:269 +#, python-format +msgid "loading translations [%s]... " +msgstr "" + +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 +msgid "done" +msgstr "" + +#: sphinx/application.py:287 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:298 +msgid "loading pickled environment" +msgstr "" + +#: sphinx/application.py:303 +#, python-format +msgid "failed: %s" +msgstr "" + +#: sphinx/application.py:313 +msgid "No builder selected, using default: html" +msgstr "" + +#: sphinx/application.py:344 +msgid "succeeded" +msgstr "" + +#: sphinx/application.py:344 +msgid "finished with problems" +msgstr "" + +#: sphinx/application.py:346 +#, python-format +msgid "build %s, %s warning." +msgstr "" + +#: sphinx/application.py:350 +#, python-format +msgid "build %s." +msgstr "" + +#: sphinx/application.py:557 +#, python-format +msgid "node class %r is already registered, its visitors will be overridden" +msgstr "" + +#: sphinx/application.py:654 +#, python-format +msgid "directive %r is already registered, it will be overridden" +msgstr "" + +#: sphinx/application.py:677 sphinx/application.py:696 +#, python-format +msgid "role %r is already registered, it will be overridden" +msgstr "" + +#: sphinx/application.py:1182 +#, 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:1188 +#, 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:1199 +#, python-format +msgid "doing serial %s" +msgstr "" + +#: sphinx/config.py:220 +#, python-format +msgid "" +"cannot override dictionary config setting %r, ignoring (use %r to set " +"individual elements)" +msgstr "" + +#: sphinx/config.py:229 +#, python-format +msgid "invalid number %r for config value %r, ignoring" +msgstr "" + +#: sphinx/config.py:234 +#, python-format +msgid "cannot override config setting %r with unsupported type, ignoring" +msgstr "" + +#: sphinx/config.py:264 +#, python-format +msgid "unknown config value %r in override, ignoring" +msgstr "" + +#: sphinx/config.py:282 +#, python-format +msgid "No such config value: %s" +msgstr "" + +#: sphinx/config.py:312 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:363 +#, python-format +msgid "There is a syntax error in your configuration file: %s\n" +msgstr "" + +#: sphinx/config.py:366 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:370 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:397 +#, python-format +msgid "" +"The config value `source_suffix' expects a string, list of strings, or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:405 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:406 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:407 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:408 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:447 +msgid "" +"The config value `{name}` has to be a one of {candidates}, but `{current}` " +"is given." +msgstr "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}'; expected " +"{permitted}." +msgstr "" + +#: sphinx/config.py:478 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:497 +#, python-format +msgid "" +"the config value %r is set to a string with non-ASCII characters; this can " +"lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." +msgstr "" + +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 +#, python-format +msgid "Event %r already present" +msgstr "" + +#: sphinx/events.py:60 +#, python-format +msgid "Unknown event name: %s" +msgstr "" + +#: sphinx/extension.py:52 +#, python-format +msgid "" +"The %s extension is required by needs_extensions settings, but it is not " +"loaded." +msgstr "" + +#: sphinx/extension.py:57 +#, 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:142 +#, python-format +msgid "Pygments lexer name %r is not known" +msgstr "" + +#: sphinx/highlighting.py:163 +#, python-format +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." +msgstr "" + +#: sphinx/project.py:59 +msgid "document not readable. Ignored." +msgstr "" + +#: sphinx/registry.py:131 +#, python-format +msgid "Builder class %s has no \"name\" attribute" +msgstr "" + +#: sphinx/registry.py:133 +#, 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:155 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:163 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:201 +#, python-format +msgid "The %r directive is already registered to domain %s" +msgstr "" + +#: sphinx/registry.py:215 +#, python-format +msgid "The %r role is already registered to domain %s" +msgstr "" + +#: sphinx/registry.py:226 +#, python-format +msgid "The %r index is already registered to domain %s" +msgstr "" + +#: sphinx/registry.py:250 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:270 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:278 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:308 +#, python-format +msgid "source_parser for %r is already registered" +msgstr "" + +#: sphinx/registry.py:324 +#, python-format +msgid "Source parser for %s not registered" +msgstr "" + +#: sphinx/registry.py:344 +#, python-format +msgid "source_input for %r is already registered" +msgstr "" + +#: sphinx/registry.py:363 +#, python-format +msgid "Translator for %r already exists" +msgstr "" + +#: sphinx/registry.py:375 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:445 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:453 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:464 +#, python-format +msgid "" +"the extension %r was already merged with Sphinx since version %s; this " +"extension is ignored." +msgstr "" + +#: sphinx/registry.py:475 +msgid "Original exception:\n" +msgstr "" + +#: sphinx/registry.py:476 +#, python-format +msgid "Could not import extension %s" +msgstr "" + +#: sphinx/registry.py:479 +#, python-format +msgid "" +"extension %r has no setup() function; is it really a Sphinx extension " +"module?" +msgstr "" + +#: sphinx/registry.py:488 +#, 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:496 +#, 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:221 sphinx/roles.py:272 +#, python-format +msgid "Python Enhancement Proposals; PEP %s" +msgstr "" + +#: sphinx/theming.py:79 +#, python-format +msgid "theme %r doesn't have \"theme\" setting" +msgstr "" + +#: sphinx/theming.py:81 +#, python-format +msgid "theme %r doesn't have \"inherit\" setting" +msgstr "" + +#: sphinx/theming.py:87 +#, python-format +msgid "no theme named %r found, inherited by %r" +msgstr "" + +#: sphinx/theming.py:112 +#, python-format +msgid "setting %s.%s occurs in none of the searched theme configs" +msgstr "" + +#: sphinx/theming.py:132 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + +#: sphinx/theming.py:242 +#, python-format +msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgstr "" + +#: sphinx/theming.py:258 +msgid "" +"sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " +"install it manually.(pip install sphinx_rtd_theme)" +msgstr "" + +#: sphinx/theming.py:262 +#, python-format +msgid "no theme named %r found (missing theme.conf?)" +msgstr "" + +#: sphinx/builders/__init__.py:205 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:209 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:231 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:245 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:266 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:276 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:284 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:298 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:303 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:314 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:325 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:335 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:342 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:347 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:349 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" +msgstr "" + +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" +msgstr "" + +#: sphinx/builders/__init__.py:364 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" +msgstr "" + +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 +#, python-format +msgid "cannot read image file %r: copying it instead" +msgstr "" + +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:445 +#, python-format +msgid "cannot write image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" +msgstr "" + +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:566 +#, python-format +msgid "unknown mimetype for %s, ignoring" +msgstr "" + +#: sphinx/builders/changes.py:39 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:68 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 +msgid "Builtins" +msgstr "" + +#: sphinx/builders/changes.py:89 +msgid "Module level" +msgstr "" + +#: sphinx/builders/changes.py:134 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:141 +#, python-format +msgid "could not read %r for changelog creation" +msgstr "" + +#: sphinx/builders/dummy.py:24 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:69 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:212 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:216 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:219 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:223 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:226 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:229 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:232 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:235 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:239 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:242 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:215 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:239 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:240 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:244 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:271 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:182 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:217 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:399 +#, python-format +msgid "Failed to read build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 +#, python-format +msgid "%b %d, %Y" +msgstr "" + +#: sphinx/builders/html.py:500 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 +msgid "General Index" +msgstr "" + +#: sphinx/builders/html.py:506 +msgid "index" +msgstr "" + +#: sphinx/builders/html.py:570 +msgid "next" +msgstr "" + +#: sphinx/builders/html.py:579 +msgid "previous" +msgstr "" + +#: sphinx/builders/html.py:677 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:695 +msgid "writing additional pages..." +msgstr "" + +#: sphinx/builders/html.py:780 +msgid "copying downloadable files... " +msgstr "" + +#: sphinx/builders/html.py:788 +#, python-format +msgid "cannot copy downloadable file %r: %s" +msgstr "" + +#: sphinx/builders/html.py:795 +msgid "copying static files... " +msgstr "" + +#: sphinx/builders/html.py:830 +#, python-format +msgid "html_static_path entry %r does not exist" +msgstr "" + +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#, python-format +msgid "logo file %r does not exist" +msgstr "" + +#: sphinx/builders/html.py:847 +#, python-format +msgid "favicon file %r does not exist" +msgstr "" + +#: sphinx/builders/html.py:854 +#, python-format +msgid "cannot copy static file %r" +msgstr "" + +#: sphinx/builders/html.py:860 +msgid "copying extra files... " +msgstr "" + +#: sphinx/builders/html.py:866 +#, python-format +msgid "html_extra_path entry %r does not exist" +msgstr "" + +#: sphinx/builders/html.py:872 +#, python-format +msgid "cannot copy extra file %r" +msgstr "" + +#: sphinx/builders/html.py:880 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:927 +msgid "" +"search index couldn't be loaded, but not all documents will be built: the " +"index will be incomplete." +msgstr "" + +#: sphinx/builders/html.py:996 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1094 +#, 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.py:1099 +#, python-format +msgid "" +"An error happened in rendering the page %s.\n" +"Reason: %r" +msgstr "" + +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1131 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1138 +#, python-format +msgid "dumping search index in %s ... " +msgstr "" + +#: sphinx/builders/html.py:1184 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1228 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1231 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1264 +#, python-format +msgid "%s %s documentation" +msgstr "" + +#: sphinx/builders/linkcheck.py:80 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:144 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:242 +#, python-format +msgid "broken link: %s (%s)" +msgstr "" + +#: sphinx/builders/manpage.py:43 +#, python-format +msgid "The manual pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/manpage.py:51 +msgid "no \"man_pages\" config value found; no manual pages will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 +#, python-format +msgid "\"man_pages\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." +msgstr "" + +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:52 +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:85 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:93 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#, python-format +msgid "processing %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +msgid " (in " +msgstr "" + +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" +msgstr "" + +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" +msgstr "" + +#: sphinx/builders/text.py:33 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:38 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:112 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:121 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:123 +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:163 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:171 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 +msgid "copying TeX support files..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:445 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +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:69 +msgid " import sys; sys.setrecursionlimit(1500)" +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 <https://github.com/sphinx-" +"doc/sphinx/issues>. Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:97 +msgid "job number should be a positive number" +msgstr "" + +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +msgid "For more information, visit <http://sphinx-doc.org/>." +msgstr "" + +#: sphinx/cmd/build.py:107 +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:128 +msgid "path to documentation source files" +msgstr "" + +#: sphinx/cmd/build.py:130 +msgid "path to output directory" +msgstr "" + +#: sphinx/cmd/build.py:132 +msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgstr "" + +#: sphinx/cmd/build.py:135 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:138 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:140 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:143 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:146 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:149 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:156 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:159 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:162 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:165 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:167 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:170 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:172 +msgid "increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "no output on stdout, just warnings on stderr" +msgstr "" + +#: sphinx/cmd/build.py:176 +msgid "no output at all, not even warnings" +msgstr "" + +#: sphinx/cmd/build.py:179 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:182 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:185 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: sphinx/cmd/build.py:187 +msgid "turn warnings into errors" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "With -W, Keep going when getting warnings" +msgstr "" + +#: sphinx/cmd/build.py:191 +msgid "show full traceback on exception" +msgstr "" + +#: sphinx/cmd/build.py:193 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:227 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:230 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:249 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:259 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:266 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:52 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:53 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:54 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: sphinx/cmd/quickstart.py:55 +msgid "write \"todo\" entries that can be shown or hidden on build" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "checks for documentation coverage" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "include math, rendered as PNG or SVG images" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "include math, rendered in the browser by MathJax" +msgstr "" + +#: sphinx/cmd/quickstart.py:59 +msgid "conditional inclusion of content based on config values" +msgstr "" + +#: sphinx/cmd/quickstart.py:61 +msgid "include links to the source code of documented Python objects" +msgstr "" + +#: sphinx/cmd/quickstart.py:63 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:107 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:119 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:128 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:136 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:143 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:169 +msgid "" +"* Note: non-ASCII characters entered and terminal encoding unknown -- " +"assuming UTF-8 or Latin-1." +msgstr "" + +#: sphinx/cmd/quickstart.py:248 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:249 +msgid "" +"\n" +"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:254 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:257 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:259 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:264 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:266 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:274 +msgid "" +"\n" +"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:278 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:282 +msgid "" +"\n" +"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:286 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:289 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:291 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:296 +msgid "" +"\n" +"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:302 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +msgid "" +"\n" +"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" +"http://sphinx-doc.org/config.html#confval-language." +msgstr "" + +#: sphinx/cmd/quickstart.py:314 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:319 +msgid "" +"\n" +"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:322 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:325 +msgid "" +"\n" +"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:330 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:338 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:340 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:344 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:354 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:359 +msgid "" +"\n" +"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:363 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:366 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:450 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:451 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:453 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:456 +#, python-format +msgid "" +"Use the sphinx-build command to build the docs, like so:\n" +" sphinx-build -b builder %s %s\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:459 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:499 +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:509 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:514 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:516 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:518 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:520 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:522 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:524 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:526 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:528 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:530 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:532 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:534 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:536 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:538 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:540 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:557 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:563 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:565 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:571 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:605 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:619 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:621 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:636 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:74 +msgid "Over dedent has detected" +msgstr "" + +#: sphinx/directives/code.py:94 +#, python-format +msgid "Invalid caption: %s" +msgstr "" + +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:222 +#, python-format +msgid "Cannot use both \"%s\" and \"%s\" options" +msgstr "" + +#: sphinx/directives/code.py:235 +#, python-format +msgid "Include file %r not found or reading it failed" +msgstr "" + +#: sphinx/directives/code.py:237 +#, 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:275 +#, python-format +msgid "Object named %r not found in include file %r" +msgstr "" + +#: sphinx/directives/code.py:301 +msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" +msgstr "" + +#: sphinx/directives/code.py:306 +#, python-format +msgid "Line spec %r: no lines pulled from include file %r" +msgstr "" + +#: sphinx/directives/other.py:172 +msgid "Section author: " +msgstr "" + +#: sphinx/directives/other.py:174 +msgid "Module author: " +msgstr "" + +#: sphinx/directives/other.py:176 +msgid "Code author: " +msgstr "" + +#: sphinx/directives/other.py:178 +msgid "Author: " +msgstr "" + +#: sphinx/domains/__init__.py:344 +#, python-format +msgid "%s %s" +msgstr "" + +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 +msgid "Parameters" +msgstr "" + +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +msgid "Returns" +msgstr "" + +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 +msgid "Return type" +msgstr "" + +#: sphinx/domains/c.py:189 +#, python-format +msgid "%s (C function)" +msgstr "" + +#: sphinx/domains/c.py:191 +#, python-format +msgid "%s (C member)" +msgstr "" + +#: sphinx/domains/c.py:193 +#, python-format +msgid "%s (C macro)" +msgstr "" + +#: sphinx/domains/c.py:195 +#, python-format +msgid "%s (C type)" +msgstr "" + +#: sphinx/domains/c.py:197 +#, python-format +msgid "%s (C variable)" +msgstr "" + +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +msgid "function" +msgstr "" + +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +msgid "member" +msgstr "" + +#: sphinx/domains/c.py:260 +msgid "macro" +msgstr "" + +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +msgid "type" +msgstr "" + +#: sphinx/domains/c.py:262 +msgid "variable" +msgstr "" + +#: sphinx/domains/changeset.py:33 +#, python-format +msgid "New in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "Changed in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Deprecated since version %s" +msgstr "" + +#: sphinx/domains/cpp.py:4297 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6374 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:6505 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 +msgid "class" +msgstr "" + +#: sphinx/domains/cpp.py:6955 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6959 +msgid "concept" +msgstr "" + +#: sphinx/domains/cpp.py:6960 +msgid "enum" +msgstr "" + +#: sphinx/domains/cpp.py:6961 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/cpp.py:7054 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Name of declaration is '%s'." +msgstr "" + +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#, python-format +msgid "%s() (built-in function)" +msgstr "" + +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#, python-format +msgid "%s() (%s method)" +msgstr "" + +#: sphinx/domains/javascript.py:134 +#, python-format +msgid "%s() (class)" +msgstr "" + +#: sphinx/domains/javascript.py:136 +#, python-format +msgid "%s (global variable or constant)" +msgstr "" + +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#, python-format +msgid "%s (%s attribute)" +msgstr "" + +#: sphinx/domains/javascript.py:204 +msgid "Arguments" +msgstr "" + +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#, python-format +msgid "%s (module)" +msgstr "" + +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +msgid "method" +msgstr "" + +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +msgid "data" +msgstr "" + +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 +msgid "module" +msgstr "" + +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:126 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:50 +msgid "keyword" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "operator" +msgstr "" + +#: sphinx/domains/python.py:52 +msgid "object" +msgstr "" + +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:54 +msgid "statement" +msgstr "" + +#: sphinx/domains/python.py:55 +msgid "built-in function" +msgstr "" + +#: sphinx/domains/python.py:215 +msgid "Variables" +msgstr "" + +#: sphinx/domains/python.py:219 +msgid "Raises" +msgstr "" + +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#, python-format +msgid "%s() (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:433 +#, python-format +msgid "%s (built-in variable)" +msgstr "" + +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#, python-format +msgid "%s (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:454 +#, python-format +msgid "%s (built-in class)" +msgstr "" + +#: sphinx/domains/python.py:455 +#, python-format +msgid "%s (class in %s)" +msgstr "" + +#: sphinx/domains/python.py:492 +#, python-format +msgid "%s() (%s.%s method)" +msgstr "" + +#: sphinx/domains/python.py:504 +#, python-format +msgid "%s() (%s.%s static method)" +msgstr "" + +#: sphinx/domains/python.py:507 +#, python-format +msgid "%s() (%s static method)" +msgstr "" + +#: sphinx/domains/python.py:517 +#, python-format +msgid "%s() (%s.%s class method)" +msgstr "" + +#: sphinx/domains/python.py:520 +#, python-format +msgid "%s() (%s class method)" +msgstr "" + +#: sphinx/domains/python.py:530 +#, python-format +msgid "%s (%s.%s attribute)" +msgstr "" + +#: sphinx/domains/python.py:667 +msgid "Python Module Index" +msgstr "" + +#: sphinx/domains/python.py:668 +msgid "modules" +msgstr "" + +#: sphinx/domains/python.py:719 +msgid "Deprecated" +msgstr "" + +#: sphinx/domains/python.py:746 +msgid "class method" +msgstr "" + +#: sphinx/domains/python.py:747 +msgid "static method" +msgstr "" + +#: sphinx/domains/python.py:879 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:917 +msgid " (deprecated)" +msgstr "" + +#: sphinx/domains/rst.py:62 +#, python-format +msgid "%s (directive)" +msgstr "" + +#: sphinx/domains/rst.py:64 +#, python-format +msgid "%s (role)" +msgstr "" + +#: sphinx/domains/rst.py:116 +msgid "directive" +msgstr "" + +#: sphinx/domains/rst.py:117 +msgid "role" +msgstr "" + +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 +#, python-format +msgid "environment variable; %s" +msgstr "" + +#: sphinx/domains/std.py:166 +#, 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:207 +#, python-format +msgid "%scommand line option; %s" +msgstr "" + +#: sphinx/domains/std.py:458 +msgid "glossary term" +msgstr "" + +#: sphinx/domains/std.py:459 +msgid "grammar token" +msgstr "" + +#: sphinx/domains/std.py:460 +msgid "reference label" +msgstr "" + +#: sphinx/domains/std.py:462 +msgid "environment variable" +msgstr "" + +#: sphinx/domains/std.py:463 +msgid "program option" +msgstr "" + +#: sphinx/domains/std.py:464 +msgid "document" +msgstr "" + +#: sphinx/domains/std.py:502 +msgid "Module Index" +msgstr "" + +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 +msgid "Search Page" +msgstr "" + +#: sphinx/domains/std.py:598 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:665 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:748 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:756 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:767 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:781 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:784 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:69 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:70 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:71 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:210 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:212 +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:408 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:536 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:621 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:662 +msgid "document isn't included in any toctree" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:82 +#, python-format +msgid "see %s" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:86 +#, python-format +msgid "see also %s" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:89 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:156 +msgid "Symbols" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:153 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:172 +#, 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:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:91 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:107 +#, 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:197 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:69 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:299 +msgid "" +"\n" +"Look recursively in <MODULE_PATH> for Python modules and packages and create\n" +"one reST file with automodule directives per package in the <OUTPUT_PATH>.\n" +"\n" +"The <EXCLUDE_PATTERN>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:312 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:314 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:322 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:325 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:328 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:331 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:334 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:337 +msgid "include \"_private\" modules" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 +msgid "don't create a table of contents file" +msgstr "" + +#: sphinx/ext/apidoc.py:344 +msgid "" +"don't create headings for the module/package packages (e.g. when the " +"docstrings already contain them)" +msgstr "" + +#: sphinx/ext/apidoc.py:349 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:353 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:357 +msgid "file suffix (default: rst)" +msgstr "" + +#: sphinx/ext/apidoc.py:359 +msgid "generate a full project with sphinx-quickstart" +msgstr "" + +#: sphinx/ext/apidoc.py:362 +msgid "append module_path to sys.path, used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:364 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:366 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:368 +msgid "project version, used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:370 +msgid "project release, used when --full is given, defaults to --doc-version" +msgstr "" + +#: sphinx/ext/apidoc.py:373 +msgid "extension options" +msgstr "" + +#: sphinx/ext/apidoc.py:402 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:46 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:55 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:70 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:152 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:142 +#, python-format +msgid "missing '+' or '-' in '%s' option." +msgstr "" + +#: sphinx/ext/doctest.py:147 +#, python-format +msgid "'%s' is not a valid option." +msgstr "" + +#: sphinx/ext/doctest.py:161 +#, python-format +msgid "'%s' is not a valid pyversion option" +msgstr "" + +#: sphinx/ext/doctest.py:230 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:291 +#, python-format +msgid "" +"Testing of doctests in the sources finished, look at the results in " +"%(outdir)s/output.txt." +msgstr "" + +#: sphinx/ext/doctest.py:438 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:527 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:140 +msgid "Graphviz directive cannot have both content and a filename argument" +msgstr "" + +#: sphinx/ext/graphviz.py:150 +#, python-format +msgid "External Graphviz file %r not found or reading it failed" +msgstr "" + +#: sphinx/ext/graphviz.py:156 +msgid "Ignoring \"graphviz\" directive without content." +msgstr "" + +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 +#, python-format +msgid "" +"dot command %r cannot be run (needed for graphviz output), check the " +"graphviz_dot setting" +msgstr "" + +#: sphinx/ext/graphviz.py:263 +#, python-format +msgid "" +"dot exited with error:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:273 +#, python-format +msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" +msgstr "" + +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 +#, python-format +msgid "convert command %r cannot be run.check the image_converter setting" +msgstr "" + +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 +#, python-format +msgid "" +"convert exited with error:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/imgmath.py:140 +#, 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:290 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:317 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +msgid "Permalink to this equation" +msgstr "" + +#: sphinx/ext/intersphinx.py:182 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:312 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx.py:314 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 +msgid "[source]" +msgstr "" + +#: sphinx/ext/todo.py:70 +msgid "Todo" +msgstr "" + +#: sphinx/ext/todo.py:111 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:160 +msgid "<<original entry>>" +msgstr "" + +#: sphinx/ext/todo.py:163 +#, python-format +msgid "(The <<original entry>> is located in %s, line %d.)" +msgstr "" + +#: sphinx/ext/todo.py:172 +msgid "original entry" +msgstr "" + +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 +msgid "[docs]" +msgstr "" + +#: sphinx/ext/viewcode.py:201 +msgid "Module code" +msgstr "" + +#: sphinx/ext/viewcode.py:207 +#, python-format +msgid "<h1>Source code for %s</h1>" +msgstr "" + +#: sphinx/ext/viewcode.py:233 +msgid "Overview: module code" +msgstr "" + +#: sphinx/ext/viewcode.py:234 +msgid "<h1>All modules for which code is available</h1>" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:302 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:402 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:514 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:602 +#, python-format +msgid "" +"autodoc: failed to determine %r to be documented.the following exception was raised:\n" +"%s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:694 +#, 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:788 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:796 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:829 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:844 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1128 +#, python-format +msgid "Bases: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1185 +#, python-format +msgid "alias of :class:`%s`" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1470 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:102 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:106 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:366 +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:383 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:387 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:390 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "custom template directory (default: %(default)s)" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:398 +#, python-format +msgid "document imported members (default: %(default)s)" +msgstr "" + +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 +msgid "Keyword Arguments" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:628 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:684 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:688 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:717 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:754 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:759 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:307 +msgid "Attention" +msgstr "" + +#: sphinx/locale/__init__.py:308 +msgid "Caution" +msgstr "" + +#: sphinx/locale/__init__.py:309 +msgid "Danger" +msgstr "" + +#: sphinx/locale/__init__.py:310 +msgid "Error" +msgstr "" + +#: sphinx/locale/__init__.py:311 +msgid "Hint" +msgstr "" + +#: sphinx/locale/__init__.py:312 +msgid "Important" +msgstr "" + +#: sphinx/locale/__init__.py:313 +msgid "Note" +msgstr "" + +#: sphinx/locale/__init__.py:314 +msgid "See also" +msgstr "" + +#: sphinx/locale/__init__.py:315 +msgid "Tip" +msgstr "" + +#: sphinx/locale/__init__.py:316 +msgid "Warning" +msgstr "" + +#: sphinx/templates/latex/longtable.tex_t:23 +msgid "continued from previous page" +msgstr "" + +#: sphinx/templates/latex/longtable.tex_t:29 +msgid "Continued on next page" +msgstr "" + +#: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/searchresults.html:10 +msgid "Search" +msgstr "" + +#: sphinx/themes/agogo/layout.html:54 sphinx/themes/basic/searchbox.html:16 +msgid "Go" +msgstr "" + +#: sphinx/themes/agogo/layout.html:79 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:72 +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:31 +msgid "Navigation" +msgstr "" + +#: sphinx/themes/basic/layout.html:138 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "" + +#: sphinx/themes/basic/layout.html:147 +msgid "About these documents" +msgstr "" + +#: sphinx/themes/basic/layout.html:156 +msgid "Copyright" +msgstr "" + +#: sphinx/themes/basic/layout.html:201 +#, python-format +msgid "© <a href=\"%(path)s\">Copyright</a> %(copyright)s." +msgstr "" + +#: sphinx/themes/basic/layout.html:203 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "" + +#: sphinx/themes/basic/layout.html:207 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "" + +#: sphinx/themes/basic/layout.html:210 +#, python-format +msgid "" +"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> " +"%(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:30 +msgid "" +"Please activate JavaScript to enable the search\n" +" functionality." +msgstr "" + +#: sphinx/themes/basic/search.html:35 +msgid "" +"From here you can search these documents. Enter your search\n" +" words into the box below and click \"search\". Note that the search\n" +" function will automatically search for all of the words. Pages\n" +" containing fewer words won't appear in the result list." +msgstr "" + +#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/searchresults.html:17 +msgid "search" +msgstr "" + +#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js:295 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js:297 +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:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 +msgid "Permalink to this headline" +msgstr "" + +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 +msgid "Permalink to this definition" +msgstr "" + +#: sphinx/themes/basic/static/doctools.js:233 +msgid "Hide Search Matches" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:131 +msgid "Searching" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:136 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:299 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:352 +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:259 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:301 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:307 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:335 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:382 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:402 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:110 +#, python-format +msgid "more than one target found for 'any' cross-reference %r: could be %s" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:142 +#, python-format +msgid "%s:%s reference target not found: %%(target)s" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:145 +#, python-format +msgid "%r reference target not found: %%(target)s" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:92 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:120 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:140 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 +msgid "when adding directive classes, no additional arguments may be given" +msgstr "" + +#: sphinx/util/i18n.py:74 +#, python-format +msgid "reading error: %s, %s" +msgstr "" + +#: sphinx/util/i18n.py:81 +#, python-format +msgid "writing error: %s, %s" +msgstr "" + +#: sphinx/util/i18n.py:215 +#, 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:428 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:501 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 +#, python-format +msgid "Any IDs not assigned for %s node" +msgstr "" + +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +msgid "Permalink to this table" +msgstr "" + +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 +msgid "Permalink to this code" +msgstr "" + +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +msgid "Permalink to this image" +msgstr "" + +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +msgid "Permalink to this toctree" +msgstr "" + +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:510 +#, python-format +msgid "unknown %r toplevel_sectioning for class %r" +msgstr "" + +#: sphinx/writers/latex.py:603 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:893 +msgid "document title is not a single Text node" +msgstr "" + +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 +msgid "" +"encountered title node not in section, topic, table, admonition or sidebar" +msgstr "" + +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1843 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2552 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 +#, python-format +msgid "[image: %s]" +msgstr "" + +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 +msgid "[image]" +msgstr "" + +#: sphinx/writers/texinfo.py:1330 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1421 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1426 +#, python-format +msgid "unknown node type: %r" +msgstr "" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.js b/sphinx/locale/sv/LC_MESSAGES/sphinx.js index d39090f49..b3d1793ed 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "sv", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "Om dessa dokument", "Automatically generated list of changes in version %(version)s": "Automatiskt genererad lista \u00f6ver f\u00f6r\u00e4ndringar i version %(version)s", "C API changes": "F\u00f6r\u00e4ndringar i C-API", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "D\u00f6lj sidolist", "Complete Table of Contents": "Komplett Inneh\u00e5llsf\u00f6rteckning", "Contents": "Inneh\u00e5ll", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Skapad med <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Expandera sidolist", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "H\u00e4r kan du s\u00f6ka bland dessa dokument. Ange s\u00f6kord nedan och klicka \"s\u00f6k\".\n S\u00f6kningen m\u00e5ste tr\u00e4ffa p\u00e5 samtliga angivna s\u00f6kord.", "Full index on one page": "Hela inneh\u00e5llsf\u00f6rteckningen p\u00e5 en sida", "General Index": "Huvudindex", "Global Module Index": "Global Modulindex", "Go": "G\u00e5", "Hide Search Matches": "D\u00f6lj S\u00f6kresultat", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Inneh\u00e5llsf\u00f6rteckning per inledande bokstav", "Indices and tables:": "Index och tabeller", "Last updated on %(last_updated)s.": "Senast uppdaterad %(last_updated)s.", "Library changes": "F\u00f6r\u00e4ndringar i bibliotek", "Navigation": "Navigation", "Next topic": "N\u00e4sta titel", "Other changes": "\u00d6vriga f\u00f6r\u00e4ndringar", "Overview": "\u00d6versikt", "Permalink to this definition": "Permalink till denna definition", "Permalink to this headline": "Permalink till denna rubrik", "Please activate JavaScript to enable the search\n functionality.": "Var god aktivera JavaScript f\u00f6r s\u00f6kfunktionalitet.", "Preparing search...": "", "Previous topic": "F\u00f6reg\u00e5ende titel", "Quick search": "Snabbs\u00f6k", "Search": "S\u00f6k", "Search Page": "S\u00f6ksida", "Search Results": "S\u00f6kresultat", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "S\u00f6k bland %(docstitle)s", "Searching": "", "Show Source": "Visa k\u00e4llfil", "Table of Contents": "", "This Page": "Denna Sida", "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": "alla funktioner, klasser, villkor", "can be huge": "kan bli stort", "last updated": "", "lists all sections and subsections": "lista \u00f6ver alla paragrafer och underparagrafer", "next chapter": "N\u00e4sta kapitel", "previous chapter": "F\u00f6reg\u00e5ende kapitel", "quick access to all modules": "genv\u00e4g till alla moduler", "search": "s\u00f6k", "search this documentation": "s\u00f6k i det h\u00e4r dokumentet", "the documentation for": ""}, "plural_expr": "(n != 1)"}); +Documentation.addTranslations({"locale": "sv", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "Om dessa dokument", "Automatically generated list of changes in version %(version)s": "Automatiskt genererad lista \u00f6ver f\u00f6r\u00e4ndringar i version %(version)s", "C API changes": "F\u00f6r\u00e4ndringar i C-API", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "D\u00f6lj sidolist", "Complete Table of Contents": "Komplett Inneh\u00e5llsf\u00f6rteckning", "Contents": "Inneh\u00e5ll", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "Skapad med <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "Expandera sidolist", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "H\u00e4r kan du s\u00f6ka bland dessa dokument. Ange s\u00f6kord nedan och klicka \"s\u00f6k\".\n S\u00f6kningen m\u00e5ste tr\u00e4ffa p\u00e5 samtliga angivna s\u00f6kord.", "Full index on one page": "Hela inneh\u00e5llsf\u00f6rteckningen p\u00e5 en sida", "General Index": "Huvudindex", "Global Module Index": "Global Modulindex", "Go": "G\u00e5", "Hide Search Matches": "D\u00f6lj S\u00f6kresultat", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Inneh\u00e5llsf\u00f6rteckning per inledande bokstav", "Indices and tables:": "Index och tabeller", "Last updated on %(last_updated)s.": "Senast uppdaterad %(last_updated)s.", "Library changes": "F\u00f6r\u00e4ndringar i bibliotek", "Navigation": "Navigation", "Next topic": "N\u00e4sta titel", "Other changes": "\u00d6vriga f\u00f6r\u00e4ndringar", "Overview": "\u00d6versikt", "Permalink to this definition": "Permalink till denna definition", "Permalink to this headline": "Permalink till denna rubrik", "Please activate JavaScript to enable the search\n functionality.": "Var god aktivera JavaScript f\u00f6r s\u00f6kfunktionalitet.", "Preparing search...": "", "Previous topic": "F\u00f6reg\u00e5ende titel", "Quick search": "Snabbs\u00f6k", "Search": "S\u00f6k", "Search Page": "S\u00f6ksida", "Search Results": "S\u00f6kresultat", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "S\u00f6k bland %(docstitle)s", "Searching": "", "Show Source": "Visa k\u00e4llfil", "Table of Contents": "", "This Page": "Denna Sida", "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": "alla funktioner, klasser, villkor", "can be huge": "kan bli stort", "last updated": "", "lists all sections and subsections": "lista \u00f6ver alla paragrafer och underparagrafer", "next chapter": "N\u00e4sta kapitel", "previous chapter": "F\u00f6reg\u00e5ende kapitel", "quick access to all modules": "genv\u00e4g till alla moduler", "search": "s\u00f6k", "search this documentation": "s\u00f6k i det h\u00e4r dokumentet", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index 68671ef175e8c182fa7d9ebabe0b33cc45eeac7a..ac597271df514affea2ed52f8c8d30aa6bb8c296 100644 GIT binary patch delta 13989 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 delta 16201 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 diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 5755a5a40..431a16998 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" "MIME-Version: 1.0\n" @@ -18,21 +18,21 @@ msgstr "" "Language: sv\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -45,95 +45,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -141,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -149,60 +137,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -210,833 +192,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Inbyggda" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Modulnivå" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Huvudindex" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "index" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "nästa" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "föregående" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1050,188 +921,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "(i " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Index" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Utgåva" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1250,253 +1143,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1504,11 +1391,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1516,25 +1403,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1544,15 +1431,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1563,22 +1450,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1587,36 +1474,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1624,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1654,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1683,214 +1570,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Sektionsförfattare" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Modulförfattare" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Källkodsförfattare" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Upphovsman:" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametrar" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Returnerar" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Returtyp" @@ -1919,12 +1806,12 @@ msgstr "%s (C-typ)" msgid "%s (C variable)" msgstr "%s (C-variabel)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "funktion" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "medlem" @@ -1932,7 +1819,7 @@ msgstr "medlem" msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "typ" @@ -1940,297 +1827,262 @@ msgstr "typ" msgid "variable" msgstr "variabel" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Nyheter i version %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Förändrat i version %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Ersatt sedan version %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Kastar" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++-typ)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++-medlem)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++-funktion)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++-klass)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "klass" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (inbyggd funktion)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metod)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (klass)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Argument" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "metod" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "nyckelord" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "operator" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "undantag" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "uttryck" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "inbyggda funktioner" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Variabler" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Väcker" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (inbyggd variabel)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (inbyggd klass)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (klass i %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metod)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statisk metod)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metod)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klassmetod)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassmetod)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attribut)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Ersatt" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "klassmetod" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "statisk metod" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (direktiv)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (roll)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "direktiv" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "roll" @@ -2239,209 +2091,200 @@ msgstr "roll" msgid "environment variable; %s" msgstr "miljövariabel; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%skommandorad växel; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "ordlista" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "grammatisk token" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "referensetikett" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "miljövariabel" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "programväxel" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Index" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Söksida" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "se %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "se även %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2453,352 +2296,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[source]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Att göra" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "ursprungsvärde" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[docs]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Modulkällkod" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>Källkod för %s</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Översikt: modulkällkod" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Alla moduler där källkod finns</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2806,66 +2678,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "alias för :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2880,106 +2771,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Uppmärksamma" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Varning" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Risk" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Fel" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Råd" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Viktigt" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Observera" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Se även" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Tips" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Varning" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "fortsättning från föregående sida" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Fortsätter på nästa sida" @@ -2998,7 +2889,7 @@ msgstr "Sök" msgid "Go" msgstr "Gå" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Visa källfil" @@ -3147,13 +3038,13 @@ msgstr "sök" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Sökresultat" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3195,36 +3086,36 @@ msgstr "Förändringar i C-API" msgid "Other changes" msgstr "Övriga förändringar" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Permalink till denna rubrik" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Permalink till denna definition" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Dölj Sökresultat" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3241,76 +3132,89 @@ msgstr "Dölj sidolist" msgid "Contents" msgstr "Innehåll" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3324,140 +3228,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Utgåva" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Fotnoter" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[image]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.js b/sphinx/locale/ta/LC_MESSAGES/sphinx.js index 3e96d3855..8d964a62e 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ta", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(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 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "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": "", "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)"}); +Documentation.addTranslations({"locale": "ta", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(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 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "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": "", "Show Source": "", "Table of Contents": "", "This Page": "", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "", "can be huge": "", "last updated": "", "lists all sections and subsections": "", "next chapter": "", "previous chapter": "", "quick access to all modules": "", "search": "", "search this documentation": "", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index 51ff62ce5216613ff501435131838063fbfc29c8..d88a005bc370c6ed06a414fc6fa7e631af51f9bf 100644 GIT binary patch delta 13932 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 delta 16141 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 Y_6zH`Us%8W!ur4bg?0V^>o2VT0;scbhyVZp diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index 8c1501cec..f7de45a27 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -1,14 +1,15 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: +# Julien Malard <julien.malard@mail.mcgill.ca>, 2019 msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" "MIME-Version: 1.0\n" @@ -18,21 +19,21 @@ msgstr "" "Language: ta\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -45,95 +46,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -141,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -149,60 +138,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -210,833 +193,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" -msgstr "" +msgstr "%d கண்டு ப்பிடித்த விட்டது" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" -msgstr "" +msgstr "அடுத்த" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1050,188 +922,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1250,253 +1144,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1504,11 +1392,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1516,25 +1404,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1544,15 +1432,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1563,22 +1451,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1587,36 +1475,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1624,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1654,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1683,214 +1571,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1919,12 +1807,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "" @@ -1932,7 +1820,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "" @@ -1940,297 +1828,262 @@ msgstr "" msgid "variable" msgstr "" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "" @@ -2239,209 +2092,200 @@ msgstr "" msgid "environment variable; %s" msgstr "" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2453,352 +2297,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2806,66 +2679,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2880,106 +2772,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "" @@ -2998,7 +2890,7 @@ msgstr "" msgid "Go" msgstr "" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "" @@ -3147,13 +3039,13 @@ msgstr "" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3195,36 +3087,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3241,76 +3133,89 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3324,140 +3229,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.js b/sphinx/locale/tr/LC_MESSAGES/sphinx.js index 61caf62f4..751393316 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "tr", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", \u015funun i\u00e7inde:", "About these documents": "Bu belgeler hakk\u0131nda", "Automatically generated list of changes in version %(version)s": "%(version)s s\u00fcr\u00fcm\u00fcndeki de\u011fi\u015fikliklerin otomatik olarak \u00fcretilmi\u015f listesi", "C API changes": "C API'sindeki de\u011fi\u015fiklikler", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Yan \u00e7ubu\u011fu daralt", "Complete Table of Contents": "Ayr\u0131nt\u0131l\u0131 \u0130\u00e7indekiler Tablosu", "Contents": "\u0130\u00e7indekiler", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s ile olu\u015fturulmu\u015ftur.", "Expand sidebar": "Yan \u00e7ubu\u011fu geni\u015flet", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Burada belgeler i\u00e7inde arama yapabilirsiniz. Arad\u0131\u011f\u0131n\u0131z kelimeyi \na\u015fa\u011f\u0131daki kutuya yaz\u0131p \"ara\" d\u00fc\u011fmesine bas\u0131n\u0131z. Arama i\u015flevi \notomatik olarak b\u00fct\u00fcn kelimeleri arayacakt\u0131r. Eksik kelime i\u00e7eren \nsayfalar sonu\u00e7 listesinde g\u00f6r\u00fcnmez.", "Full index on one page": "B\u00fct\u00fcn dizin tek sayfada", "General Index": "Genel Dizin", "Global Module Index": "Global Mod\u00fcl Dizini", "Go": "Git", "Hide Search Matches": "Arama Sonu\u00e7lar\u0131n\u0131 Gizle", "Index": "Dizin", "Index – %(key)s": "Dizin – %(key)s", "Index pages by letter": "Harfe g\u00f6re dizin sayfalar\u0131", "Indices and tables:": "Dizinler ve tablolar", "Last updated on %(last_updated)s.": "Son g\u00fcncelleme: %(last_updated)s.", "Library changes": "K\u00fct\u00fcphane de\u011fi\u015fiklikleri", "Navigation": "Gezinti", "Next topic": "Sonraki konu", "Other changes": "Di\u011fer de\u011fi\u015fiklikler", "Overview": "Genel Bak\u0131\u015f", "Permalink to this definition": "Bu tan\u0131m\u0131n kal\u0131c\u0131 ba\u011flant\u0131s\u0131", "Permalink to this headline": "Bu ba\u015fl\u0131\u011f\u0131n kal\u0131c\u0131 ba\u011flant\u0131s\u0131", "Please activate JavaScript to enable the search\n functionality.": "Arama i\u015flevini kullanabilmek i\u00e7in l\u00fctfen JavaScript'i\n etkinle\u015ftirin.", "Preparing search...": "Aramaya haz\u0131rlan\u0131yor...", "Previous topic": "\u00d6nceki konu", "Quick search": "H\u0131zl\u0131 Arama", "Search": "Ara", "Search Page": "Arama Sayfas\u0131", "Search Results": "Arama Sonu\u00e7lar\u0131", "Search finished, found %s page(s) matching the search query.": "Arama tamamland\u0131. Sorguyu i\u00e7eren %s sayfa bulundu.", "Search within %(docstitle)s": "%(docstitle)s i\u00e7inde ara", "Searching": "Aran\u0131yor", "Show Source": "Kayna\u011f\u0131 G\u00f6ster", "Table of Contents": "", "This Page": "Bu Sayfa", "Welcome! This is": "Ho\u015fgeldiniz! Kar\u015f\u0131n\u0131zda", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Arama sonucunda herhangi bir belge bulunamad\u0131. B\u00fct\u00fcn kelimeleri do\u011fru yazd\u0131\u011f\u0131n\u0131zdan ve gerekli b\u00fct\u00fcn kategorileri se\u00e7ti\u011finizden emin olun.", "all functions, classes, terms": "b\u00fct\u00fcn fonksiyonlar, s\u0131n\u0131flar, terimler", "can be huge": "\u00e7ok b\u00fcy\u00fck olabilir", "last updated": "son g\u00fcncelleme", "lists all sections and subsections": "b\u00fct\u00fcn b\u00f6l\u00fcmler ve alt b\u00f6l\u00fcmler listelenir", "next chapter": "sonraki b\u00f6l\u00fcm", "previous chapter": "\u00f6nceki b\u00f6l\u00fcm", "quick access to all modules": "b\u00fct\u00fcn mod\u00fcllere h\u0131zl\u0131 eri\u015fim", "search": "ara", "search this documentation": "Bu belgelerde ara", "the documentation for": "belgelendirme konusu: "}, "plural_expr": "(n > 1)"}); +Documentation.addTranslations({"locale": "tr", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": ", \u015funun i\u00e7inde:", "About these documents": "Bu belgeler hakk\u0131nda", "Automatically generated list of changes in version %(version)s": "%(version)s s\u00fcr\u00fcm\u00fcndeki de\u011fi\u015fikliklerin otomatik olarak \u00fcretilmi\u015f listesi", "C API changes": "C API'sindeki de\u011fi\u015fiklikler", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "Yan \u00e7ubu\u011fu daralt", "Complete Table of Contents": "Ayr\u0131nt\u0131l\u0131 \u0130\u00e7indekiler Tablosu", "Contents": "\u0130\u00e7indekiler", "Copyright": "Copyright", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "<a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s ile olu\u015fturulmu\u015ftur.", "Expand sidebar": "Yan \u00e7ubu\u011fu geni\u015flet", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "Burada belgeler i\u00e7inde arama yapabilirsiniz. Arad\u0131\u011f\u0131n\u0131z kelimeyi \na\u015fa\u011f\u0131daki kutuya yaz\u0131p \"ara\" d\u00fc\u011fmesine bas\u0131n\u0131z. Arama i\u015flevi \notomatik olarak b\u00fct\u00fcn kelimeleri arayacakt\u0131r. Eksik kelime i\u00e7eren \nsayfalar sonu\u00e7 listesinde g\u00f6r\u00fcnmez.", "Full index on one page": "B\u00fct\u00fcn dizin tek sayfada", "General Index": "Genel Dizin", "Global Module Index": "Global Mod\u00fcl Dizini", "Go": "Git", "Hide Search Matches": "Arama Sonu\u00e7lar\u0131n\u0131 Gizle", "Index": "Dizin", "Index – %(key)s": "Dizin – %(key)s", "Index pages by letter": "Harfe g\u00f6re dizin sayfalar\u0131", "Indices and tables:": "Dizinler ve tablolar", "Last updated on %(last_updated)s.": "Son g\u00fcncelleme: %(last_updated)s.", "Library changes": "K\u00fct\u00fcphane de\u011fi\u015fiklikleri", "Navigation": "Gezinti", "Next topic": "Sonraki konu", "Other changes": "Di\u011fer de\u011fi\u015fiklikler", "Overview": "Genel Bak\u0131\u015f", "Permalink to this definition": "Bu tan\u0131m\u0131n kal\u0131c\u0131 ba\u011flant\u0131s\u0131", "Permalink to this headline": "Bu ba\u015fl\u0131\u011f\u0131n kal\u0131c\u0131 ba\u011flant\u0131s\u0131", "Please activate JavaScript to enable the search\n functionality.": "Arama i\u015flevini kullanabilmek i\u00e7in l\u00fctfen JavaScript'i\n etkinle\u015ftirin.", "Preparing search...": "Aramaya haz\u0131rlan\u0131yor...", "Previous topic": "\u00d6nceki konu", "Quick search": "H\u0131zl\u0131 Arama", "Search": "Ara", "Search Page": "Arama Sayfas\u0131", "Search Results": "Arama Sonu\u00e7lar\u0131", "Search finished, found %s page(s) matching the search query.": "Arama tamamland\u0131. Sorguyu i\u00e7eren %s sayfa bulundu.", "Search within %(docstitle)s": "%(docstitle)s i\u00e7inde ara", "Searching": "Aran\u0131yor", "Show Source": "Kayna\u011f\u0131 G\u00f6ster", "Table of Contents": "", "This Page": "Bu Sayfa", "Welcome! This is": "Ho\u015fgeldiniz! Kar\u015f\u0131n\u0131zda", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Arama sonucunda herhangi bir belge bulunamad\u0131. B\u00fct\u00fcn kelimeleri do\u011fru yazd\u0131\u011f\u0131n\u0131zdan ve gerekli b\u00fct\u00fcn kategorileri se\u00e7ti\u011finizden emin olun.", "all functions, classes, terms": "b\u00fct\u00fcn fonksiyonlar, s\u0131n\u0131flar, terimler", "can be huge": "\u00e7ok b\u00fcy\u00fck olabilir", "last updated": "son g\u00fcncelleme", "lists all sections and subsections": "b\u00fct\u00fcn b\u00f6l\u00fcmler ve alt b\u00f6l\u00fcmler listelenir", "next chapter": "sonraki b\u00f6l\u00fcm", "previous chapter": "\u00f6nceki b\u00f6l\u00fcm", "quick access to all modules": "b\u00fct\u00fcn mod\u00fcllere h\u0131zl\u0131 eri\u015fim", "search": "ara", "search this documentation": "Bu belgelerde ara", "the documentation for": "belgelendirme konusu: "}, "plural_expr": "(n > 1)"}); \ No newline at end of file diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 277edb0eed812e2c46e8e206866b2d03149146cc..136d35adb2560ab862d5cfc136ea01252844a8fc 100644 GIT binary patch delta 13978 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 R{~Dgp|LKJu^LH1z^=}=G0&M^Q delta 16182 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 HP3+$Qf8=@G diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 1678fe0f4..f4a7e0687 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" "MIME-Version: 1.0\n" @@ -20,21 +20,21 @@ msgstr "" "Language: tr\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -47,95 +47,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -143,7 +131,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -151,60 +139,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -212,833 +194,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "Şekil %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "Tablo %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "Liste %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python'ı İyileştirme Önerileri; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Gömülü Öğeler" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Modül düzeyi" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Genel Dizin" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "dizin" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "sonraki" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "önceki" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s belgelendirme çalışması" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1052,188 +923,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (şurada: " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Dizin" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Sürüm" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1252,253 +1145,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1506,11 +1393,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1518,25 +1405,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1546,15 +1433,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1565,22 +1452,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1589,36 +1476,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1626,29 +1513,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1656,26 +1543,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1685,214 +1572,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Bölümün yazarı: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Modülün yazarı: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Kodun yazarı: " -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Yazarı: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametreler" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Dönüş değeri:" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Dönüş tipi" @@ -1921,12 +1808,12 @@ msgstr "%s (C tipi)" msgid "%s (C variable)" msgstr "%s (C değişkeni)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "fonksiyonu" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "öğesi" @@ -1934,7 +1821,7 @@ msgstr "öğesi" msgid "macro" msgstr "makrosu" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "tipi" @@ -1942,297 +1829,262 @@ msgstr "tipi" msgid "variable" msgstr "değişkeni" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "%s sürümüyle geldi" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "%s sürümünde değişti" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "%s sürümünden beri önerilmiyor" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "Şablon Parametreleri" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Şunu verir: " -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ tipi)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++ öğesi)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++ fonksiyonu)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++ sınıfı)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (C++ enum sabiti)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (C++ numaralandırıcısı)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "sınıfı" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "numaralandırıcı" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (gömülü fonksiyon)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodu)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (sınıfı)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global değişken veya sabit)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s niteliği)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Argümanlar" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (modül)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "metodu" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "verisi" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "niteliği" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "modülü" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "anahtar sözcük" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "işleç" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "nesne" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "istisnası" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "deyim" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "gömülü fonksiyon" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Değişkenler" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Şunu tetikler:" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modülü içinde)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (gömülü değişken)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modülü içinde)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (gömülü sınıf)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (%s içinde bir sınıf)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metodu)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statik metodu)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statik metodu)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s sınıf metodu)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s sınıf metodu)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s niteliği)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Python Modül Dizini" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "modüller" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Önerilmiyor" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "sınıf metodu" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "statik metodu" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (önerilmiyor)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (yönerge)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (rol)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "yönergesi" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "rolü" @@ -2241,209 +2093,200 @@ msgstr "rolü" msgid "environment variable; %s" msgstr "çevre değişkeni; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%skomut satırı seçeneği; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "sözlük terimi" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "dilbilgisi girdisi" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "referans etiketi" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "çevre değişkeni" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "program seçeneği" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Dizin" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Modül Dizini" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Arama Sayfası" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "bkz. %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "ayrıca bkz. %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Simgeler" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2455,352 +2298,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[çizim: %s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[çizim]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s içinde)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[kaynak]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Yapılacaklar" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "<<özgün girdi>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "(<<özgün girdi>> %s içinde, %d. satırda.)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "özgün girdi" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[belgeler]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "Modül kodu" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>%s öğesinin kaynak kodu</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "Genel bakış: modül kodu" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Kodları mevcut bütün modüller</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2808,66 +2680,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "şunun takma adı: :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2882,106 +2773,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Dikkat" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Uyarı" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Tehlike" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Hata" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "İpucu" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Önemli" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Not" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Ayrıca bkz." -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Tüyo" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Uyarı" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "önceki sayfadan devam" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "Devamı sonraki sayfada" @@ -3000,7 +2891,7 @@ msgstr "Ara" msgid "Go" msgstr "Git" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Kaynağı Göster" @@ -3149,13 +3040,13 @@ msgstr "ara" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Arama Sonuçları" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3197,36 +3088,36 @@ msgstr "C API'sindeki değişiklikler" msgid "Other changes" msgstr "Diğer değişiklikler" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Bu başlığın kalıcı bağlantısı" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Bu tanımın kalıcı bağlantısı" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Arama Sonuçlarını Gizle" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "Aranıyor" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "Aramaya hazırlanıyor..." -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Arama tamamlandı. Sorguyu içeren %s sayfa bulundu." -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ", şunun içinde:" @@ -3243,76 +3134,89 @@ msgstr "Yan çubuğu daralt" msgid "Contents" msgstr "İçindekiler" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3326,140 +3230,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "Bu tablonun kalıcı bağlantısı" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "Bu kodun kalıcı bağlantısı" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "Bu resmin kalıcı bağlantısı" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "Bu içindekiler tablosunun kalıcı bağlantısı" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Sürüm" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "sayfa" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "Dipnotları" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[resim: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[resim]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js index 5a555b25f..82116dceb 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "uk_UA", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\u041f\u0440\u043e \u0446\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", "Automatically generated list of changes in version %(version)s": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e\u0433\u043e \u0437\u0433\u0435\u043d\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0437\u043c\u0456\u043d \u0432 \u0432\u0435\u0440\u0441\u0456\u0457 %(version)s", "C API changes": "\u0437\u043c\u0456\u043d\u0438 C API", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "\u041f\u043e\u0432\u043d\u0438\u0439 \u0417\u043c\u0456\u0441\u0442", "Contents": "", "Copyright": "\u0410\u0432\u0442\u043e\u0440\u0441\u044c\u043a\u0456 \u043f\u0440\u0430\u0432\u0430", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u0421\u0442\u0432\u043e\u0440\u0435\u043d\u043e \u0437 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u044f\u043c <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u0417\u0432\u0456\u0434\u0441\u0438 \u0432\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0448\u0443\u043a\u0430\u0442\u0438 \u0446\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438. \u0412\u0432\u0435\u0434\u0456\u0442\u044c \u0432\u0430\u0448\u0456 \u043f\u043e\u0448\u0443\u043a\u043e\u0432\u0456\n \u0441\u043b\u043e\u0432\u0430 \u0432 \u043f\u043e\u043b\u0435 \u043d\u0438\u0436\u0447\u0435 \u0442\u0430 \u043d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c \"\u043f\u043e\u0448\u0443\u043a\". \u0417\u0430\u0443\u0432\u0430\u0436\u0442\u0435 \u0449\u043e \u0444\u0443\u043d\u043a\u0446\u0456\u044f\n \u043f\u043e\u0448\u0443\u043a\u0443 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0448\u0443\u043a\u0430\u0442\u0438\u043c\u0435 \u0437\u0430 \u0432\u0441\u0456\u043c\u0430 \u0441\u043b\u043e\u0432\u0430\u043c\u0438. \u0421\u0442\u043e\u0440\u0456\u043d\u043a\u0438\n \u0449\u043e \u043c\u0456\u0441\u0442\u044f\u0442\u044c \u043c\u0435\u043d\u0448\u0435 \u0441\u043b\u0456\u0432 \u043d\u0435 \u0437'\u044f\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0443\u044e\u0447\u043e\u043c\u0443 \u0441\u043f\u0438\u0441\u043a\u0443.", "Full index on one page": "\u041f\u043e\u0432\u043d\u0438\u0439 \u0456\u043d\u0434\u0435\u043a\u0441 \u043d\u0430 \u043e\u0434\u043d\u0456\u0439 \u0441\u0442\u043e\u0440\u0456\u043d\u0446\u0456", "General Index": "\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0438\u0439 \u0456\u043d\u0434\u0435\u043a\u0441", "Global Module Index": "\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0438\u0439 \u0456\u043d\u0434\u0435\u043a\u0441 \u043c\u043e\u0434\u0443\u043b\u0456\u0432", "Go": "\u0412\u043f\u0435\u0440\u0435\u0434", "Hide Search Matches": "\u041f\u0440\u0438\u0445\u043e\u0432\u0430\u0442\u0438 \u0441\u043f\u0456\u0432\u043f\u0430\u0434\u0456\u043d\u043d\u044f \u043f\u043e\u0448\u0443\u043a\u0443", "Index": "\u0406\u043d\u0434\u0435\u043a\u0441", "Index – %(key)s": "\u0406\u043d\u0434\u0435\u043a\u0441 – %(key)s", "Index pages by letter": "\u0406\u043d\u0434\u0435\u043a\u0441\u043d\u0456 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438 \u043f\u043e \u0441\u0438\u043c\u0432\u043e\u043b\u0430\u043c", "Indices and tables:": "\u0406\u043d\u0434\u0435\u043a\u0441\u0438 \u0442\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0456:", "Last updated on %(last_updated)s.": "\u0412\u043e\u0441\u0442\u0430\u043d\u043d\u0454 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043e %(last_updated)s.", "Library changes": "\u0417\u043c\u0456\u043d\u0438 \u0432 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u0446\u0456", "Navigation": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u044f", "Next topic": "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0430 \u0442\u0435\u043c\u0430", "Other changes": "\u0406\u043d\u0448\u0456 \u0437\u043c\u0456\u043d\u0438", "Overview": "\u041e\u0433\u043b\u044f\u0434", "Permalink to this definition": "\u041f\u043e\u0441\u0442\u0456\u0439\u043d\u0435 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0446\u0435 \u0432\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f", "Permalink to this headline": "\u041f\u043e\u0441\u0442\u0456\u0439\u043d\u0435 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0446\u0435\u0439 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", "Please activate JavaScript to enable the search\n functionality.": "\u0411\u0443\u0434\u044c-\u043b\u0430\u0441\u043a\u0430 \u0432\u0456\u043c\u043a\u043d\u0456\u0442\u044c \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u043a\u0443 JavaScript, \u0449\u043e\u0431 \u0432\u0432\u0456\u043a\u043d\u0443\u0442\u0438\n\"\n\" \u043f\u043e\u0448\u0443\u043a.", "Preparing search...": "", "Previous topic": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u0440\u043e\u0437\u0434\u0456\u043b", "Quick search": "\u0428\u0432\u0438\u0434\u043a\u0438\u0439 \u043f\u043e\u0448\u0443\u043a", "Search": "\u041f\u043e\u0448\u0443\u043a", "Search Page": "\u0421\u0442\u043e\u0440\u0456\u043d\u043a\u0430 \u043f\u043e\u0448\u0443\u043a\u0443", "Search Results": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0438 \u043f\u043e\u0448\u0443\u043a\u0443", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "\u0428\u0443\u043a\u0430\u0442\u0438 \u0432 %(docstitle)s", "Searching": "", "Show Source": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u0432\u0438\u0445\u0456\u0434\u043d\u0438\u0439 \u0442\u0435\u043a\u0441\u0442", "Table of Contents": "", "This Page": "\u0426\u044f \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0430", "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": "\u0432\u0441\u0456 \u0444\u0443\u043d\u043a\u0446\u0456\u0457, \u043a\u043b\u0430\u0441\u0438, \u0442\u0435\u0440\u043c\u0456\u043d\u0438", "can be huge": "\u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u0432\u0435\u043b\u0438\u0447\u0435\u0437\u043d\u0438\u043c", "last updated": "", "lists all sections and subsections": "\u043f\u0435\u0440\u0435\u043b\u0456\u0447\u0438\u0442\u0438 \u0432\u0441\u0456 \u0441\u0435\u043a\u0446\u0456\u0457 \u0442\u0430 \u043f\u0456\u0434\u0441\u0435\u043a\u0446\u0456\u0457", "next chapter": "\u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0438\u0439 \u0440\u043e\u0437\u0434\u0456\u043b", "previous chapter": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u0440\u043e\u0437\u0434\u0456\u043b", "quick access to all modules": "\u0448\u0432\u0438\u0434\u043a\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043e \u0432\u0441\u0456\u0445 \u043c\u043e\u0434\u0443\u043b\u0456\u0432", "search": "\u043f\u043e\u0448\u0443\u043a", "search this documentation": "\u0448\u0443\u043a\u0430\u0442\u0438 \u0446\u044e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0456\u044e", "the documentation for": ""}, "plural_expr": "(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3)"}); +Documentation.addTranslations({"locale": "uk_UA", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\u041f\u0440\u043e \u0446\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", "Automatically generated list of changes in version %(version)s": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e\u0433\u043e \u0437\u0433\u0435\u043d\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0437\u043c\u0456\u043d \u0432 \u0432\u0435\u0440\u0441\u0456\u0457 %(version)s", "C API changes": "\u0437\u043c\u0456\u043d\u0438 C API", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "\u041f\u043e\u0432\u043d\u0438\u0439 \u0417\u043c\u0456\u0441\u0442", "Contents": "", "Copyright": "\u0410\u0432\u0442\u043e\u0440\u0441\u044c\u043a\u0456 \u043f\u0440\u0430\u0432\u0430", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u0421\u0442\u0432\u043e\u0440\u0435\u043d\u043e \u0437 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u044f\u043c <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u0417\u0432\u0456\u0434\u0441\u0438 \u0432\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0448\u0443\u043a\u0430\u0442\u0438 \u0446\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438. \u0412\u0432\u0435\u0434\u0456\u0442\u044c \u0432\u0430\u0448\u0456 \u043f\u043e\u0448\u0443\u043a\u043e\u0432\u0456\n \u0441\u043b\u043e\u0432\u0430 \u0432 \u043f\u043e\u043b\u0435 \u043d\u0438\u0436\u0447\u0435 \u0442\u0430 \u043d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c \"\u043f\u043e\u0448\u0443\u043a\". \u0417\u0430\u0443\u0432\u0430\u0436\u0442\u0435 \u0449\u043e \u0444\u0443\u043d\u043a\u0446\u0456\u044f\n \u043f\u043e\u0448\u0443\u043a\u0443 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0448\u0443\u043a\u0430\u0442\u0438\u043c\u0435 \u0437\u0430 \u0432\u0441\u0456\u043c\u0430 \u0441\u043b\u043e\u0432\u0430\u043c\u0438. \u0421\u0442\u043e\u0440\u0456\u043d\u043a\u0438\n \u0449\u043e \u043c\u0456\u0441\u0442\u044f\u0442\u044c \u043c\u0435\u043d\u0448\u0435 \u0441\u043b\u0456\u0432 \u043d\u0435 \u0437'\u044f\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0443\u044e\u0447\u043e\u043c\u0443 \u0441\u043f\u0438\u0441\u043a\u0443.", "Full index on one page": "\u041f\u043e\u0432\u043d\u0438\u0439 \u0456\u043d\u0434\u0435\u043a\u0441 \u043d\u0430 \u043e\u0434\u043d\u0456\u0439 \u0441\u0442\u043e\u0440\u0456\u043d\u0446\u0456", "General Index": "\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0438\u0439 \u0456\u043d\u0434\u0435\u043a\u0441", "Global Module Index": "\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0438\u0439 \u0456\u043d\u0434\u0435\u043a\u0441 \u043c\u043e\u0434\u0443\u043b\u0456\u0432", "Go": "\u0412\u043f\u0435\u0440\u0435\u0434", "Hide Search Matches": "\u041f\u0440\u0438\u0445\u043e\u0432\u0430\u0442\u0438 \u0441\u043f\u0456\u0432\u043f\u0430\u0434\u0456\u043d\u043d\u044f \u043f\u043e\u0448\u0443\u043a\u0443", "Index": "\u0406\u043d\u0434\u0435\u043a\u0441", "Index – %(key)s": "\u0406\u043d\u0434\u0435\u043a\u0441 – %(key)s", "Index pages by letter": "\u0406\u043d\u0434\u0435\u043a\u0441\u043d\u0456 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438 \u043f\u043e \u0441\u0438\u043c\u0432\u043e\u043b\u0430\u043c", "Indices and tables:": "\u0406\u043d\u0434\u0435\u043a\u0441\u0438 \u0442\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0456:", "Last updated on %(last_updated)s.": "\u0412\u043e\u0441\u0442\u0430\u043d\u043d\u0454 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043e %(last_updated)s.", "Library changes": "\u0417\u043c\u0456\u043d\u0438 \u0432 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u0446\u0456", "Navigation": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u044f", "Next topic": "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0430 \u0442\u0435\u043c\u0430", "Other changes": "\u0406\u043d\u0448\u0456 \u0437\u043c\u0456\u043d\u0438", "Overview": "\u041e\u0433\u043b\u044f\u0434", "Permalink to this definition": "\u041f\u043e\u0441\u0442\u0456\u0439\u043d\u0435 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0446\u0435 \u0432\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f", "Permalink to this headline": "\u041f\u043e\u0441\u0442\u0456\u0439\u043d\u0435 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0446\u0435\u0439 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", "Please activate JavaScript to enable the search\n functionality.": "\u0411\u0443\u0434\u044c-\u043b\u0430\u0441\u043a\u0430 \u0432\u0456\u043c\u043a\u043d\u0456\u0442\u044c \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u043a\u0443 JavaScript, \u0449\u043e\u0431 \u0432\u0432\u0456\u043a\u043d\u0443\u0442\u0438\n\"\n\" \u043f\u043e\u0448\u0443\u043a.", "Preparing search...": "", "Previous topic": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u0440\u043e\u0437\u0434\u0456\u043b", "Quick search": "\u0428\u0432\u0438\u0434\u043a\u0438\u0439 \u043f\u043e\u0448\u0443\u043a", "Search": "\u041f\u043e\u0448\u0443\u043a", "Search Page": "\u0421\u0442\u043e\u0440\u0456\u043d\u043a\u0430 \u043f\u043e\u0448\u0443\u043a\u0443", "Search Results": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0438 \u043f\u043e\u0448\u0443\u043a\u0443", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "\u0428\u0443\u043a\u0430\u0442\u0438 \u0432 %(docstitle)s", "Searching": "", "Show Source": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u0432\u0438\u0445\u0456\u0434\u043d\u0438\u0439 \u0442\u0435\u043a\u0441\u0442", "Table of Contents": "", "This Page": "\u0426\u044f \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0430", "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": "\u0432\u0441\u0456 \u0444\u0443\u043d\u043a\u0446\u0456\u0457, \u043a\u043b\u0430\u0441\u0438, \u0442\u0435\u0440\u043c\u0456\u043d\u0438", "can be huge": "\u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u0432\u0435\u043b\u0438\u0447\u0435\u0437\u043d\u0438\u043c", "last updated": "", "lists all sections and subsections": "\u043f\u0435\u0440\u0435\u043b\u0456\u0447\u0438\u0442\u0438 \u0432\u0441\u0456 \u0441\u0435\u043a\u0446\u0456\u0457 \u0442\u0430 \u043f\u0456\u0434\u0441\u0435\u043a\u0446\u0456\u0457", "next chapter": "\u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0438\u0439 \u0440\u043e\u0437\u0434\u0456\u043b", "previous chapter": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u0440\u043e\u0437\u0434\u0456\u043b", "quick access to all modules": "\u0448\u0432\u0438\u0434\u043a\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043e \u0432\u0441\u0456\u0445 \u043c\u043e\u0434\u0443\u043b\u0456\u0432", "search": "\u043f\u043e\u0448\u0443\u043a", "search this documentation": "\u0448\u0443\u043a\u0430\u0442\u0438 \u0446\u044e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0456\u044e", "the documentation for": ""}, "plural_expr": "(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3)"}); \ No newline at end of file diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 64dca7ad5603c90f315278562d9427a3aa8e8ce4..66b95e66c2cbaf4898d91a5c66f6e09a295d7257 100644 GIT binary patch delta 13945 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 ZJs|wQ_srh#Qmnn`zkFy%|L)MX{ta)2)OP>? delta 16208 zcmeI$33OCdzVGo<83e+dK!6b7FhoKi31KG8A;=&CGDT)8NfAOqRY+ABg=!QTw3VS6 zK@f*_LdA(v6cABq5V;KvqKLGJh^+`JI6<qR@B6ELY_M;?cVG8<@7;CZx~^_Nd!Jzs z|NY;)j=8)sX6g2r;0N(Bt1bR{HOjJ*F*#ASEB_?7v8=UJ8)0kQf-UhQT<o%}xOB@} z!MiInEb9xdH_NiD`dqKo&a%!@Z`Izi`cbdj!LsV%xQ>=Jm+SscmQ`+9LF-EjrCe}# z<^eo_nLPLjE~B2<)v^ZR1Go>*;#l00Z3a}kn`Kp}-UDOtddC|vjd~vTz*}$tzKXrD zN_PfJ|JFbXRk%=!m2oDfU=Y>7BdCTCVgeq)+IR-*;3ceywdtiAHbo661FK?p)cpZi z18>4wScKK--<nN94KGGDybkrkCOv>Jqh8#HdhR{cDt&=!D5j^mUl(oaEl}<BLk%Dg zHNgTLfzz=MzJ@_H6iqy25~{&0)KcVN100L$IDkpG6zk(ds2RWP+<z0(sUJtZSGBig zvAR|YHo@`O5O2m7xVAU(-%4Qz7uw@2hNTfdiIwn0oQylM5bYeZ6t^LHX5Hbq1N&1y zhw<3CuVuBxL8uPrVLq<Gy7&WXV6}3C=0g8m6S@hgP%Us=iVFQIRBk+oM9q4_x&Ila zQvb#=xu0b<rrr+;f>nrm?_tzZK7~zjJ9fe2K?*4p60b8e?v5H^F0x~+v1sFRR0GeV zmf{uEQoV(G{uF9yzDI?+4&hM89Z*Z#12wUcsQxB81{YCi#Dyo29cArBcAgbIz`WQE zn^7N*H(&)Sxpv_-_zuS5`>0TV>KHxHBv}*Wf0mnnO~xlt$z5$wWGRDIG6kY%HACLD zitu`T7L{a|uoBkgVr6WEoFUe=s7Q=QEm0Y2U_n%9SE2^K&+!XvPQBJ((_RN`s{P-c zf@VGu6}o%S#;sTdkD)sJ7%dlJCJYK`!y#r#+Mx#08>4U}l3!MybA7$zGZ@45U6_G; zu><{E7b&QtHbc#gP8dtwgIe1X$Azd!twDA8zT<fuM?GekIY}pD3HAM`rR{p7F%K1? z3LJw=FsN)iNuef254S9iZ7Tue@H*5?ZbU_9HG1&{ByX)2Bh3DvhI)S%R>dXG^$@00 ze*jbQ0IJ=KsDVU{B>uWkXQX+c32My;pt9SI3RyXh#aXDxyoJh%qu2&N#5!1glzFci zYPYmUwbuugJ7cjf7NBxr&M4xq0c_xc)^sB#<4)9edf)LP>O_nmZA?R*a5<QR<FOd; z$97mH&t!df>_B}nDuUY`|BUsh{}^-%2{)NFZH+a!(F^P15L6@zu^LvOLVXLy<0_~A z2x>+zU<-T?6YwY0d+{u|wrdkqd)J~S9_&m(q0B+8-5{qv8a3jHsE!t(8d!-6^;*>P zPoW0975O2w_M*;#Sk_BP-4xYPYgEUbP)pGtThqTajDi}v8FjQSMRoWFYDULU$?_9w zptVSK4WK@%p>)*!PN*3VK*nH=M_#eEU>epQZ+>ICV<z=7Ox6B>fI<cr-o#<}S1iMU z6HElQp?1kJ)PZsd72+ln%{h^aQ>lAU9Uee7l+|hyX93Q`>+vA!=uMt%+RednK`!J| zxDQ`J&3J;_d}1v`)gO22`>`qY?@$A-mv6pouES2$7okGF9oOS-EJSw!hY{|<nb??% zTFTWJjHYleg_ZaK#$Y>->8LYyq&^1Q<8n;IUDyzhVKcmdJ+Q$P6M;O`KsKY6>}8C_ zKcKejK2$DToI?CtQK(#Gvb`N%Lwx{d;ZRh^3-LI<fVmhV-Z^*_Z^wqkrr}3X13Qdr z=Nu}xE?^~$nr7;8sCwcw;;$rX%!MJ?67Rs7*bAdd%n6o*+Sg^M<a-Dk;Y+AwJ%XCi zXV?{gz{c32)I?$gY8y^KEyXlcZoD3((1t?2>868RWZA4)sE&@I&Vh4S1!KJ?iE83x z>K#!7xf|8t^H?1Zqt1zwj$fe;9GB1RmIhdrdayNxYbkWb7B~?b;H{X98&Dl=!z4V4 z8rV131S_*u`d}(5`=?<#?nVvh8&o^-Gt5z(iAv%D*hTw)8U-cCLs$(TN3G2k?2NCV zvikyd!}M}<v=*c4Va&#JH~`c9W(oY*pZZhS4!?6u4VVLK9CpzDpGHAheLrfXTb%k~ zRFa)RHIQCm?oUR|U_L6@?nljZJ1WG-uoixe@fgjX({qWa`|Yqk4#HIWw+blqz~7=? z+=n&s&)62vqPAu7EVDFCF_U^X)RL578ZJgH<#VW9If`1kkI+VIwpqHSs3q!z!Fm)5 zDJ0^}n1vx!gS)XVo=5GHYvz~%)kJmF8*5_`Di`KpD&B*d!0V`pzU6ohQ>a&)%V~-2 z<`Vx0DXir}2h5&lX6i#V5Wq3G2)p42n1M+*n~)F0`qZbQI$DSt$bHWBSFknpcToe2 zo^SeTg9+5#^ND{$3Kd)!gey^@ejhc`lNg7U7MRe*qdIJfYPdHxz*1Dm7h@M(fj8ir zNE%r6=tq&d6O|M9V;|fcq@WJI#m4wEcEZNLF<Cwe_2B)ewLXbjs!OQsPFQFTu5qX( zdIA->Fe*~JPy_rLwUpIvG3P@w$6#9uJ-E>mTjI^AP(6$taX;#SioVrkeOuH(hod4l z12wQaQSEF*MdlM!^2RT+tkKxlaUCi$U*T}=|6aG5gJ%`Sa^pqR+U&p~cnEba*o#er z>8P1Z#6}pvWL$;X70;k%d;&Gl?@<w}zr-YMCN`x$I#MUxvnf>K!u{9}A47Hc1!@=k zfSoaAsrj{=fK90X1~q^OP?31Wxql2}sb5A#CVH94oyM3#y*+lrF?bFATdP&Td$Acl zgc{)<9E_)(`yFpL-viyT64xhVE>1-))l(RUr!WS;L`~!y)V9_yn<m%}b8t2W`%~CX zK_iR)tqEN#Y)-u|+F0b&mtq_0n@}@;4|R}yhpE{7PBVbPsQ2?w*XKF)hfx#Vi<R+D zce4I9C>-TNRs0n7!Z)aGmVB3)Nk`PS%0?UgI1GP>ir8OJp{~5#yw@CuQt$56e~UWk z9zk`y19j5wSx)>l^LL#Km$3%*8Y|398(}r-gHQv@Lxu1+n1*{$q5TS#Bh6Qu$c)1{ z>a$S${T5Wxu6BG9Yf^tL=sa);ujRtWsF7A(WoF(S>rhWc4YUU;gaufD(@@!dz`1@J z70Gkh5`V;OY#uU^n~1%s2T=nGzDhwMIfB|oComo_p$1g*cYMiWCse2>qh@|9>i*N1 zhwordOkZsxQHl$wKa5qd`Q7H=Nk`SYVH@rLeiYPTIkv?OsBLusHRI254aV~?`2_zW zNLJ2TGlRErJoPiEr0jo>nRx-~{X4KVK8F+WICjMD>vTS_{^b-JaA75C+dPSS;8|3I zpI|ITtv3x-#&qf(Q1|mu+jW8C16Y^(>rVYBD#AaYc185PX2LD8viARQ3JUo+OhhmC z#oO>kd=qcNh8xV92XF-Squ3SO+-DAyDX69TJ*vGwqS`xw33ve;V%+`4YcZ%b&7q(X zdmQIsGWC_HhMvZH_!=s?-a{?bUoaCBAK=qGioX{it6*LFy@}N7hs;vEhWcCaXQ;mw zmpx+sR_xkH{PoA;a~sVciz`3D_M-kR>W{_Qo6H}Jhd&khW3ja#OX;BZ(`G<Vq5f99 z8<%nYyJyVLc<@=iqNwk~vAFs<GobURi6n0}OWI*`&=j({pd{>#J+K4^;N#c}zeYu> zUD#yrDAbxxLM7Q$)cbd#a%C$f;7-&M97g5X8K)leyt&^nNI?fdCRWE@&W#(eHgz}F zLceo=k#m0)Y9^1Oo_ht=&Oy`x_91G(=dcCFzhFA-jJkh4+87*5K@H7AH55Ya&qr_s zK7)NQdW)G!KgaP{hwFaSL9-M!!)H<L?L$T6BTU8WFPZ^%LOpjKvWtS&WC}{AyRZ}P z#3pzFm92>{nHjXht<>|dJ=Uh8WbB9fHM|ig;}|T&ZK$PavdtXPDUNxlAH8K5ul;|B zf(Gz0s>8b5&3}SrVPopQLk%p9b@2?^XuWJA)fD5Xwnl}v6Y4jkA9`>&Dxxo;BJsN8 zS!_)IR-GLt$=YLc>VDLkufe9c5xd|%RI)|CVt(aXq3-8k2P{Mz??L6#HcY_1sP^7R zP2dZxhtWHUze3%Rg0i_ACSoo&!f~h$=Q!T)T;Gk^Tt9`KvGJ?sz0s(on~q*wfy$|$ zF&=BbW^$$lYC>IKBmNC3lyjjE-h~74AWp`l*G<yQLxuJZ%*Ay$08ilcn7YeEB!J3= zJ5du_jUDkmR3zR;wR0LZu#3BbW+YYqU`C$f=)vYZuoTtcCTxn&qh@{tn_%tTCgfSD zH6D)Ya6E2x@llF;e()RS`6ZY^{V`OI90^kBOW_o1ge~`)Wb1}nvvSl6x1!c~GinB( zI@d3t8cKQ79NFzqOEMI5aS3W7e?+x^9>-zKK68==CsQcl!hY16cl|eG9x6l?I0lzs zdpwEFu<jo@4Y3O<`%6$0nTd+bHuT~#?1uyQo87e>8&H1|t7`x6b}k&kbZ(r*RBUj- zBux$~M@FGuoPoN32iC{uQIXp3_yLZkehy=C(4Wi_4#PIoZ$cehw_z>q|8*1;nkP{W z?nKS#C~CW$LWS^qR2DZnXtKR6=1}jCNqD<ce+0F?PCHtM%)slTm+S4Y7$3xT^lw#t z%Vd2|)EX~Eg>Z-Caa4ns9qS%815QUJWgpZ)3$PZ>!D@Ir*2Fa!kB>R^ZKw(D!(a;v zUs6cGgtyH|TcR53<2W1@kpf3AYDwle_gA9^{3xoUJ*em3Lq+ssRBl~H4Y=Vu=5NJ4 z-XZ?FF_#Nfa4qV^-=o(0Db&p0z}9#I+hNrs=3}!bs>AuH8LhzD_&ip^Jy-`1U}Zez z-2WUk;h&BWe`R<4yC!K$F^&2g*dD*eOuY7}NxIRPK|P4W@M$c=pHUGgd(X^p1!|XU zMn(7?wDAX=iVcsM{uTu(+{lF!I1;n|Y)-Vrm_q$6RKtJ8aajL-^S9yvYQ_o2&ChRV zRDF_DzZDhgCs705k3H}bcEaorOwI&nP*~4}C0K~fPnhrdr8txNhp7MH$otSF)kIuL zy#$pbmr)(nIB8D4wy4NW!9-k#4e>ctME0WwavsNO|7Uz;)_xh*=SB#%Z#SX#>t<9( zC$JTs$GVtw$_%V6W>N2q>bMx0q_qKc0?zx`Y|~fqcIwf8G40-k4YmKbQ_u|GMNTB^ z161;yaq3??^`B5lbj>H`4-+-<4(b!Jm!3x*U}>M4B)tifsNaDa;G?KyJ&KypS?o&x z)+Gv!vD0aDwvR&X-$Km88K~TN6BUuhpP3G>$9(DwP+5Kw6`2cI1*@GgIh2T#sdvXl zxB=DQb_`ahaEyWuiqnpN#d_2$pEYZ1<F(Xt9E-69^%d9vU%+Ji6RLyHQ8SPG+zc!Q zn^4cjJ~$Rxd+XlMiN8X2kqa78$`_`gTvRT&u_?~QE_g3i#&@t9et?zmEOy3kP}$x3 zOY>hu`8bgJeNO!}W>ar*&U`;iI!FAwa$zGE`r}8a119afaRSz$z5+Yo{iv*d8#Uvz zPQCJ1Cdrzh-p@zfUyYi;X4Ect8#U4Ms0h~#er=MWCB}213+ln^Q4bWMBBAF}aV={5 zyoR;#XVlWw`o?_3+89IqM%2=b#!M_jEy)9zhTBm~8vKNUlBN2$X6@>sO}!)5!O@tG zC8z=2gNnd&n1y>$4gP>izLf9G5_QA2)N@fCRbXwr7nKW7BNGZ*2PkL;7f~UrbivpH zQ>gbr4;JBrxF0*9@1mLM!>IQk$1%7SyJ5m#&B-?u74ikBNNzy&vjv-I{~va4e1omI zQSEyZ>Mp2`+?arOqn73g9E5vNp|1Udv&}G$dUw<==#N@^531cI*Z{-W9QR`v`nSHK za090OX#Q9{8x^WAF&?c;X4@p7Iv9nT(PZp|K~$D+!9HkRHfx=OiBu<`k~@Gy@MTm| zSN(~16}lt}8JLC|;TWuoeyonm9M@nE>W^ScJcUZisy~~vzXP_RJ`FYVHP{%pq9S(` zlki(qJ2fp=FcO*@ELS91=HO^<JmKhaxgwFd35Rq2QPjcnJ!=0qj&enorZsA2y-?Th zLM7jN)I|P>jqoE(Ml0GC*%ghVgRaPoZ{UJPT7(MOVpP^{K+WV2PW=;9gsR85B44#F zQ5{Z4?Si@386UykcpRHx<5)9*o~THS$7VP?NI?y(M}=l1*1=t<>_3X#@F&#Cmwk;Z z@?+H()xaRs0H@<%T#jn*eN>Wt=G3cKaz%a(ldvP#C!umFxSE2J>;cqB!>E0I82e#t zWmn`Y_j*(k-Gv(15mY2Dp*l*e;<9YaM%Bk*8w{dmya{!V>_z3w1!Mq0t4W-BAq{n7 zh*O`1RjIE>opg_(vi2qC`WvX{4`Y42gxZdEtGXh;6-j7QAA!R#fQr~|RHRR1eeM6~ zYOcs1i<40em0~@-4Yd>-P$Axon)%zP0sVlHZB*UNGzk^@{-}YCL`85uDmQkaBKsvO zN9-C5l>V)oC}=HKqL$)bRMtM@xEr-i|Loj9i%QO)Py<b=X=dI7HQ*f7K=V-T&c^~= ziW<o0cn#L8<+6ebabpVF&uN&A!_me&u{S=A8qhhcjIp)NHmZRdaBI|ndSWZ|phCSI z)!}C6{&CEs9ux11{H=I=Jo{gvSkHw8co;R};R$BDOhElO%|j*AZ5U|~wZD&}_H~Uq zX2xxB4fWxUXK*F;Tk4t#)Jb$j{#KlZO3EdP?0?PtAucFn|AsoNzru;wh`&N=yWEUA zA2y@1{tzmJXPx_BqZ&-*ubHu!i)v>OD(h#W?mvvmrB@w43Q|yLV;YznNvIHaM{T2i zs2LYK*MEl!`3BTM^(^+qH}FQRn&gW7t#|@z&9~qPOls(geCT+w8}*H-r3!vbK@HYO zHVrmK{n~Xwjd-x*RMeU-LJjya#~r96^)RZP^QfeZZe+G^L)22W#7w*it++n+4ek=p zl;YCR#k3V^xy6O{9AAZ9FxBlX^4Ni?9@{_18*tCIr<D7q+wC%D+X0{5K4W&T@cjEG z)(D;I8Xs#H`n;adg-s>ld!B0R3cb<I7c3}s`~9t~6u+I?w{>f~z~?RSlm)I_@OUex z|GMTWcL#jsSFTN|@D>D$ecmfqrhBI6d#-vSFsICO<!*)dZx82JgnD;h8UDKav(eY4 z*+YB*Pqyv#dDHuh=sR$rUFezOt|$%IGu@>X9=ojEH?z1fT;=)aUEz8;d!o7&GU4JP zZ?U(?p5iVp^%PoteWj)DGQX}Ddh*@nT$n!H?JcCufIY=m;VsOzQ~cqxxkqBc-wZqu z74Io6vx~ijp4pyqr;YH=!P{KHQg^^Jds3mVpklhm8}MhiD*{t}JfbG-)ak`VQv-@r zz+LRUYP_sOxj(}mR_bvxh6??^Sw==iGj;D)gy_p3@VE<GF^qC+pqGiUh=1Q%p!mi> zsptP}XW_CTt)mmX>F(09sqTDFpt!(YYAN2KrhD_R8B(G33N73_Dl~j}|EPh3L%sGj z4XqviYB)HeO-$(cpO%K-KRC)&C8dxAn$Dy{*>APHsy6Mdp;u~~$E|iX@f0fg+_pbZ z&ib^mON;#h+c(9j`$Nx-f1!FC+cUe&QxJ$e8!nqL$`zcd1<CjMO6+1k!Ln0QeHDSi z;__Dhj5v*!EO!U&Sw3&efSvEL-TB0cer6VXX4%C7yTV)Q@%tmYqO2mIE3~m7b8vBf zxx0K$X0EfIk+sMipuSjCt%<v|R8J@II9saRc9)fv5~9eO<+J9cp3uT0JJY6n7;?bl z^=mCt$_a+YAIYt9kH5@EY83d&%b8K>oKUxSXNJ#DI_(OY!D)9!CdcmeWXH9zr<X7- zJH5<qF<|Ho{W3F3eXK~PpA7P37J6pt*-Qn(&$FdoJKb-$7?zitc_kqK;fp-WmT57K z@w8GaPOH{PU!l($S?>1wNjzV<k3<W7wIw0^!Fz?S(4>O9gLZ*iSv^ZTu0ZkB;0KKu zI>grC|9)MpF*<|(!5d}81tm)3|LC3a3a{O4Mgd!wkrLQok;iL}m}d5@;=t5M_Zc&$ z7L;i~nogw6U#EvMtVHQi>{oQJYVL2XU6o8GG$t~Umg7b`NyJoxzg{R#M{?Kg4cO^d z#&{i*`d_s7tC(nh14iC3*p4Jzp0B*bKh;-u)zqd2%C4T#^}l3%q?PFvY#hHQ5J^do z(qfWH$Vr?W`JO4ha*v%~QCwQ6W3Uft>oNVXZ`cCiuL?Ru$8ZMOp_HP)Fb=dy&Y?PK zN~ybuwN(DjA~(v&TMoU#Umaf@dnC)1cYI}9AZ0-07|RGfc4Bw<`46vk)%)8J+y#-8 zDRUQj=r**ccvUn9WoZ1g2I0JE^Ieg#gx@Y%9$h0)?5!Z1*hyYCRcQUE-fI51asEId zL!S_r63RT?J@n$~>Y<0%)rwYAi%$26H1*<XyGmrY6wmb(hMqf}5PtXc)2{H&Gc97O zU)_K|bpFd`e|M$Hxzt+DK421@`)au7x!#G>%M?F<z*jcQSI&{llIzyIb9aPN&UX)O zJ6{p{a&|@d);U?OaMZl(T%kEP|6C)op?_({4xRX}JnX%Y9Ubbp@bU01KlE~i`rrCl zXw0GnvjC-w=0)bQ_VVoTq}#SehbAmL`(kFatH_m1SGL6pl(}_Ua;*IFyQ77B<&GhG zFI?@nkGev8?wlE(ao1W`Bj<-NG6bCyktX~l#bugEsOE}gYaXxSsu~+Po?d*liffZA zoVBWROlbYxNo$7Ha&-=OTQkfR{{7mXE|(n&p2-fqeotdciOc$#(i(RqSI5xFdmam| zSXU=$pm&NdgCj8#72BFsUd-wh*&~PcU2`(Q)ig4%=hvmwyRt)mwO2#?*EOpi2~;G} z71>YLbq!v<ow@c)vyrLj%Vt(F$FkRBeoM^j+Tdn?Mt&u9K4iz){HR<1?gf1tL=J?1 z{QR);P}cg99lNBr?ULRu%Wj*Moz<ar+pcZf#tj>qKHM|2SciOiE_))|Zr3);JlEFF z>Xe<;F}!X4?x=t618i=MUwwS-bOjG?JGlMevxgR5`7rtyzP%1DI&|y79S64^T72m4 zL(8u;b!Z8Vzi@EJRab5~_|n0hSL(5m&#=(^XX=G!Jo9wu>+bu)anJSqCqBc@#Qf`D zV6LsXv3!9Ic7=ECTpg7VIT<4heC0bV@AZtR|Np+jLS;i952x(@JgU|Zvg_)vu~4nO z{wp714@D1)e1$a&r@UFm6`s7WdhCCHhW(45VVmFm(G|Sv2maT;@BeQ;#Ny4D%hexZ zp-t~4$6WRGRW<6rzq}$pXTN+R|5yL=S{4=Zez4p8__seX=l|Z<SN;FV*OwJ~@VTa; zA5X6T_n%;)w@b!{y&re_ul5=CWB8q~_|<Se!8V0feK+PGe}<ij<`e9usH;D}CWZo+ zTSPvk)?S_z!{^uBHCv)w3;s90!PYzx<0^4J!iKok6kOw~(3e<f#$DMj9;)Q>|MQ<? X-^S`o>_xuBmi;Gxh0Xs@{R;aZQ(%6f diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index 91c29f823..d7c23e83b 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" "MIME-Version: 1.0\n" @@ -19,21 +19,21 @@ msgstr "" "Language: uk_UA\n" "Plural-Forms: nplurals=4; plural=(n % 1 == 0 && n % 10 == 1 && n % 100 != 11 ? 0 : n % 1 == 0 && n % 10 >= 2 && n % 10 <= 4 && (n % 100 < 12 || n % 100 > 14) ? 1 : n % 1 == 0 && (n % 10 ==0 || (n % 10 >=5 && n % 10 <=9) || (n % 100 >=11 && n % 100 <=14 )) ? 2: 3);\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -46,95 +46,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -150,60 +138,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -211,833 +193,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Вбудовані елементи" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Рівень модуля" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Загальний індекс" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "індекс" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "наступний" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "попередній" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1051,188 +922,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr " (в " -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "Індекс" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "Реліз" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1251,253 +1144,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1505,11 +1392,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1517,25 +1404,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1545,15 +1432,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1564,22 +1451,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1588,36 +1475,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1625,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1655,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1684,214 +1571,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Автор секції: " -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Автор модуля: " -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Автор: " -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Повертає" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Тип повернення" @@ -1920,12 +1807,12 @@ msgstr "%s (C тип)" msgid "%s (C variable)" msgstr "%s (C змінна)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "функція" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "член" @@ -1933,7 +1820,7 @@ msgstr "член" msgid "macro" msgstr "макрос" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "тип" @@ -1941,297 +1828,262 @@ msgstr "тип" msgid "variable" msgstr "" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Нове в версії %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Змінено в версії %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Застаріло починаючи з версії %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ тип)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++ член)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++ функція)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++ клас)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "клас" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (вбудована функція)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (клас)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s атрибут)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "атрибут" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "модуль" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "ключове слово" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "оператор" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "об'єкт" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "виняткова ситуація" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "вираз" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "вбудована функція" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Викликає" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модулі %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (вбудована змінна)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (в модулі %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (вбудований клас)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (клас в %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s метод)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s статичний метод)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s статичний метод)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s атрибут)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "модулі" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Застарілий" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "статичний метод" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (застарілий)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "" @@ -2240,209 +2092,200 @@ msgstr "" msgid "environment variable; %s" msgstr "змінна оточення; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%sопція командного рядка; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "змінна оточення" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "Індекс" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "Індекс модулів" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Сторінка пошуку" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2454,352 +2297,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Доробити" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2807,66 +2679,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "синонім :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2881,106 +2772,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Увага" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Застереження" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Небезпека" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Помилка" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Підказка" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Важливо" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Примітка" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Дивись також" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Порада" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Попередження" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "" @@ -2999,7 +2890,7 @@ msgstr "Пошук" msgid "Go" msgstr "Вперед" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Відобразити вихідний текст" @@ -3148,13 +3039,13 @@ msgstr "пошук" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "Результати пошуку" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3196,36 +3087,36 @@ msgstr "зміни C API" msgid "Other changes" msgstr "Інші зміни" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "Постійне посилання на цей заголовок" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "Постійне посилання на це визначення" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "Приховати співпадіння пошуку" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3242,76 +3133,89 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3325,140 +3229,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "Реліз" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.js b/sphinx/locale/ur/LC_MESSAGES/sphinx.js new file mode 100644 index 000000000..a4d2400dc --- /dev/null +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.js @@ -0,0 +1 @@ +Documentation.addTranslations({"locale": "ur", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(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 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "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": "", "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/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo new file mode 100644 index 0000000000000000000000000000000000000000..8f0ad5b771c6bf0014039673bd31a03b57a03ffc GIT binary patch literal 68916 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 Zv=g?Q4~T3X0@*qQGTX`c|L-A?{};GsiW~p{ literal 0 HcmV?d00001 diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po new file mode 100644 index 000000000..733bd19ef --- /dev/null +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.po @@ -0,0 +1,3354 @@ +# Translations template for Sphinx. +# Copyright (C) 2019 ORGANIZATION +# This file is distributed under the same license as the Sphinx project. +# +# Translators: +msgid "" +msgstr "" +"Project-Id-Version: Sphinx\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.6.0\n" +"Language: ur\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: sphinx/application.py:153 +#, python-format +msgid "config directory doesn't contain a conf.py file (%s)" +msgstr "" + +#: sphinx/application.py:157 +#, python-format +msgid "Cannot find source directory (%s)" +msgstr "" + +#: sphinx/application.py:161 +msgid "Source directory and destination directory cannot be identical" +msgstr "" + +#: sphinx/application.py:192 +#, python-format +msgid "Running Sphinx v%s" +msgstr "" + +#: sphinx/application.py:214 +#, python-format +msgid "" +"This project needs at least Sphinx v%s and therefore cannot be built with " +"this version." +msgstr "" + +#: sphinx/application.py:234 +msgid "making output directory" +msgstr "" + +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 +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:269 +#, python-format +msgid "loading translations [%s]... " +msgstr "" + +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 +msgid "done" +msgstr "" + +#: sphinx/application.py:287 +msgid "not available for built-in messages" +msgstr "" + +#: sphinx/application.py:298 +msgid "loading pickled environment" +msgstr "" + +#: sphinx/application.py:303 +#, python-format +msgid "failed: %s" +msgstr "" + +#: sphinx/application.py:313 +msgid "No builder selected, using default: html" +msgstr "" + +#: sphinx/application.py:344 +msgid "succeeded" +msgstr "" + +#: sphinx/application.py:344 +msgid "finished with problems" +msgstr "" + +#: sphinx/application.py:346 +#, python-format +msgid "build %s, %s warning." +msgstr "" + +#: sphinx/application.py:350 +#, python-format +msgid "build %s." +msgstr "" + +#: sphinx/application.py:557 +#, python-format +msgid "node class %r is already registered, its visitors will be overridden" +msgstr "" + +#: sphinx/application.py:654 +#, python-format +msgid "directive %r is already registered, it will be overridden" +msgstr "" + +#: sphinx/application.py:677 sphinx/application.py:696 +#, python-format +msgid "role %r is already registered, it will be overridden" +msgstr "" + +#: sphinx/application.py:1182 +#, 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:1188 +#, 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:1199 +#, python-format +msgid "doing serial %s" +msgstr "" + +#: sphinx/config.py:220 +#, python-format +msgid "" +"cannot override dictionary config setting %r, ignoring (use %r to set " +"individual elements)" +msgstr "" + +#: sphinx/config.py:229 +#, python-format +msgid "invalid number %r for config value %r, ignoring" +msgstr "" + +#: sphinx/config.py:234 +#, python-format +msgid "cannot override config setting %r with unsupported type, ignoring" +msgstr "" + +#: sphinx/config.py:264 +#, python-format +msgid "unknown config value %r in override, ignoring" +msgstr "" + +#: sphinx/config.py:282 +#, python-format +msgid "No such config value: %s" +msgstr "" + +#: sphinx/config.py:312 +#, python-format +msgid "Config value %r already present" +msgstr "" + +#: sphinx/config.py:363 +#, python-format +msgid "There is a syntax error in your configuration file: %s\n" +msgstr "" + +#: sphinx/config.py:366 +msgid "" +"The configuration file (or one of the modules it imports) called sys.exit()" +msgstr "" + +#: sphinx/config.py:370 +#, python-format +msgid "" +"There is a programmable error in your configuration file:\n" +"\n" +"%s" +msgstr "" + +#: sphinx/config.py:397 +#, python-format +msgid "" +"The config value `source_suffix' expects a string, list of strings, or " +"dictionary. But `%r' is given." +msgstr "" + +#: sphinx/config.py:405 +#, python-format +msgid "Section %s" +msgstr "" + +#: sphinx/config.py:406 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:407 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:408 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:447 +msgid "" +"The config value `{name}` has to be a one of {candidates}, but `{current}` " +"is given." +msgstr "" + +#: sphinx/config.py:465 +msgid "" +"The config value `{name}' has type `{current.__name__}'; expected " +"{permitted}." +msgstr "" + +#: sphinx/config.py:478 +msgid "" +"The config value `{name}' has type `{current.__name__}', defaults to " +"`{default.__name__}'." +msgstr "" + +#: sphinx/config.py:497 +#, python-format +msgid "" +"the config value %r is set to a string with non-ASCII characters; this can " +"lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." +msgstr "" + +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 +#, python-format +msgid "Event %r already present" +msgstr "" + +#: sphinx/events.py:60 +#, python-format +msgid "Unknown event name: %s" +msgstr "" + +#: sphinx/extension.py:52 +#, python-format +msgid "" +"The %s extension is required by needs_extensions settings, but it is not " +"loaded." +msgstr "" + +#: sphinx/extension.py:57 +#, 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:142 +#, python-format +msgid "Pygments lexer name %r is not known" +msgstr "" + +#: sphinx/highlighting.py:163 +#, python-format +msgid "Could not lex literal_block as \"%s\". Highlighting skipped." +msgstr "" + +#: sphinx/project.py:59 +msgid "document not readable. Ignored." +msgstr "" + +#: sphinx/registry.py:131 +#, python-format +msgid "Builder class %s has no \"name\" attribute" +msgstr "" + +#: sphinx/registry.py:133 +#, 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:155 +#, python-format +msgid "Builder name %s not registered" +msgstr "" + +#: sphinx/registry.py:163 +#, python-format +msgid "domain %s already registered" +msgstr "" + +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 +#, python-format +msgid "domain %s not yet registered" +msgstr "" + +#: sphinx/registry.py:201 +#, python-format +msgid "The %r directive is already registered to domain %s" +msgstr "" + +#: sphinx/registry.py:215 +#, python-format +msgid "The %r role is already registered to domain %s" +msgstr "" + +#: sphinx/registry.py:226 +#, python-format +msgid "The %r index is already registered to domain %s" +msgstr "" + +#: sphinx/registry.py:250 +#, python-format +msgid "The %r object_type is already registered" +msgstr "" + +#: sphinx/registry.py:270 +#, python-format +msgid "The %r crossref_type is already registered" +msgstr "" + +#: sphinx/registry.py:278 +#, python-format +msgid "source_suffix %r is already registered" +msgstr "" + +#: sphinx/registry.py:308 +#, python-format +msgid "source_parser for %r is already registered" +msgstr "" + +#: sphinx/registry.py:324 +#, python-format +msgid "Source parser for %s not registered" +msgstr "" + +#: sphinx/registry.py:344 +#, python-format +msgid "source_input for %r is already registered" +msgstr "" + +#: sphinx/registry.py:363 +#, python-format +msgid "Translator for %r already exists" +msgstr "" + +#: sphinx/registry.py:375 +#, python-format +msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" +msgstr "" + +#: sphinx/registry.py:445 +#, python-format +msgid "enumerable_node %r already registered" +msgstr "" + +#: sphinx/registry.py:453 +#, python-format +msgid "math renderer %s is already registred" +msgstr "" + +#: sphinx/registry.py:464 +#, python-format +msgid "" +"the extension %r was already merged with Sphinx since version %s; this " +"extension is ignored." +msgstr "" + +#: sphinx/registry.py:475 +msgid "Original exception:\n" +msgstr "" + +#: sphinx/registry.py:476 +#, python-format +msgid "Could not import extension %s" +msgstr "" + +#: sphinx/registry.py:479 +#, python-format +msgid "" +"extension %r has no setup() function; is it really a Sphinx extension " +"module?" +msgstr "" + +#: sphinx/registry.py:488 +#, 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:496 +#, 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:221 sphinx/roles.py:272 +#, python-format +msgid "Python Enhancement Proposals; PEP %s" +msgstr "" + +#: sphinx/theming.py:79 +#, python-format +msgid "theme %r doesn't have \"theme\" setting" +msgstr "" + +#: sphinx/theming.py:81 +#, python-format +msgid "theme %r doesn't have \"inherit\" setting" +msgstr "" + +#: sphinx/theming.py:87 +#, python-format +msgid "no theme named %r found, inherited by %r" +msgstr "" + +#: sphinx/theming.py:112 +#, python-format +msgid "setting %s.%s occurs in none of the searched theme configs" +msgstr "" + +#: sphinx/theming.py:132 +#, python-format +msgid "unsupported theme option %r given" +msgstr "" + +#: sphinx/theming.py:242 +#, python-format +msgid "file %r on theme path is not a valid zipfile or contains no theme" +msgstr "" + +#: sphinx/theming.py:258 +msgid "" +"sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " +"install it manually.(pip install sphinx_rtd_theme)" +msgstr "" + +#: sphinx/theming.py:262 +#, python-format +msgid "no theme named %r found (missing theme.conf?)" +msgstr "" + +#: sphinx/builders/__init__.py:205 +#, python-format +msgid "a suitable image for %s builder not found: %s (%s)" +msgstr "" + +#: sphinx/builders/__init__.py:209 +#, python-format +msgid "a suitable image for %s builder not found: %s" +msgstr "" + +#: sphinx/builders/__init__.py:231 +msgid "building [mo]: " +msgstr "" + +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 +msgid "writing output... " +msgstr "" + +#: sphinx/builders/__init__.py:245 +#, python-format +msgid "all of %d po files" +msgstr "" + +#: sphinx/builders/__init__.py:266 +#, python-format +msgid "targets for %d po files that are specified" +msgstr "" + +#: sphinx/builders/__init__.py:276 +#, python-format +msgid "targets for %d po files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:284 +msgid "all source files" +msgstr "" + +#: sphinx/builders/__init__.py:298 +#, python-format +msgid "" +"file %r given on command line is not under the source directory, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:303 +#, python-format +msgid "file %r given on command line does not exist, ignoring" +msgstr "" + +#: sphinx/builders/__init__.py:314 +#, python-format +msgid "%d source files given on command line" +msgstr "" + +#: sphinx/builders/__init__.py:325 +#, python-format +msgid "targets for %d source files that are out of date" +msgstr "" + +#: sphinx/builders/__init__.py:335 +#, python-format +msgid "building [%s]" +msgstr "" + +#: sphinx/builders/__init__.py:342 +msgid "looking for now-outdated files... " +msgstr "" + +#: sphinx/builders/__init__.py:347 +#, python-format +msgid "%d found" +msgstr "" + +#: sphinx/builders/__init__.py:349 +msgid "none found" +msgstr "" + +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" +msgstr "" + +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" +msgstr "" + +#: sphinx/builders/__init__.py:364 +msgid "no targets are out of date." +msgstr "" + +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 +#, python-format +msgid "docnames to write: %s" +msgstr "" + +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" +msgstr "" + +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 +#, python-format +msgid "cannot read image file %r: copying it instead" +msgstr "" + +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#, python-format +msgid "cannot copy image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:445 +#, python-format +msgid "cannot write image file %r: %s" +msgstr "" + +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" +msgstr "" + +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#, python-format +msgid "writing %s file..." +msgstr "" + +#: sphinx/builders/_epub_base.py:566 +#, python-format +msgid "unknown mimetype for %s, ignoring" +msgstr "" + +#: sphinx/builders/changes.py:39 +#, python-format +msgid "The overview file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/changes.py:68 +#, python-format +msgid "no changes in version %s." +msgstr "" + +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 +msgid "Builtins" +msgstr "" + +#: sphinx/builders/changes.py:89 +msgid "Module level" +msgstr "" + +#: sphinx/builders/changes.py:134 +msgid "copying source files..." +msgstr "" + +#: sphinx/builders/changes.py:141 +#, python-format +msgid "could not read %r for changelog creation" +msgstr "" + +#: sphinx/builders/dummy.py:24 +msgid "The dummy builder generates no files." +msgstr "" + +#: sphinx/builders/epub3.py:69 +#, python-format +msgid "The ePub file is in %(outdir)s." +msgstr "" + +#: sphinx/builders/epub3.py:212 +msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:216 +msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:219 +msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:223 +msgid "conf value \"epub_author\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:226 +msgid "conf value \"epub_contributor\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:229 +msgid "conf value \"epub_description\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:232 +msgid "conf value \"epub_publisher\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:235 +msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:239 +msgid "conf value \"epub_identifier\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:242 +msgid "conf value \"version\" should not be empty for EPUB3" +msgstr "" + +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#, python-format +msgid "invalid css_file: %r, ignored" +msgstr "" + +#: sphinx/builders/gettext.py:215 +#, python-format +msgid "The message catalogs are in %(outdir)s." +msgstr "" + +#: sphinx/builders/gettext.py:239 +#, python-format +msgid "building [%s]: " +msgstr "" + +#: sphinx/builders/gettext.py:240 +#, python-format +msgid "targets for %d template files" +msgstr "" + +#: sphinx/builders/gettext.py:244 +msgid "reading templates... " +msgstr "" + +#: sphinx/builders/gettext.py:271 +msgid "writing message catalogs... " +msgstr "" + +#: sphinx/builders/html.py:182 +#, python-format +msgid "build info file is broken: %r" +msgstr "" + +#: sphinx/builders/html.py:217 +#, python-format +msgid "The HTML pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/html.py:399 +#, python-format +msgid "Failed to read build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 +#, python-format +msgid "%b %d, %Y" +msgstr "" + +#: sphinx/builders/html.py:500 +msgid "html_use_opensearch config value must now be a string" +msgstr "" + +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 +msgid "General Index" +msgstr "" + +#: sphinx/builders/html.py:506 +msgid "index" +msgstr "" + +#: sphinx/builders/html.py:570 +msgid "next" +msgstr "" + +#: sphinx/builders/html.py:579 +msgid "previous" +msgstr "" + +#: sphinx/builders/html.py:677 +msgid "generating indices..." +msgstr "" + +#: sphinx/builders/html.py:695 +msgid "writing additional pages..." +msgstr "" + +#: sphinx/builders/html.py:780 +msgid "copying downloadable files... " +msgstr "" + +#: sphinx/builders/html.py:788 +#, python-format +msgid "cannot copy downloadable file %r: %s" +msgstr "" + +#: sphinx/builders/html.py:795 +msgid "copying static files... " +msgstr "" + +#: sphinx/builders/html.py:830 +#, python-format +msgid "html_static_path entry %r does not exist" +msgstr "" + +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#, python-format +msgid "logo file %r does not exist" +msgstr "" + +#: sphinx/builders/html.py:847 +#, python-format +msgid "favicon file %r does not exist" +msgstr "" + +#: sphinx/builders/html.py:854 +#, python-format +msgid "cannot copy static file %r" +msgstr "" + +#: sphinx/builders/html.py:860 +msgid "copying extra files... " +msgstr "" + +#: sphinx/builders/html.py:866 +#, python-format +msgid "html_extra_path entry %r does not exist" +msgstr "" + +#: sphinx/builders/html.py:872 +#, python-format +msgid "cannot copy extra file %r" +msgstr "" + +#: sphinx/builders/html.py:880 +#, python-format +msgid "Failed to write build info file: %r" +msgstr "" + +#: sphinx/builders/html.py:927 +msgid "" +"search index couldn't be loaded, but not all documents will be built: the " +"index will be incomplete." +msgstr "" + +#: sphinx/builders/html.py:996 +#, python-format +msgid "page %s matches two patterns in html_sidebars: %r and %r" +msgstr "" + +#: sphinx/builders/html.py:1094 +#, 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.py:1099 +#, python-format +msgid "" +"An error happened in rendering the page %s.\n" +"Reason: %r" +msgstr "" + +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 +#, python-format +msgid "error writing file %s: %s" +msgstr "" + +#: sphinx/builders/html.py:1131 +msgid "dumping object inventory... " +msgstr "" + +#: sphinx/builders/html.py:1138 +#, python-format +msgid "dumping search index in %s ... " +msgstr "" + +#: sphinx/builders/html.py:1184 +#, python-format +msgid "invalid js_file: %r, ignored" +msgstr "" + +#: sphinx/builders/html.py:1228 +msgid "Many math_renderers are registered. But no math_renderer is selected." +msgstr "" + +#: sphinx/builders/html.py:1231 +#, python-format +msgid "Unknown math_renderer %r is given." +msgstr "" + +#: sphinx/builders/html.py:1264 +#, python-format +msgid "%s %s documentation" +msgstr "" + +#: sphinx/builders/linkcheck.py:80 +#, python-format +msgid "Look for any errors in the above output or in %(outdir)s/output.txt" +msgstr "" + +#: sphinx/builders/linkcheck.py:144 +#, python-format +msgid "Anchor '%s' not found" +msgstr "" + +#: sphinx/builders/linkcheck.py:242 +#, python-format +msgid "broken link: %s (%s)" +msgstr "" + +#: sphinx/builders/manpage.py:43 +#, python-format +msgid "The manual pages are in %(outdir)s." +msgstr "" + +#: sphinx/builders/manpage.py:51 +msgid "no \"man_pages\" config value found; no manual pages will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 +#, python-format +msgid "\"man_pages\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." +msgstr "" + +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 +#, python-format +msgid "The Texinfo files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/texinfo.py:52 +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:85 +msgid "no \"texinfo_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/texinfo.py:93 +#, python-format +msgid "\"texinfo_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#, python-format +msgid "processing %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +msgid "resolving references..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +msgid " (in " +msgstr "" + +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" +msgstr "" + +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" +msgstr "" + +#: sphinx/builders/text.py:33 +#, python-format +msgid "The text files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:38 +#, python-format +msgid "The XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/xml.py:112 +#, python-format +msgid "The pseudo-XML files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:121 +#, python-format +msgid "The LaTeX files are in %(outdir)s." +msgstr "" + +#: sphinx/builders/latex/__init__.py:123 +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:163 +msgid "no \"latex_documents\" config value found; no documents will be written" +msgstr "" + +#: sphinx/builders/latex/__init__.py:171 +#, python-format +msgid "\"latex_documents\" config value references unknown document %s" +msgstr "" + +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 +msgid "copying TeX support files..." +msgstr "" + +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:445 +#, python-format +msgid "Unknown configure key: latex_elements[%r]. ignored." +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:69 +msgid " import sys; sys.setrecursionlimit(1500)" +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 <https://github.com/sphinx-" +"doc/sphinx/issues>. Thanks!" +msgstr "" + +#: sphinx/cmd/build.py:97 +msgid "job number should be a positive number" +msgstr "" + +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +msgid "For more information, visit <http://sphinx-doc.org/>." +msgstr "" + +#: sphinx/cmd/build.py:107 +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:128 +msgid "path to documentation source files" +msgstr "" + +#: sphinx/cmd/build.py:130 +msgid "path to output directory" +msgstr "" + +#: sphinx/cmd/build.py:132 +msgid "a list of specific files to rebuild. Ignored if -a is specified" +msgstr "" + +#: sphinx/cmd/build.py:135 +msgid "general options" +msgstr "" + +#: sphinx/cmd/build.py:138 +msgid "builder to use (default: html)" +msgstr "" + +#: sphinx/cmd/build.py:140 +msgid "write all files (default: only write new and changed files)" +msgstr "" + +#: sphinx/cmd/build.py:143 +msgid "don't use a saved environment, always read all files" +msgstr "" + +#: sphinx/cmd/build.py:146 +msgid "" +"path for the cached environment and doctree files (default: " +"OUTPUTDIR/.doctrees)" +msgstr "" + +#: sphinx/cmd/build.py:149 +msgid "" +"build in parallel with N processes where possible (special value \"auto\" " +"will set N to cpu-count)" +msgstr "" + +#: sphinx/cmd/build.py:153 +msgid "" +"path where configuration file (conf.py) is located (default: same as " +"SOURCEDIR)" +msgstr "" + +#: sphinx/cmd/build.py:156 +msgid "use no config file at all, only -D options" +msgstr "" + +#: sphinx/cmd/build.py:159 +msgid "override a setting in configuration file" +msgstr "" + +#: sphinx/cmd/build.py:162 +msgid "pass a value into HTML templates" +msgstr "" + +#: sphinx/cmd/build.py:165 +msgid "define tag: include \"only\" blocks with TAG" +msgstr "" + +#: sphinx/cmd/build.py:167 +msgid "nit-picky mode, warn about all missing references" +msgstr "" + +#: sphinx/cmd/build.py:170 +msgid "console output options" +msgstr "" + +#: sphinx/cmd/build.py:172 +msgid "increase verbosity (can be repeated)" +msgstr "" + +#: sphinx/cmd/build.py:174 +msgid "no output on stdout, just warnings on stderr" +msgstr "" + +#: sphinx/cmd/build.py:176 +msgid "no output at all, not even warnings" +msgstr "" + +#: sphinx/cmd/build.py:179 +msgid "do emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:182 +msgid "do not emit colored output (default: auto-detect)" +msgstr "" + +#: sphinx/cmd/build.py:185 +msgid "write warnings (and errors) to given file" +msgstr "" + +#: sphinx/cmd/build.py:187 +msgid "turn warnings into errors" +msgstr "" + +#: sphinx/cmd/build.py:189 +msgid "With -W, Keep going when getting warnings" +msgstr "" + +#: sphinx/cmd/build.py:191 +msgid "show full traceback on exception" +msgstr "" + +#: sphinx/cmd/build.py:193 +msgid "run Pdb on exception" +msgstr "" + +#: sphinx/cmd/build.py:227 +#, python-format +msgid "cannot find files %r" +msgstr "" + +#: sphinx/cmd/build.py:230 +msgid "cannot combine -a option and filenames" +msgstr "" + +#: sphinx/cmd/build.py:249 +#, python-format +msgid "cannot open warning file %r: %s" +msgstr "" + +#: sphinx/cmd/build.py:259 +msgid "-D option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/build.py:266 +msgid "-A option argument must be in the form name=value" +msgstr "" + +#: sphinx/cmd/quickstart.py:52 +msgid "automatically insert docstrings from modules" +msgstr "" + +#: sphinx/cmd/quickstart.py:53 +msgid "automatically test code snippets in doctest blocks" +msgstr "" + +#: sphinx/cmd/quickstart.py:54 +msgid "link between Sphinx documentation of different projects" +msgstr "" + +#: sphinx/cmd/quickstart.py:55 +msgid "write \"todo\" entries that can be shown or hidden on build" +msgstr "" + +#: sphinx/cmd/quickstart.py:56 +msgid "checks for documentation coverage" +msgstr "" + +#: sphinx/cmd/quickstart.py:57 +msgid "include math, rendered as PNG or SVG images" +msgstr "" + +#: sphinx/cmd/quickstart.py:58 +msgid "include math, rendered in the browser by MathJax" +msgstr "" + +#: sphinx/cmd/quickstart.py:59 +msgid "conditional inclusion of content based on config values" +msgstr "" + +#: sphinx/cmd/quickstart.py:61 +msgid "include links to the source code of documented Python objects" +msgstr "" + +#: sphinx/cmd/quickstart.py:63 +msgid "create .nojekyll file to publish the document on GitHub pages" +msgstr "" + +#: sphinx/cmd/quickstart.py:107 +msgid "Please enter a valid path name." +msgstr "" + +#: sphinx/cmd/quickstart.py:119 +msgid "Please enter some text." +msgstr "" + +#: sphinx/cmd/quickstart.py:128 +#, python-format +msgid "Please enter one of %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:136 +msgid "Please enter either 'y' or 'n'." +msgstr "" + +#: sphinx/cmd/quickstart.py:143 +msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." +msgstr "" + +#: sphinx/cmd/quickstart.py:169 +msgid "" +"* Note: non-ASCII characters entered and terminal encoding unknown -- " +"assuming UTF-8 or Latin-1." +msgstr "" + +#: sphinx/cmd/quickstart.py:248 +#, python-format +msgid "Welcome to the Sphinx %s quickstart utility." +msgstr "" + +#: sphinx/cmd/quickstart.py:249 +msgid "" +"\n" +"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:254 +#, python-format +msgid "" +"\n" +"Selected root path: %s" +msgstr "" + +#: sphinx/cmd/quickstart.py:257 +msgid "" +"\n" +"Enter the root path for documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:259 +msgid "Root path for the documentation" +msgstr "" + +#: sphinx/cmd/quickstart.py:264 +msgid "Error: an existing conf.py has been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:266 +msgid "sphinx-quickstart will not overwrite existing Sphinx projects." +msgstr "" + +#: sphinx/cmd/quickstart.py:268 +msgid "Please enter a new root path (or just Enter to exit)" +msgstr "" + +#: sphinx/cmd/quickstart.py:274 +msgid "" +"\n" +"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:278 +msgid "Separate source and build directories (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:282 +msgid "" +"\n" +"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:286 +msgid "Name prefix for templates and static dir" +msgstr "" + +#: sphinx/cmd/quickstart.py:289 +msgid "" +"\n" +"The project name will occur in several places in the built documentation." +msgstr "" + +#: sphinx/cmd/quickstart.py:291 +msgid "Project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:293 +msgid "Author name(s)" +msgstr "" + +#: sphinx/cmd/quickstart.py:296 +msgid "" +"\n" +"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:302 +msgid "Project version" +msgstr "" + +#: sphinx/cmd/quickstart.py:304 +msgid "Project release" +msgstr "" + +#: sphinx/cmd/quickstart.py:307 +msgid "" +"\n" +"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" +"http://sphinx-doc.org/config.html#confval-language." +msgstr "" + +#: sphinx/cmd/quickstart.py:314 +msgid "Project language" +msgstr "" + +#: sphinx/cmd/quickstart.py:319 +msgid "" +"\n" +"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:322 +msgid "Source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:325 +msgid "" +"\n" +"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:330 +msgid "Name of your master document (without suffix)" +msgstr "" + +#: sphinx/cmd/quickstart.py:336 +#, python-format +msgid "" +"Error: the master file %s has already been found in the selected root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:338 +msgid "sphinx-quickstart will not overwrite the existing file." +msgstr "" + +#: sphinx/cmd/quickstart.py:340 +msgid "" +"Please enter a new file name, or rename the existing file and press Enter" +msgstr "" + +#: sphinx/cmd/quickstart.py:344 +msgid "Indicate which of the following Sphinx extensions should be enabled:" +msgstr "" + +#: sphinx/cmd/quickstart.py:354 +msgid "" +"Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " +"been deselected." +msgstr "" + +#: sphinx/cmd/quickstart.py:359 +msgid "" +"\n" +"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:363 +msgid "Create Makefile? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:366 +msgid "Create Windows command file? (y/n)" +msgstr "" + +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#, python-format +msgid "Creating file %s." +msgstr "" + +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#, python-format +msgid "File %s already exists, skipping." +msgstr "" + +#: sphinx/cmd/quickstart.py:450 +msgid "Finished: An initial directory structure has been created." +msgstr "" + +#: sphinx/cmd/quickstart.py:451 +#, python-format +msgid "" +"\n" +"You should now populate your master file %s and create other documentation\n" +"source files. " +msgstr "" + +#: sphinx/cmd/quickstart.py:453 +msgid "" +"Use the Makefile to build the docs, like so:\n" +" make builder\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:456 +#, python-format +msgid "" +"Use the sphinx-build command to build the docs, like so:\n" +" sphinx-build -b builder %s %s\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:459 +msgid "" +"where \"builder\" is one of the supported builders, e.g. html, latex or " +"linkcheck.\n" +msgstr "" + +#: sphinx/cmd/quickstart.py:499 +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:509 +msgid "quiet mode" +msgstr "" + +#: sphinx/cmd/quickstart.py:514 +msgid "output path" +msgstr "" + +#: sphinx/cmd/quickstart.py:516 +msgid "Structure options" +msgstr "" + +#: sphinx/cmd/quickstart.py:518 +msgid "if specified, separate source and build dirs" +msgstr "" + +#: sphinx/cmd/quickstart.py:520 +msgid "replacement for dot in _templates etc." +msgstr "" + +#: sphinx/cmd/quickstart.py:522 +msgid "Project basic options" +msgstr "" + +#: sphinx/cmd/quickstart.py:524 +msgid "project name" +msgstr "" + +#: sphinx/cmd/quickstart.py:526 +msgid "author names" +msgstr "" + +#: sphinx/cmd/quickstart.py:528 +msgid "version of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:530 +msgid "release of project" +msgstr "" + +#: sphinx/cmd/quickstart.py:532 +msgid "document language" +msgstr "" + +#: sphinx/cmd/quickstart.py:534 +msgid "source file suffix" +msgstr "" + +#: sphinx/cmd/quickstart.py:536 +msgid "master document name" +msgstr "" + +#: sphinx/cmd/quickstart.py:538 +msgid "use epub" +msgstr "" + +#: sphinx/cmd/quickstart.py:540 +msgid "Extension options" +msgstr "" + +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#, python-format +msgid "enable %s extension" +msgstr "" + +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +msgid "enable arbitrary extensions" +msgstr "" + +#: sphinx/cmd/quickstart.py:548 +msgid "Makefile and Batchfile creation" +msgstr "" + +#: sphinx/cmd/quickstart.py:550 +msgid "create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:552 +msgid "do not create makefile" +msgstr "" + +#: sphinx/cmd/quickstart.py:554 +msgid "create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:557 +msgid "do not create batchfile" +msgstr "" + +#: sphinx/cmd/quickstart.py:560 +msgid "use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:563 +msgid "do not use make-mode for Makefile/make.bat" +msgstr "" + +#: sphinx/cmd/quickstart.py:565 +msgid "Project templating" +msgstr "" + +#: sphinx/cmd/quickstart.py:568 +msgid "template directory for template files" +msgstr "" + +#: sphinx/cmd/quickstart.py:571 +msgid "define a template variable" +msgstr "" + +#: sphinx/cmd/quickstart.py:605 +msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." +msgstr "" + +#: sphinx/cmd/quickstart.py:619 +msgid "" +"Error: specified path is not a directory, or sphinx files already exist." +msgstr "" + +#: sphinx/cmd/quickstart.py:621 +msgid "" +"sphinx-quickstart only generate into a empty directory. Please specify a new" +" root path." +msgstr "" + +#: sphinx/cmd/quickstart.py:636 +#, python-format +msgid "Invalid template variable: %s" +msgstr "" + +#: sphinx/directives/code.py:74 +msgid "Over dedent has detected" +msgstr "" + +#: sphinx/directives/code.py:94 +#, python-format +msgid "Invalid caption: %s" +msgstr "" + +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 +#, python-format +msgid "line number spec is out of range(1-%d): %r" +msgstr "" + +#: sphinx/directives/code.py:222 +#, python-format +msgid "Cannot use both \"%s\" and \"%s\" options" +msgstr "" + +#: sphinx/directives/code.py:235 +#, python-format +msgid "Include file %r not found or reading it failed" +msgstr "" + +#: sphinx/directives/code.py:237 +#, 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:275 +#, python-format +msgid "Object named %r not found in include file %r" +msgstr "" + +#: sphinx/directives/code.py:301 +msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" +msgstr "" + +#: sphinx/directives/code.py:306 +#, python-format +msgid "Line spec %r: no lines pulled from include file %r" +msgstr "" + +#: sphinx/directives/other.py:172 +msgid "Section author: " +msgstr "" + +#: sphinx/directives/other.py:174 +msgid "Module author: " +msgstr "" + +#: sphinx/directives/other.py:176 +msgid "Code author: " +msgstr "" + +#: sphinx/directives/other.py:178 +msgid "Author: " +msgstr "" + +#: sphinx/domains/__init__.py:344 +#, python-format +msgid "%s %s" +msgstr "" + +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 +msgid "Parameters" +msgstr "" + +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +msgid "Returns" +msgstr "" + +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 +msgid "Return type" +msgstr "" + +#: sphinx/domains/c.py:189 +#, python-format +msgid "%s (C function)" +msgstr "" + +#: sphinx/domains/c.py:191 +#, python-format +msgid "%s (C member)" +msgstr "" + +#: sphinx/domains/c.py:193 +#, python-format +msgid "%s (C macro)" +msgstr "" + +#: sphinx/domains/c.py:195 +#, python-format +msgid "%s (C type)" +msgstr "" + +#: sphinx/domains/c.py:197 +#, python-format +msgid "%s (C variable)" +msgstr "" + +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +msgid "function" +msgstr "" + +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +msgid "member" +msgstr "" + +#: sphinx/domains/c.py:260 +msgid "macro" +msgstr "" + +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +msgid "type" +msgstr "" + +#: sphinx/domains/c.py:262 +msgid "variable" +msgstr "" + +#: sphinx/domains/changeset.py:33 +#, python-format +msgid "New in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:34 +#, python-format +msgid "Changed in version %s" +msgstr "" + +#: sphinx/domains/changeset.py:35 +#, python-format +msgid "Deprecated since version %s" +msgstr "" + +#: sphinx/domains/cpp.py:4297 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Declaration is '%s'." +msgstr "" + +#: sphinx/domains/cpp.py:6374 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:6505 +#, python-format +msgid "%s (C++ %s)" +msgstr "" + +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 +msgid "class" +msgstr "" + +#: sphinx/domains/cpp.py:6955 +msgid "union" +msgstr "" + +#: sphinx/domains/cpp.py:6959 +msgid "concept" +msgstr "" + +#: sphinx/domains/cpp.py:6960 +msgid "enum" +msgstr "" + +#: sphinx/domains/cpp.py:6961 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/cpp.py:7054 +#, python-format +msgid "" +"Duplicate declaration, also defined in '%s'.\n" +"Name of declaration is '%s'." +msgstr "" + +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#, python-format +msgid "%s() (built-in function)" +msgstr "" + +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#, python-format +msgid "%s() (%s method)" +msgstr "" + +#: sphinx/domains/javascript.py:134 +#, python-format +msgid "%s() (class)" +msgstr "" + +#: sphinx/domains/javascript.py:136 +#, python-format +msgid "%s (global variable or constant)" +msgstr "" + +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#, python-format +msgid "%s (%s attribute)" +msgstr "" + +#: sphinx/domains/javascript.py:204 +msgid "Arguments" +msgstr "" + +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#, python-format +msgid "%s (module)" +msgstr "" + +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +msgid "method" +msgstr "" + +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +msgid "data" +msgstr "" + +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +msgid "attribute" +msgstr "" + +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 +msgid "module" +msgstr "" + +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#, python-format +msgid "Invalid math_eqref_format: %r" +msgstr "" + +#: sphinx/domains/math.py:126 +#, python-format +msgid "duplicate label of equation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/python.py:50 +msgid "keyword" +msgstr "" + +#: sphinx/domains/python.py:51 +msgid "operator" +msgstr "" + +#: sphinx/domains/python.py:52 +msgid "object" +msgstr "" + +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:54 +msgid "statement" +msgstr "" + +#: sphinx/domains/python.py:55 +msgid "built-in function" +msgstr "" + +#: sphinx/domains/python.py:215 +msgid "Variables" +msgstr "" + +#: sphinx/domains/python.py:219 +msgid "Raises" +msgstr "" + +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#, python-format +msgid "%s() (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:433 +#, python-format +msgid "%s (built-in variable)" +msgstr "" + +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#, python-format +msgid "%s (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:454 +#, python-format +msgid "%s (built-in class)" +msgstr "" + +#: sphinx/domains/python.py:455 +#, python-format +msgid "%s (class in %s)" +msgstr "" + +#: sphinx/domains/python.py:492 +#, python-format +msgid "%s() (%s.%s method)" +msgstr "" + +#: sphinx/domains/python.py:504 +#, python-format +msgid "%s() (%s.%s static method)" +msgstr "" + +#: sphinx/domains/python.py:507 +#, python-format +msgid "%s() (%s static method)" +msgstr "" + +#: sphinx/domains/python.py:517 +#, python-format +msgid "%s() (%s.%s class method)" +msgstr "" + +#: sphinx/domains/python.py:520 +#, python-format +msgid "%s() (%s class method)" +msgstr "" + +#: sphinx/domains/python.py:530 +#, python-format +msgid "%s (%s.%s attribute)" +msgstr "" + +#: sphinx/domains/python.py:667 +msgid "Python Module Index" +msgstr "" + +#: sphinx/domains/python.py:668 +msgid "modules" +msgstr "" + +#: sphinx/domains/python.py:719 +msgid "Deprecated" +msgstr "" + +#: sphinx/domains/python.py:746 +msgid "class method" +msgstr "" + +#: sphinx/domains/python.py:747 +msgid "static method" +msgstr "" + +#: sphinx/domains/python.py:879 +#, python-format +msgid "more than one target found for cross-reference %r: %s" +msgstr "" + +#: sphinx/domains/python.py:917 +msgid " (deprecated)" +msgstr "" + +#: sphinx/domains/rst.py:62 +#, python-format +msgid "%s (directive)" +msgstr "" + +#: sphinx/domains/rst.py:64 +#, python-format +msgid "%s (role)" +msgstr "" + +#: sphinx/domains/rst.py:116 +msgid "directive" +msgstr "" + +#: sphinx/domains/rst.py:117 +msgid "role" +msgstr "" + +#: sphinx/domains/std.py:88 sphinx/domains/std.py:105 +#, python-format +msgid "environment variable; %s" +msgstr "" + +#: sphinx/domains/std.py:166 +#, 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:207 +#, python-format +msgid "%scommand line option; %s" +msgstr "" + +#: sphinx/domains/std.py:458 +msgid "glossary term" +msgstr "" + +#: sphinx/domains/std.py:459 +msgid "grammar token" +msgstr "" + +#: sphinx/domains/std.py:460 +msgid "reference label" +msgstr "" + +#: sphinx/domains/std.py:462 +msgid "environment variable" +msgstr "" + +#: sphinx/domains/std.py:463 +msgid "program option" +msgstr "" + +#: sphinx/domains/std.py:464 +msgid "document" +msgstr "" + +#: sphinx/domains/std.py:502 +msgid "Module Index" +msgstr "" + +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 +msgid "Search Page" +msgstr "" + +#: sphinx/domains/std.py:598 +#, python-format +msgid "duplicate citation %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#, python-format +msgid "duplicate label %s, other instance in %s" +msgstr "" + +#: sphinx/domains/std.py:665 +#, python-format +msgid "Citation [%s] is not referenced." +msgstr "" + +#: sphinx/domains/std.py:748 +msgid "numfig is disabled. :numref: is ignored." +msgstr "" + +#: sphinx/domains/std.py:756 +#, python-format +msgid "no number is assigned for %s: %s" +msgstr "" + +#: sphinx/domains/std.py:767 +#, python-format +msgid "the link has no caption: %s" +msgstr "" + +#: sphinx/domains/std.py:781 +#, python-format +msgid "invalid numfig_format: %s (%r)" +msgstr "" + +#: sphinx/domains/std.py:784 +#, python-format +msgid "invalid numfig_format: %s" +msgstr "" + +#: sphinx/environment/__init__.py:69 +msgid "new config" +msgstr "" + +#: sphinx/environment/__init__.py:70 +msgid "config changed" +msgstr "" + +#: sphinx/environment/__init__.py:71 +msgid "extensions changed" +msgstr "" + +#: sphinx/environment/__init__.py:210 +msgid "build environment version not current" +msgstr "" + +#: sphinx/environment/__init__.py:212 +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:408 +#, python-format +msgid "Failed to scan documents in %s: %r" +msgstr "" + +#: sphinx/environment/__init__.py:536 +#, python-format +msgid "Domain %r is not registered" +msgstr "" + +#: sphinx/environment/__init__.py:621 +msgid "self referenced toctree found. Ignored." +msgstr "" + +#: sphinx/environment/__init__.py:662 +msgid "document isn't included in any toctree" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:82 +#, python-format +msgid "see %s" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:86 +#, python-format +msgid "see also %s" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:89 +#, python-format +msgid "unknown index entry type %r" +msgstr "" + +#: sphinx/environment/adapters/indexentries.py:156 +msgid "Symbols" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:153 +#, python-format +msgid "circular toctree references detected, ignoring: %s <- %s" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:172 +#, 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:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 +#, python-format +msgid "toctree contains reference to nonexisting document %r" +msgstr "" + +#: sphinx/environment/collectors/asset.py:91 +#, python-format +msgid "image file not readable: %s" +msgstr "" + +#: sphinx/environment/collectors/asset.py:107 +#, 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:197 +#, python-format +msgid "%s is already assigned section numbers (nested numbered toctree?)" +msgstr "" + +#: sphinx/ext/apidoc.py:69 +#, python-format +msgid "Would create file %s." +msgstr "" + +#: sphinx/ext/apidoc.py:299 +msgid "" +"\n" +"Look recursively in <MODULE_PATH> for Python modules and packages and create\n" +"one reST file with automodule directives per package in the <OUTPUT_PATH>.\n" +"\n" +"The <EXCLUDE_PATTERN>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:312 +msgid "path to module to document" +msgstr "" + +#: sphinx/ext/apidoc.py:314 +msgid "" +"fnmatch-style file and/or directory patterns to exclude from generation" +msgstr "" + +#: sphinx/ext/apidoc.py:319 +msgid "directory to place all output" +msgstr "" + +#: sphinx/ext/apidoc.py:322 +msgid "maximum depth of submodules to show in the TOC (default: 4)" +msgstr "" + +#: sphinx/ext/apidoc.py:325 +msgid "overwrite existing files" +msgstr "" + +#: sphinx/ext/apidoc.py:328 +msgid "" +"follow symbolic links. Powerful when combined with " +"collective.recipe.omelette." +msgstr "" + +#: sphinx/ext/apidoc.py:331 +msgid "run the script without creating files" +msgstr "" + +#: sphinx/ext/apidoc.py:334 +msgid "put documentation for each module on its own page" +msgstr "" + +#: sphinx/ext/apidoc.py:337 +msgid "include \"_private\" modules" +msgstr "" + +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 +msgid "don't create a table of contents file" +msgstr "" + +#: sphinx/ext/apidoc.py:344 +msgid "" +"don't create headings for the module/package packages (e.g. when the " +"docstrings already contain them)" +msgstr "" + +#: sphinx/ext/apidoc.py:349 +msgid "put module documentation before submodule documentation" +msgstr "" + +#: sphinx/ext/apidoc.py:353 +msgid "" +"interpret module paths according to PEP-0420 implicit namespaces " +"specification" +msgstr "" + +#: sphinx/ext/apidoc.py:357 +msgid "file suffix (default: rst)" +msgstr "" + +#: sphinx/ext/apidoc.py:359 +msgid "generate a full project with sphinx-quickstart" +msgstr "" + +#: sphinx/ext/apidoc.py:362 +msgid "append module_path to sys.path, used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:364 +msgid "project name (default: root module name)" +msgstr "" + +#: sphinx/ext/apidoc.py:366 +msgid "project author(s), used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:368 +msgid "project version, used when --full is given" +msgstr "" + +#: sphinx/ext/apidoc.py:370 +msgid "project release, used when --full is given, defaults to --doc-version" +msgstr "" + +#: sphinx/ext/apidoc.py:373 +msgid "extension options" +msgstr "" + +#: sphinx/ext/apidoc.py:402 +#, python-format +msgid "%s is not a directory." +msgstr "" + +#: sphinx/ext/coverage.py:46 +#, python-format +msgid "invalid regex %r in %s" +msgstr "" + +#: sphinx/ext/coverage.py:55 +#, python-format +msgid "" +"Testing of coverage in the sources finished, look at the results in " +"%(outdir)spython.txt." +msgstr "" + +#: sphinx/ext/coverage.py:70 +#, python-format +msgid "invalid regex %r in coverage_c_regexes" +msgstr "" + +#: sphinx/ext/coverage.py:152 +#, python-format +msgid "module %s could not be imported: %s" +msgstr "" + +#: sphinx/ext/doctest.py:142 +#, python-format +msgid "missing '+' or '-' in '%s' option." +msgstr "" + +#: sphinx/ext/doctest.py:147 +#, python-format +msgid "'%s' is not a valid option." +msgstr "" + +#: sphinx/ext/doctest.py:161 +#, python-format +msgid "'%s' is not a valid pyversion option" +msgstr "" + +#: sphinx/ext/doctest.py:230 +msgid "invalid TestCode type" +msgstr "" + +#: sphinx/ext/doctest.py:291 +#, python-format +msgid "" +"Testing of doctests in the sources finished, look at the results in " +"%(outdir)s/output.txt." +msgstr "" + +#: sphinx/ext/doctest.py:438 +#, python-format +msgid "no code/output in %s block at %s:%s" +msgstr "" + +#: sphinx/ext/doctest.py:527 +#, python-format +msgid "ignoring invalid doctest code: %r" +msgstr "" + +#: sphinx/ext/graphviz.py:140 +msgid "Graphviz directive cannot have both content and a filename argument" +msgstr "" + +#: sphinx/ext/graphviz.py:150 +#, python-format +msgid "External Graphviz file %r not found or reading it failed" +msgstr "" + +#: sphinx/ext/graphviz.py:156 +msgid "Ignoring \"graphviz\" directive without content." +msgstr "" + +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 +#, python-format +msgid "" +"dot command %r cannot be run (needed for graphviz output), check the " +"graphviz_dot setting" +msgstr "" + +#: sphinx/ext/graphviz.py:263 +#, python-format +msgid "" +"dot exited with error:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:273 +#, python-format +msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" +msgstr "" + +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 +#, python-format +msgid "dot code %r: %s" +msgstr "" + +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 +#, python-format +msgid "convert command %r cannot be run.check the image_converter setting" +msgstr "" + +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 +#, python-format +msgid "" +"convert exited with error:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/imgmath.py:140 +#, 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:290 +#, python-format +msgid "display latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:317 +#, python-format +msgid "inline latex %r: %s" +msgstr "" + +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +msgid "Permalink to this equation" +msgstr "" + +#: sphinx/ext/intersphinx.py:182 +#, python-format +msgid "intersphinx inventory has moved: %s -> %s" +msgstr "" + +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 +msgid "failed to reach any of the inventories with the following issues:" +msgstr "" + +#: sphinx/ext/intersphinx.py:312 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/intersphinx.py:314 +#, python-format +msgid "(in %s)" +msgstr "" + +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 +msgid "[source]" +msgstr "" + +#: sphinx/ext/todo.py:70 +msgid "Todo" +msgstr "" + +#: sphinx/ext/todo.py:111 +#, python-format +msgid "TODO entry found: %s" +msgstr "" + +#: sphinx/ext/todo.py:160 +msgid "<<original entry>>" +msgstr "" + +#: sphinx/ext/todo.py:163 +#, python-format +msgid "(The <<original entry>> is located in %s, line %d.)" +msgstr "" + +#: sphinx/ext/todo.py:172 +msgid "original entry" +msgstr "" + +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 +msgid "[docs]" +msgstr "" + +#: sphinx/ext/viewcode.py:201 +msgid "Module code" +msgstr "" + +#: sphinx/ext/viewcode.py:207 +#, python-format +msgid "<h1>Source code for %s</h1>" +msgstr "" + +#: sphinx/ext/viewcode.py:233 +msgid "Overview: module code" +msgstr "" + +#: sphinx/ext/viewcode.py:234 +msgid "<h1>All modules for which code is available</h1>" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:302 +#, python-format +msgid "invalid signature for auto%s (%r)" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:402 +#, python-format +msgid "error while formatting arguments for %s: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:514 +#, python-format +msgid "missing attribute %s in object %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:602 +#, python-format +msgid "" +"autodoc: failed to determine %r to be documented.the following exception was raised:\n" +"%s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:694 +#, 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:788 +msgid "\"::\" in automodule name doesn't make sense" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:796 +#, python-format +msgid "signature arguments or return annotation given for automodule %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:829 +#, python-format +msgid "" +"__all__ should be a list of strings, not %r (in module %s) -- ignoring " +"__all__" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:844 +#, python-format +msgid "" +"missing attribute mentioned in :members: or __all__: module %s, attribute %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1128 +#, python-format +msgid "Bases: %s" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1185 +#, python-format +msgid "alias of :class:`%s`" +msgstr "" + +#: sphinx/ext/autodoc/__init__.py:1470 +#, python-format +msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 +msgid "" +"autosummary generats .rst files internally. But your source_suffix does not " +"contain .rst. Skipped." +msgstr "" + +#: sphinx/ext/autosummary/generate.py:102 +#, python-format +msgid "[autosummary] generating autosummary for: %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:106 +#, python-format +msgid "[autosummary] writing to %s" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:366 +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:383 +msgid "source files to generate rST files for" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:387 +msgid "directory to place all output in" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:390 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:394 +#, python-format +msgid "custom template directory (default: %(default)s)" +msgstr "" + +#: sphinx/ext/autosummary/generate.py:398 +#, python-format +msgid "document imported members (default: %(default)s)" +msgstr "" + +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 +msgid "Keyword Arguments" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:627 +msgid "Example" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:628 +msgid "Examples" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:684 +msgid "Notes" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:688 +msgid "Other Parameters" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:717 +msgid "References" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:754 +msgid "Warns" +msgstr "" + +#: sphinx/ext/napoleon/docstring.py:759 +msgid "Yields" +msgstr "" + +#: sphinx/locale/__init__.py:307 +msgid "Attention" +msgstr "" + +#: sphinx/locale/__init__.py:308 +msgid "Caution" +msgstr "" + +#: sphinx/locale/__init__.py:309 +msgid "Danger" +msgstr "" + +#: sphinx/locale/__init__.py:310 +msgid "Error" +msgstr "" + +#: sphinx/locale/__init__.py:311 +msgid "Hint" +msgstr "" + +#: sphinx/locale/__init__.py:312 +msgid "Important" +msgstr "" + +#: sphinx/locale/__init__.py:313 +msgid "Note" +msgstr "" + +#: sphinx/locale/__init__.py:314 +msgid "See also" +msgstr "" + +#: sphinx/locale/__init__.py:315 +msgid "Tip" +msgstr "" + +#: sphinx/locale/__init__.py:316 +msgid "Warning" +msgstr "" + +#: sphinx/templates/latex/longtable.tex_t:23 +msgid "continued from previous page" +msgstr "" + +#: sphinx/templates/latex/longtable.tex_t:29 +msgid "Continued on next page" +msgstr "" + +#: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/searchresults.html:10 +msgid "Search" +msgstr "" + +#: sphinx/themes/agogo/layout.html:54 sphinx/themes/basic/searchbox.html:16 +msgid "Go" +msgstr "" + +#: sphinx/themes/agogo/layout.html:79 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:72 +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:31 +msgid "Navigation" +msgstr "" + +#: sphinx/themes/basic/layout.html:138 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "" + +#: sphinx/themes/basic/layout.html:147 +msgid "About these documents" +msgstr "" + +#: sphinx/themes/basic/layout.html:156 +msgid "Copyright" +msgstr "" + +#: sphinx/themes/basic/layout.html:201 +#, python-format +msgid "© <a href=\"%(path)s\">Copyright</a> %(copyright)s." +msgstr "" + +#: sphinx/themes/basic/layout.html:203 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "" + +#: sphinx/themes/basic/layout.html:207 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "" + +#: sphinx/themes/basic/layout.html:210 +#, python-format +msgid "" +"Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> " +"%(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:30 +msgid "" +"Please activate JavaScript to enable the search\n" +" functionality." +msgstr "" + +#: sphinx/themes/basic/search.html:35 +msgid "" +"From here you can search these documents. Enter your search\n" +" words into the box below and click \"search\". Note that the search\n" +" function will automatically search for all of the words. Pages\n" +" containing fewer words won't appear in the result list." +msgstr "" + +#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/searchresults.html:17 +msgid "search" +msgstr "" + +#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js:295 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js:297 +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:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 +msgid "Permalink to this headline" +msgstr "" + +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 +msgid "Permalink to this definition" +msgstr "" + +#: sphinx/themes/basic/static/doctools.js:233 +msgid "Hide Search Matches" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:131 +msgid "Searching" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:136 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:299 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js:352 +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:259 +#, python-format +msgid "" +"4 column based index found. It might be a bug of extensions you use: %r" +msgstr "" + +#: sphinx/transforms/__init__.py:301 +#, python-format +msgid "Footnote [%s] is not referenced." +msgstr "" + +#: sphinx/transforms/__init__.py:307 +msgid "Footnote [#] is not referenced." +msgstr "" + +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 +msgid "" +"inconsistent footnote references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:335 +msgid "" +"inconsistent references in translated message. original: {0}, translated: " +"{1}" +msgstr "" + +#: sphinx/transforms/i18n.py:382 +msgid "" +"inconsistent citation references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/i18n.py:402 +msgid "" +"inconsistent term references in translated message. original: {0}, " +"translated: {1}" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:110 +#, python-format +msgid "more than one target found for 'any' cross-reference %r: could be %s" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:142 +#, python-format +msgid "%s:%s reference target not found: %%(target)s" +msgstr "" + +#: sphinx/transforms/post_transforms/__init__.py:145 +#, python-format +msgid "%r reference target not found: %%(target)s" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:92 +#, python-format +msgid "Could not fetch remote image: %s [%d]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:120 +#, python-format +msgid "Could not fetch remote image: %s [%s]" +msgstr "" + +#: sphinx/transforms/post_transforms/images.py:140 +#, python-format +msgid "Unknown image format: %s..." +msgstr "" + +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 +msgid "when adding directive classes, no additional arguments may be given" +msgstr "" + +#: sphinx/util/i18n.py:74 +#, python-format +msgid "reading error: %s, %s" +msgstr "" + +#: sphinx/util/i18n.py:81 +#, python-format +msgid "writing error: %s, %s" +msgstr "" + +#: sphinx/util/i18n.py:215 +#, 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:428 +#, python-format +msgid "toctree contains ref to nonexisting file %r" +msgstr "" + +#: sphinx/util/nodes.py:501 +#, python-format +msgid "exception while evaluating only directive expression: %s" +msgstr "" + +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 +#, python-format +msgid "default role %s not found" +msgstr "" + +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 +#, python-format +msgid "numfig_format is not defined for %s" +msgstr "" + +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 +#, python-format +msgid "Any IDs not assigned for %s node" +msgstr "" + +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +msgid "Permalink to this table" +msgstr "" + +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 +msgid "Permalink to this code" +msgstr "" + +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +msgid "Permalink to this image" +msgstr "" + +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +msgid "Permalink to this toctree" +msgstr "" + +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +msgid "Could not obtain image size. :scale: option is ignored." +msgstr "" + +#: sphinx/writers/latex.py:510 +#, python-format +msgid "unknown %r toplevel_sectioning for class %r" +msgstr "" + +#: sphinx/writers/latex.py:603 +msgid "too large :maxdepth:, ignored." +msgstr "" + +#: sphinx/writers/latex.py:893 +msgid "document title is not a single Text node" +msgstr "" + +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 +msgid "" +"encountered title node not in section, topic, table, admonition or sidebar" +msgstr "" + +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 +#, python-format +msgid "dimension unit %s is invalid. Ignored." +msgstr "" + +#: sphinx/writers/latex.py:1843 +#, python-format +msgid "unknown index entry type %s found" +msgstr "" + +#: sphinx/writers/latex.py:2552 +#, python-format +msgid "Unknown configure key: latex_elements[%r] is ignored." +msgstr "" + +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 +#, python-format +msgid "[image: %s]" +msgstr "" + +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 +msgid "[image]" +msgstr "" + +#: sphinx/writers/texinfo.py:1330 +msgid "caption not inside a figure." +msgstr "" + +#: sphinx/writers/texinfo.py:1421 +#, python-format +msgid "unimplemented node type: %r" +msgstr "" + +#: sphinx/writers/texinfo.py:1426 +#, python-format +msgid "unknown node type: %r" +msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.js b/sphinx/locale/vi/LC_MESSAGES/sphinx.js index daaa7501e..6f5fb626a 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "vi", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "V\u1ec1 c\u00e1c t\u00e0i li\u1ec7u n\u00e0y", "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": "M\u1ee5c L\u1ee5c \u0110\u1ea7y \u0110\u1ee7", "Contents": "N\u1ed9i dung", "Copyright": "B\u1ea3n quy\u1ec1n", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u0110\u01b0\u1ee3c t\u1ea1o nh\u1edd <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "Full index on one page": "To\u00e0n b\u1ed9 ch\u1ec9 m\u1ee5c tr\u00ean m\u1ed9t trang", "General Index": "Ch\u1ec9 m\u1ee5c chung", "Global Module Index": "Ch\u1ec9 M\u1ee5c M\u00f4-\u0111un To\u00e0n C\u1ee5c", "Go": "Th\u1ef1c hi\u1ec7n", "Hide Search Matches": "", "Index": "", "Index – %(key)s": "Ch\u1ec9 m\u1ee5c – %(key)s", "Index pages by letter": "C\u00e1c trang ch\u1ec9 m\u1ee5c theo ch\u1eef c\u00e1i", "Indices and tables:": "C\u00e1c ch\u1ec9 m\u1ee5c v\u00e0 b\u1ea3ng bi\u1ec3u:", "Last updated on %(last_updated)s.": "C\u1eadp nh\u1eadt m\u1edbi nh\u1ea5t v\u00e0o %(last_updated)s.", "Library changes": "", "Navigation": "\u0110i\u1ec1u h\u01b0\u1edbng", "Next topic": "Ch\u1ee7 \u0111\u1ec1 ti\u1ebfp", "Other changes": "", "Overview": "T\u1ed5ng quan", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "H\u00e3y b\u1eadt JavaScript \u0111\u1ec3 d\u00f9ng t\u00ednh n\u0103ng\nt\u00ecm ki\u1ebfm.", "Preparing search...": "", "Previous topic": "Ch\u1ee7 \u0111\u1ec1 tr\u01b0\u1edbc", "Quick search": "", "Search": "T\u00ecm Ki\u1ebfm", "Search Page": "", "Search Results": "", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "T\u00ecm ki\u1ebfm trong %(docstitle)s", "Searching": "", "Show Source": "Hi\u1ec3n th\u1ecb m\u00e3 ngu\u1ed3n", "Table of Contents": "", "This Page": "", "Welcome! This is": "Ch\u00e0o m\u1eebng! \u0110\u00e2y l\u00e0", "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": "t\u1ea5t c\u1ea3 c\u00e1c h\u00e0m, l\u1edbp, thu\u1eadt ng\u1eef", "can be huge": "c\u00f3 th\u1ec3 r\u1ea5t nhi\u1ec1u", "last updated": "c\u1eadp nh\u1eadt m\u1edbi nh\u1ea5t", "lists all sections and subsections": "li\u1ec7t k\u00ea t\u1ea5t c\u1ea3 c\u00e1c m\u1ee5c v\u00e0 m\u1ee5c con", "next chapter": "ch\u01b0\u01a1ng ti\u1ebfp", "previous chapter": "ch\u01b0\u01a1ng tr\u01b0\u1edbc ", "quick access to all modules": "truy c\u1eadp nhanh t\u1ea5t c\u1ea3 c\u00e1c m\u00f4-\u0111un", "search": "", "search this documentation": "t\u00ecm ki\u1ebfm trong t\u00e0i li\u1ec7u n\u00e0y", "the documentation for": "t\u00e0i li\u1ec7u cho"}, "plural_expr": "0"}); +Documentation.addTranslations({"locale": "vi", "messages": {"%(filename)s — %(docstitle)s": "", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "V\u1ec1 c\u00e1c t\u00e0i li\u1ec7u n\u00e0y", "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": "M\u1ee5c L\u1ee5c \u0110\u1ea7y \u0110\u1ee7", "Contents": "N\u1ed9i dung", "Copyright": "B\u1ea3n quy\u1ec1n", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u0110\u01b0\u1ee3c t\u1ea1o nh\u1edd <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.", "Expand sidebar": "", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "", "Full index on one page": "To\u00e0n b\u1ed9 ch\u1ec9 m\u1ee5c tr\u00ean m\u1ed9t trang", "General Index": "Ch\u1ec9 m\u1ee5c chung", "Global Module Index": "Ch\u1ec9 M\u1ee5c M\u00f4-\u0111un To\u00e0n C\u1ee5c", "Go": "Th\u1ef1c hi\u1ec7n", "Hide Search Matches": "", "Index": "", "Index – %(key)s": "Ch\u1ec9 m\u1ee5c – %(key)s", "Index pages by letter": "C\u00e1c trang ch\u1ec9 m\u1ee5c theo ch\u1eef c\u00e1i", "Indices and tables:": "C\u00e1c ch\u1ec9 m\u1ee5c v\u00e0 b\u1ea3ng bi\u1ec3u:", "Last updated on %(last_updated)s.": "C\u1eadp nh\u1eadt m\u1edbi nh\u1ea5t v\u00e0o %(last_updated)s.", "Library changes": "", "Navigation": "\u0110i\u1ec1u h\u01b0\u1edbng", "Next topic": "Ch\u1ee7 \u0111\u1ec1 ti\u1ebfp", "Other changes": "", "Overview": "T\u1ed5ng quan", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "H\u00e3y b\u1eadt JavaScript \u0111\u1ec3 d\u00f9ng t\u00ednh n\u0103ng\nt\u00ecm ki\u1ebfm.", "Preparing search...": "", "Previous topic": "Ch\u1ee7 \u0111\u1ec1 tr\u01b0\u1edbc", "Quick search": "", "Search": "T\u00ecm Ki\u1ebfm", "Search Page": "", "Search Results": "", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "T\u00ecm ki\u1ebfm trong %(docstitle)s", "Searching": "", "Show Source": "Hi\u1ec3n th\u1ecb m\u00e3 ngu\u1ed3n", "Table of Contents": "", "This Page": "", "Welcome! This is": "Ch\u00e0o m\u1eebng! \u0110\u00e2y l\u00e0", "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": "t\u1ea5t c\u1ea3 c\u00e1c h\u00e0m, l\u1edbp, thu\u1eadt ng\u1eef", "can be huge": "c\u00f3 th\u1ec3 r\u1ea5t nhi\u1ec1u", "last updated": "c\u1eadp nh\u1eadt m\u1edbi nh\u1ea5t", "lists all sections and subsections": "li\u1ec7t k\u00ea t\u1ea5t c\u1ea3 c\u00e1c m\u1ee5c v\u00e0 m\u1ee5c con", "next chapter": "ch\u01b0\u01a1ng ti\u1ebfp", "previous chapter": "ch\u01b0\u01a1ng tr\u01b0\u1edbc ", "quick access to all modules": "truy c\u1eadp nhanh t\u1ea5t c\u1ea3 c\u00e1c m\u00f4-\u0111un", "search": "", "search this documentation": "t\u00ecm ki\u1ebfm trong t\u00e0i li\u1ec7u n\u00e0y", "the documentation for": "t\u00e0i li\u1ec7u cho"}, "plural_expr": "0"}); \ No newline at end of file diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 2d738c71da8e991ba41d53d40eb70ff9b4b7c730..56e0adcb41a9cfb4b4ad6b5ba1eee7e610467ed2 100644 GIT binary patch delta 14054 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 MUkjCg_qAaC8;UwAlK=n! delta 16280 zcmeI$2Xxd`-v9C6B%y`gJNyWQnnEw31_FZ8s}MjY$v}oAGec%VhY>*pQ4vR$rhw?K z6;VfQC@2Vm1x1u*VOc9!5W5t8-k-U@U2u2L|M~B8p8whN{Lkar^>y!^`Q7rp-+S|O z&TdRN`&dHw!)ghuE&h2i&axU{gIcOx{-;5TWv!*!5ZmBW*aH88OI?<gm}*(K^X#fL z%leA;q;{57hxRJ%E$a*FtvXm%f9f?mT2^h$?qpeWX%BX`tYXUwTVGQsq`}>VFW^B; z=Zl}>a_Y6ZS=QCK8DGUOZ~{J+VJ1|yyJc0R-V;mVHI5^&HT7}W6K}wQ_#*bkay^(V z<6DC$l%t^#%i>H-#xSabKcYH*3#;Q1tcqu_242L<Sd~#KU=!4Y(y%=CKz%+CE8(?R z1*c&}#<yluP{&JA9j`|{@QA*E&!ZlE74^O2s9pLB)lot(^Lb6QsW(IQ(;qc~ai|66 z;wUV_OneE$>L{Lg$a<&_+o86iFV@8gsDVRR50_ybycf0N=bg_FU@G+wP|ua`V_EF3 zm5hyXBG$+G*bLY9A^y)&c!7ovIE!g%#t&l|d>W_VF3dx_ui1(lkvy|jIKF^aQ9p~- zuuDJ7YKvE+2AqdExCU$DdDO(JWQ9$`Raqu<lTe{r=(r3O`a4j$aSswT>mld!)7X;w zca9DETUI0L{gEJ8d8p^^Lv7_&Y=S$mD}E5BkW8W00JGvAs2OG<C&rq9Hm*c<@EB?< zcA~cGZPfQaLT$}2s8H7+92&SIYHNF<7B(6+-ekw{5(*7zcnCRB)_&yVS@8qSgWWNS z`bZptC8*@ugQf9ZOvLw5q5jM<evnDB#>oFHH~*S~52KR1!qu^@3|kE-5IrjidDfbS z*WhEQB)f=ZuqKUVu_1DYSj|z9n26e<0BT}kRA^VBCjP49SJ;$#mBFUJj@U%!zXt`a zd@?F@>(It$u^gU24fruyF2YP06w>-b&6c!BO{5RT;b<hktZ`2J2FGofK>Hp{!~NKi z@vWaIXrPo~=7Y{yin<52w*`)iP?1`L8t{F`Z!nvB!f<nwPQe1|Z=kle+X&-0RD?=! zJl=$1W#cIdl`(##WpQm=)iDtVpjI*h6`9rO!|h1kTFpk8^FJN+{46YwH#zMQOr^dV zTjD`fzdxZS5;vOotD(kd^M%H!Js*h5ZZ|4q#W(?Hp(67(DkqL%3jP^uV8t=!xg^wS z>454l6O}s?uqNiBa$(LG;;#wZO@sFI0c?P~P{-+g$DdF)Vzsfx)~Fk<FZRWW=*3Og z9?Ok0S>FRYQeTRS;10+4ur~DzVW&|2TC=BZuo55i#+o=36^T5ofF-C<-+<Nd4yXP{ z)QYxaGdzyf@mJJy)!1+y*T$&+nxhsT?m|JK?2FpFtDX8-)Ql&i23m;fU==FVYf<0d zikk4V$R9#$Kk6PR#eONNo1g}2gBrLqYAde7HjHl#r=X7JqpsFvr~zL=t>^?QS$;)L zv<j)N3DiM#l#2SiGit>HkvUiskw>hjur*elX#U3Zz;x;XY^n3VnL-*32XHw4i~$@p z$wc5e)G0ZEx==2nLfm+=xhJwPpSlM%;6da-S*@<)F2H$s4ZelCdK*kJ{r1J|Fbz2r zHsVgyiYK|vE7l@Z{XwVx1~#Go18TyxbIhB~0PIYC2`c0}a0BkeJap%B8R0&hiH&H~ zR<6cyJcYX`tisKhfbBhIpf1>n`grVsE3p>t!TNXtlki9EiFK!%2#iBb<O$T4J&&dE zWz=zf6_pD=O(p)VD3qOMvb{Z)ralnc;V{&|i|_;7j#(HX-hJ^H-i-CVrsF@MCUzLr z&skJ%{fK2SZn~)_qUyD#6MrR9BN~Qc3tWLSu{XvQm>aAw>Rbm<$#*X{#Ai^+dIYti z)7TBqV<YTXXd*ERbqpt=wqiOeH+F|9q)@0`WCqAWw#}M_8t4S-9yp8Tu$0dvQDvM$ zy%TC8e?SfRBv!=3sC(j+<2lrY<MNx+QWwip54WMvoI)3DhLf=_F2)9UH)??AupS;m zP3${tjAc10nb;DQ{nIfO_o62B9jc#dGt5<-j!NQz*j49$It3-iy;uPsMD5K}*adf@ zvinEuj;Y1wYW1S(QOv-zI1pP0%@zdlD(YLYJ^tX>GGs2SZ0xA>Kb?ZIdJ}4<PdW9& zs3bds>L9hmd_D!Wf(58#+k{%_4pfLwU={opt6@B6PT#AA`n)~X!K<+)<6F5Ddg3jp z2Vcd?_#U>!FHpy_!7Q^iO)#B$chr^?U~628+RDdKxpEA(b$>w{t=VSlnxM9*GlpwZ z$fHmT=VLpJpgP=(HSrtNDJeb2OsFzypgvd?r=fCT4z|Q~s0HjsMf7dQvzSc1!dz}k zY(JOy-$P+74IMFKo>{3M)j<fy;}YzSA7UETn{Prs2<uSKM-8+HHIa=@`%Y{_{U~Z; z@e9m2DOjDldjavUPoac{t8o=7)bFEadI}S<%t8~oYN!EQpgQh@b+Hf?@}<}nZ^t2c z07(O@HsdH#x1w@l6K3KQVG0`Hdu)WiVP|Y~y~*-1s4s3p?e!_tR$WA8clAZ);>t#C z(L<=nMNyI3gPP#CsI9DUgSj7)9K&rX^yGtH*aGLHLUkW@!Z%PCRQzI-^=(lT9f^wE z4AjJKMfLLlDl(s<lDFCt%NmRQ9M_{Fa}G!9{P(`mTs(JRDL!}_wKp%|P&|aX7wn~` z!&KBtCSyYkVFSDabt<-@R(ujQ(O*yzt8<e{+H`C}eQc~wxMx!+L&GNQkN2Yn{0emn z&SMu$US|H<O~S_1uSZQ_Gb$20ozG8TDe9L{k%?b!a;Fg{Q}2M?aXgl0d~3A|co!z& zy{H-P!@>Bu^LeM6&HF$PEJOPg%))%sR&B*Z{0I~9Yt%x%Lmg}VWzz!NV_%$&;j1X@ zprDz>-(o`73Y${zhc-@g>dP>N`Xi_nA4gpzKVVC2daIehVAS*DQ0?=a`hBQ{?#HtD z=B@01B?`xAD370^9{3J*%o^NgR?-P|tTNEXAP&bnQ4#wD73#7p&2vq081)`b{T9?k z_ea#gFQ9JPeJhE-R({lJxP+CcSGwJ-v>{fYel==h<4_^I9$Vu+RA|qka-``h6PavG zq&^FE-fuu9?P|w|u`>0S!p;{CVRITjM$NSR9cJZCu?F>)sEPJOg)kR$aXKp74?69i zqat}0Ti^xEz@`xsxyjgvdKfjK@QV}_k|U^NbP}uKMbv~U-^rUSc1DGI3TowxQJ+7G z<M3VVg{iAeBnojM_4}|KHvNOScv4aI?wF$U-=BgyEXKBYH|kg&M6LKsT!Yp4mwbqS z5hSbcTC;+8a3b|HsHD7VomqJ<>iHGe1|P@C_yKmp9_w{Ku>Zvr>e8?Zb!;9+ec>@w zho538jN4#3DvPPqJEA_%K^@nHj+?P2_1#YW7%IZ&QKusQF0<ekSXSqMBn5>$8*8Bt z`{9i^0uSJ|SpROb=OG+L{TOz`l#S*>nTpz~EvWupNA-6StK*MY9}_njn`2me+LwZ6 z>~Wlj4XCd|b@V9K#+OjZbsV)-pI|!H+RW|e;`ah%7pziSOr$oVlJHg3Z^hrDek-1H zpZTpg@qXg3AB%s!-~3oy^+Apo^-HK9i~Bunek{&@B=%#mbp#9PaL`sWp{G#46(7Xq zwEz03`7^$38-r3mj1zF<V`f6Xpdyj{xH(1L9uJ$n?L&i-Z~*qi88{HPVQ>5yld$U( zW-qfH^H51vgnB-L%9Wj16<<b0_6XL&FHsRJ6*c!t)i8w`G&I7B*ugOqbrB82Dmd9` z_hWVH3!M5Y)E;j_T_{hXp4*4ovUgDfe}&bt^pmE)dZ-D9+fYykV^I?*a-4^ws4vG% z`~da6#@o$bzs{&rGuEjGP!YNv8)DR{A3{ywd#r#JpEC7&n5y&NfkI<GaARj&<kX)* zW$Q6)hTr3}Sodl3--L%zp)B)^`D<7mr%<ntc{m@n6{oNre&$%0PV`6b8my-CAEBUZ z{u64zqnLx=VLcrCoSE1RtV#U=v~eeD0w=Kyet`=8cTRiU4s#<`!g90^!Pwsr$Lp~X z<693>P?GIOg{bWFW-Dr96Y5Q|EA~ev+d|a9_c@<Gh8?NDjW(8f!E9Aa)SmZ7<<Kb9 z0`jm9&c(1oAEA(lQLKeKQMvFgYQT>i%k4CKn~oW@55X?D4E5ZLs2n(oqwzfI6b##C zChSJli%@?%!n=rneF}e~K}oh72VugCW-o`LvU(e8FLz-U?nNEX#FxxZE2B^=+JxGQ zXHW}x5j){QR3s91n=Pt?nn;V?VH4VJG$heb?6?}6Qhx^3;rrMGKSr&*^d6J6nP^jY zqxSd))PT33<zhjoJ>T=P8SqQAssD<aVB_#!bJwS$W;ny~Ml4Hx9j4(H)E*x~<w)s$ zroB3rqTUx3$${7$^H7mmflcu(RR7;&HkN(G+@#?=3I#MA!iLy$zcCvXqB%GoSD;SG zC#Wr{b-?^radTAejK_YMhmG+8^x=N&k6m6h6JLNesNakvaoE~KLC5A{<U+8X!<P6t zDr>90W{zPJR-@h%_4#nrp3gyj?+z@B_u>S61QnSwubVBbh$+--q9)K6tLXfXqoBRW zM|C(8%i~JaaoK<h;p12i-$iBnNo;^WVm++>hA|Cw^$v1$V_oWVP`ML9FCN79jBj;4 zXtKTlwa430Aw1)l_@?QwwPRn@UQR%*#D|*bVpJs7VFi2$E929s$i3p!PoNfb2E(l> zRC>!KPdC(qV^E>Y!75mQi8vp18g4@6#!9FC9@K;%K@IdeDuO4S`WH_9SFA*P;vw@} zaot12Uk{F@L7|<A8t8hgiYuJ<yRi-R`%znT7<=KDr~%u&ZC2C^t5VOw${0dLXbEaT z>zvQGpd$F>+r(ely`KgpP10fWXK?{`p#A`+<NK(jtMHCFcAaoI^*jvVcGN<eziaM^ z0hmNRADiI{wDB>_$3v*`GQvm9JKky>O~Yq+4fZ%{uHI#+jvqyx+k?0fTOTtkK7cK# zf92F`9yj%F*o1aBrr~1jiBDi>{00^AaElY>$KrOFN5dO94%@$Hek{Hj6R5l1H^-?o zuA*K6)xHrm(7o6R_o5<q0c&CU2PU@$pdylkn#hev1j5!H3QCqn9~xVu&TVH*!5&x} zz1RvDVNHA(OXEw}4)>!5K96*1rJXc4V1++()~S!coAFLmzl~36V(kB53hF2yH4#55 z%jY@u#ZG-CDv8$MP~40w@GSP$_y1xpupQW*`f03z4L&kC)efsspNLh^kKGvGx}HKK zd=4w(anv#V47C;CqjF>L$7bgDpawXIIq3St43vk8%pBC-uEb<qhf{DDHbnbVGhQzY zYrshqbX*D?=b=Kr0(G43b?V!(IrTTN8Ges-vF>N)ChUM3U^v!8A1VUNu`zDMOx%g= zJ$F3uPsQxd&5V{~1L_Z;&iP(!f*)d6v`(Ac=!RNpZ!CjjunSH?W%p|Aj<4e&EPKY( zM`8x`+i)NrI79rqQK<HXc_|!>3hkYaub^(M^Vku~eQC0~7iywooO&_#rM?{X{Oiu= zzo8b;;45<qdZD&@0xH6D!W5JYt5C_Y1?%H>=L?5WkvNSlG45+~eA=L%^P;wHF1E#+ zu{`cTZOtpF3+xnXORAnV$(VxL%J4V}dSD@H?`}pLA3*Kh0ZhdYQ8TXajfp@r)UoT1 zt+5ETC2O%PK8kJeY1BZUqjIV8Ig<-bkOhUUObV6xU^*(Ka~;>9viC{!;0e43`+RG* z;xCv$z4mwJ`35+idJ1aqmtq?3Muq$wDw0*cH{-Oz#ybB4DCmQ!*apL>P(O?v@g1y= z<$f?*(-5zw-VHT@C8&um$3)zQHSjsqz;B}Z{Tj6;^?o$RyCZhh`Ol;<1m|K2?#HUw z>nD>F!!eV3E^2^3qB?#IJL8+EEHC}D`QC8UUf+SWa4TMgFXK?G@QayvHii}YDHIf{ z0M^A#SQDRh>ThC2>Zh?M{)8>C(|HrAN!W?{QcS_;QCWW)HPP}HOypW)J?aBc{kSg> ze}!ff4N8{Ra4cSQ9Cgt|<{=zO`_HJ0=bB3<X#=ROnU7l8?N|X%qWb$1wUCCtn&j?) z%CQlcj=o=se_aY2X=sGcph9*Om9<}^R#NjfQ}2S>g2~t)y{PB6VQV~qUGRHUL{ltR z?B>hHhScX_eO!l0xIIjv6oq4`(0qtWo?lQ&RmtUwWphW=76edRwh-09ZKw%8j)U<q z>iF4luGl+XE7WsCFblI$TeTUrknj<wa0=D&m)H(3qE?s|?~2`QAyg7QjhfhRsFf!t zn1OnuO+DACFG1zP1E>|hi>Y`Hb-EgticKJF4W!VNhEb>wW;ylEs0qD{n&~@O2~VOf ztglhuKaX{=X=zvNIQGD<)HBh>xi}m*pd$7qD$<q9=(#ZaMqwBY{bCKgpJQ$6k6<}` z8Fe)uM6LW3R>3l5&4lWpR@wrUe4|klbE6`7Gb%UULPhohDo0YwxvW-<Z+R$ag)315 ztw&|;R>wW4NE~-QKaEPxi>Qe<O*DJn9hEy-sELlp(ip~ET#Aao8K=Esd6yMdC~HvA zdA2bF2cnIOu@Bydn$Ra$7B8TVQ9=bX;U=gFb;MSfjT-1i)XE=lK0l1(sGrAPII^NE z91F#&imup?#RpIm8d%8;I2yGD(@`M~p*p+=b-rIm9ji;I71yuqiv32M>3AGh(LSS! ziC}zHSM0aq>Zqg)R1KSz-$H{rcoKCXoxsUhx|%sI9&AK?11jsELxuJo=kxba9agPw zj&mxipAM+3zYg{Jt*GPrpyO*{3JUF4PD6YR6XImlsYpYucqD4T1*jZZg1V^IU_X2m zN8q=3EoRj;dww^LqVB5YioNKJ!S2*oqP8mh8U=Ou1FFNa{O+nNwJ~bO9UO<D_Ot*s z;oBVVL*>GAsD6&3lJX2{E93ZmS6fvH)3LXH?@i3KhqwzoQ@w?e3wPb#I?J19&+(Vo zx%qD2G>;w1_t?QXzL0yiJ+;_hWVcV7ZHN4JhqT$fqs#A}SSfO<Ta8k7p5Nz*{Pu7` zbWO%4S2(xO9SpXzl7n{3er?*=xqe@+ClI>a;PI6d{l4ZYc8C1Mm)oY6_;N#DzwdHO zk*6rfbHz78a{`{rpO*Ok_T`+CNS_|7BFWnxyLU^^_~xzcq5hC3!}j@oshOkt4H{(U zd8WEc3PbixcVUUg4ix)mdh?=3o_Nv~t=)HDT-Q9->z(HF`li`a-QGe^p4HD^Sm+J} z)t=|caTn82ROI&M(Pzk>>M!x-W!TBV=oeW>5~AM?Iv7{YQy8$lzC6!tPqEWSbl2eL zT;W1@$TR!8Jb!LUk;fMbrnyT(`F_5lF6@>?-f8(E1uNwC`mUHS8&MogvxgUY+{~dw z|4&LwOH0!5ZUu?4f+3GPuNBiMwg&lF7<>5lgN3{!LWQ3H-oc`Qp>5(T`BL45fqZw4 zC*;j_7e>~Om{xjdiFPY;X~bP|g9b+?jY^8F8@VeQ9+i?1sekRVXua`cT;-DUNSh+o z8oBUBiz{kv4i39qdm?+atFb3fDd)C>p<=cr#V+&)L$-gaQx8TSpSZnZitU*l@Z^SK z-;D+)jd6wZwGTOde}U}{5+gggrN1PU=Phm(OiNT!klXH%J<IQF5wdeUwmXOLFwRV` zXO`^^*(JV0PcRre3xSf5TIge8`e1KPvAcLqdX}?|u`Ng+sIk~fZH2qAP~Wb{*EvYV zwmT3gBr>tB%3-SuJ&|3LceO6^Fy)ZP7t|Ie7ZVImFqTrqo?yUFM&$a7i&;_OoXEwu zXGXud?sHezOipJqwm8nLCnK?$T~xrb?9_nWY~ZjV{nOJ5{cJ>fki_w%=Xqx8yXgu< zkna}y?9`y$Z1}jW^vePHPaovFoRntMnNKVA;`C~b_UHMn(Zz0GkbLtO`^m4!s_oUI z3*VjKij2wK9JX`aO6FNQXt|1~CV%y)VMA?A{_pq28n2t@pF9!p<`yV>|FdU`OMG_H zj9gAEGbOO$X&#@sT$1cr-cWvQ__P`MxdBZ`%Zc^*`}9zT6(~KtK}Gk9?*7)>70F~m zV<HplIdQa;L@YJ@`;FpWBzN7ukezyYjssZK|DnI%#YF2HIC{unJC<<c{KW;qe1G7I zrR9eLSFY%qzh-=_m!c95PS6vIrKCq`ah*xX>$os-JX8I}9y_PRTbQTYFO#(Om~l8a z9D(S$+>Y^;xO!~M9pWhFl!QEyw@yqS&W(1RbE{rAwa`6{T~#K}B1-~fFt=Xb@9r<| zJ<{g#GyZ_KO1Tib$I>F5-rF1P`+jp*?Y~XNof}J@fP0#U2}JgJ?}+E7j2!x)ZgkxA z1+E0mDzfP0#Aw^X4)K*jUSA2h#kulv#3EHb@>K{XW(PxgEM!t*a^!1&5A(#IKdKwA z{(ku=GuB_q$9Bco;qlJpA|cx%JwN_7GH1qX(S^m$5-MKVNiec)X42oad^odZ73XBI z82$jL?@KfL)G7)nqQQ_qFw0-e-Aoebql{TAA|KD{5t%dlOmy*_cCKjLyaBFA<~NT- zk{67s6g%R7?Z%F@Jy$!jctLjb!h(<DqaXgz+ZDNL@#)C;CDqMRCjUGywv^*P&yHSq z<FoORz@@p7qswPR-M>zAHBfvkHY4EH70O-n*S|rE+s+k3_2~9g*HBkv!mZav_T4%& zI^(vru7=JZ!q`l7fyBBA7I*_%Po(ng%d2>Ox*W+I{sijwditdV*CVcIyF0ohL^k}P zUNm9NO|IycwY^*}JJPE-BeHv4BTB6<^*5z8zBpH>$f<SrM{ZwVquwCjRDT+mWh^?j zHLKXmPENB&59=3+tZx!q-jnN-YhOM(zdOW{H`XUrjKwQ<0u<m+*LMqFdCqD3Yp=1T z=tXCim;2i1F@I#t<2w1~;Ku%Z=;Fvov{|9`4-e>FA$C*z^Y0HYj<nk_I;U%D+pekY z+u3c~Wwh(qrfs*jZ4-wNOC9N%>DBF@n#B>xu-mt7XTI0gZr3@ZU8go}`6qF(I~Yp6 ze8Xng1O5Ef8tk#ha!vNgr&8#d>Gnm>Y`Dkuuf4p@s&x6qEwU!#k;u@kKZOfV?br~o zd2PG=a`i91zvb`QTy(jEP=3j&9qV%K(4MWn{L9S+-cvgkmt3yvJy9=lE??xDN1u%* zZ~Nw7cy-&9@LzvxTm1ATy|oRAi~P28+dp}8i|iU)Gy2l5!~Y+?y+r~;AB=X~y)~}N zP;&5h?{I&9x#03U-2BMiy-D%IV=r<|%8kx<7ums6J61)`jjSHoK5|R+^?eicT6a_Q z&etdZ?`z$^{95;(D>C%mivN>d?aIXc?`vJ`PoiE&^@jLA`?YS-(ad=B4zc^h?0>_{ z+_Voi{^QGBbkWJR|D7*#(VidgbN#=5i@Q0p`%6#ss;@fz?M?2&Kfc8+jJ|g6wBF#d z;{M_7EqeUtkqNxH{rG?J*7p8yBb>LkCtbX;1<KBJd+kv1o+l#y+wNa8DBgAPzxew0 iSt-4_J)KqFwcHiivUc2>?iF31{JUP?7W`XZ-~I!Pw4Sm6 diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index c920974d8..29041f8db 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" -"Last-Translator: Hoat Le Van <hoatlevan@gmail.com>\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -19,21 +19,21 @@ msgstr "" "Language: vi\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -46,95 +46,83 @@ msgid "" msgstr "" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 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:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " +#: sphinx/application.py:298 +msgid "loading pickled environment" msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -150,60 +138,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -211,833 +193,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Các đề nghị nâng cao Python; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "Dựng sẵn" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "Mức mô-đun" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%d/%m/%Y" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Chỉ mục chung" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "chỉ mục" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "xem tiếp" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "xem lại" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "Tài liệu %s %s" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1051,188 +922,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "(trong" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1251,253 +1144,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1505,11 +1392,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1517,25 +1404,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1545,15 +1432,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1564,22 +1451,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1588,36 +1475,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1625,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1655,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1684,214 +1571,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "Tác giả mục:" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "Tác giả mô-đun:" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "Tác giả mã lệnh:" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "Tác giả:" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Tham số" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "Trả về" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "Kiểu trả về" @@ -1920,12 +1807,12 @@ msgstr "%s (kiểu C)" msgid "%s (C variable)" msgstr "%s (biến C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "hàm" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "thuộc tính" @@ -1933,7 +1820,7 @@ msgstr "thuộc tính" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "kiểu" @@ -1941,297 +1828,262 @@ msgstr "kiểu" msgid "variable" msgstr "biến" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "Mới từ phiên bản %s" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "Thay đổi trong phiên bản %s" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "Sắp loại bỏ từ phiên bản %s" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "Ném" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (kiểu C++)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (thuộc tính C++)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (hàm C++)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (lớp C++)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" -msgstr "" - -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "lớp" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (hàm dựng sẵn)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (phương thức %s)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (lớp)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (biến toàn cục hoặc hằng số)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (thuộc tính %s)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "Đối số" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (mô-đun)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "phương thức" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "dữ liệu" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "thuộc tính" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "mô-đun" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "từ khoá" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "toán tử" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "đối tượng" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "ngoại lệ" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "câu lệnh" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "hàm dựng sẵn" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "Các biến" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "Đưa ra" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (trong mô-đun %s)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (biến dựng sẵn)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (trong mô-đun %s)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (lớp dựng sẵn)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (lớp trong %s)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (phương thức %s.%s) " -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (phương thức tĩnh %s.%s)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (phương thức tĩnh %s)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (phương thức lớp %s.%s)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (phương thức lớp %s)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (thuộc tính %s.%s)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Chỉ Mục Mô-đun Python" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "các mô-đun" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "Sắp loại bỏ" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "phương thức lớp" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "phương thức tĩnh" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "(sắp loại bỏ)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (chỉ thị)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (vai trò)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "chỉ thị" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "vai trò" @@ -2240,209 +2092,200 @@ msgstr "vai trò" msgid "environment variable; %s" msgstr "các biến môi trường; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "tuỳ chọn dòng lệnh%s; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "chú giải thuật ngữ" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "xem %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "nên xem %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "Biểu tượng" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2454,352 +2297,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2807,66 +2679,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2881,106 +2772,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "Các ví dụ" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "Chú ý" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "Cảnh báo" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "Nguy hiểm" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "Lỗi" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "Gợi ý" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "Quan trọng" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "Ghi chú" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "Xem thêm" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "Mẹo" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "Cảnh báo" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "" @@ -2999,7 +2890,7 @@ msgstr "Tìm Kiếm" msgid "Go" msgstr "Thực hiện" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "Hiển thị mã nguồn" @@ -3148,13 +3039,13 @@ msgstr "" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3196,36 +3087,36 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr "" @@ -3242,76 +3133,89 @@ msgstr "" msgid "Contents" msgstr "Nội dung" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3325,140 +3229,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js index 96f2376b3..d1946312e 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "zh_Hans_CN", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\"> \u7248\u6743\u6240\u6709</a> %(copyright)s.", "© Copyright %(copyright)s.": "© \u7248\u6743\u6240\u6709 %(copyright)s.", ", in ": "\uff0c\u5728", "About these documents": "\u5173\u4e8e\u8fd9\u4e9b\u6587\u6863", "Automatically generated list of changes in version %(version)s": "\u81ea\u52a8\u751f\u6210\u7684 %(version)s \u7248\u672c\u4e2d\u7684\u66f4\u6539\u5217\u8868", "C API changes": "C API \u66f4\u6539", "Changes in Version %(version)s — %(docstitle)s": "\u66f4\u6539\u53d1\u751f\u5728\u7248\u672c %(version)s— %(docstitle)s", "Collapse sidebar": "\u6298\u53e0\u8fb9\u680f", "Complete Table of Contents": "\u5b8c\u6574\u7684\u5185\u5bb9\u8868", "Contents": "\u76ee\u5f55", "Copyright": "\u7248\u6743\u6240\u6709", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u7531 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \u521b\u5efa\u3002", "Expand sidebar": "\u5c55\u5f00\u8fb9\u680f", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u5728\u8fd9\u513f\uff0c\u4f60\u53ef\u4ee5\u5bf9\u8fd9\u4e9b\u6587\u6863\u8fdb\u884c\u641c\u7d22\u3002\u5411\u641c\u7d22\u6846\u4e2d\u8f93\u5165\u4f60\u6240\u8981\u641c\u7d22\u7684\u5173\u952e\u5b57\u5e76\u70b9\u51fb\u201c\u641c\u7d22\u201d\u3002\u6ce8\u610f\uff1a\u641c\u7d22\u5f15\u64ce\u4f1a\u81ea\u52a8\u641c\u7d22\u6240\u6709\u7684\u5173\u952e\u5b57\u3002\u5c06\u4e0d\u4f1a\u641c\u7d22\u5230\u90e8\u5206\u5173\u952e\u5b57\u7684\u9875\u9762.", "Full index on one page": "\u4e00\u9875\u7684\u5168\u90e8\u7d22\u5f15", "General Index": "\u603b\u76ee\u5f55", "Global Module Index": "\u5168\u5c40\u6a21\u5757\u7d22\u5f15", "Go": "\u8f6c\u5411", "Hide Search Matches": "\u9690\u85cf\u641c\u7d22\u7ed3\u679c", "Index": "\u7d22\u5f15", "Index – %(key)s": "\u7d22\u5f15 – %(key)s", "Index pages by letter": "\u6309\u7167\u5b57\u6bcd\u7684\u7d22\u5f15\u9875", "Indices and tables:": "\u7d22\u5f15\u548c\u8868\u683c\uff1a", "Last updated on %(last_updated)s.": "\u6700\u540e\u66f4\u65b0\u4e8e %(last_updated)s.", "Library changes": "\u5e93\u66f4\u6539", "Navigation": "\u5bfc\u822a", "Next topic": "\u4e0b\u4e00\u4e2a\u4e3b\u9898", "Other changes": "\u5176\u4ed6\u66f4\u6539", "Overview": "\u6982\u8ff0", "Permalink to this definition": "\u6c38\u4e45\u94fe\u63a5\u81f3\u76ee\u6807", "Permalink to this headline": "\u6c38\u4e45\u94fe\u63a5\u81f3\u6807\u9898", "Please activate JavaScript to enable the search\n functionality.": "\u8bf7\u6fc0\u6d3b JavaScript \u4ee5\u5f00\u542f\u641c\u7d22\u529f\u80fd", "Preparing search...": "\u51c6\u5907\u641c\u7d22\u2026\u2026", "Previous topic": "\u4e0a\u4e00\u4e2a\u4e3b\u9898", "Quick search": "\u5feb\u901f\u641c\u7d22", "Search": "\u641c\u7d22", "Search Page": "\u641c\u7d22\u9875\u9762", "Search Results": "\u641c\u7d22\u7ed3\u679c", "Search finished, found %s page(s) matching the search query.": "\u641c\u7d22\u5b8c\u6210\uff0c\u6709 %s \u4e2a\u9875\u9762\u5339\u914d\u3002", "Search within %(docstitle)s": "\u5728 %(docstitle)s \u4e2d\u641c\u7d22", "Searching": "\u641c\u7d22\u4e2d", "Show Source": "\u663e\u793a\u6e90\u4ee3\u7801", "Table of Contents": "", "This Page": "\u672c\u9875", "Welcome! This is": "\u6b22\u8fce\uff01\u8fd9\u662f", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u6ca1\u6709\u4efb\u4f55\u6587\u6863\u5339\u914d\u60a8\u7684\u641c\u7d22\u3002\u8bf7\u786e\u4fdd\u4f60\u8f93\u5165\u7684\u8bcd\u62fc\u5199\u6b63\u786e\u5e76\u9009\u62e9\u4e86\u5408\u9002\u7684\u5206\u7c7b\u3002", "all functions, classes, terms": "\u6240\u7684\u51fd\u6570\uff0c\u7c7b\uff0c\u672f\u8bed", "can be huge": "\u53ef\u80fd\u4f1a\u5f88\u591a", "last updated": "\u6700\u540e\u66f4\u65b0\u4e8e", "lists all sections and subsections": "\u5217\u51fa\u6240\u6709\u7684\u7ae0\u8282\u548c\u90e8\u5206", "next chapter": "\u4e0b\u4e00\u7ae0", "previous chapter": "\u4e0a\u4e00\u7ae0", "quick access to all modules": "\u5feb\u901f\u67e5\u770b\u6240\u6709\u7684\u6a21\u5757", "search": "\u641c\u7d22", "search this documentation": "\u641c\u7d22\u6587\u6863", "the documentation for": "\u8fd9\u4efd\u6587\u6863\u662f"}, "plural_expr": "0"}); +Documentation.addTranslations({"locale": "zh_Hans_CN", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\"> \u7248\u6743\u6240\u6709</a> %(copyright)s.", "© Copyright %(copyright)s.": "© \u7248\u6743\u6240\u6709 %(copyright)s.", ", in ": "\uff0c\u5728", "About these documents": "\u5173\u4e8e\u8fd9\u4e9b\u6587\u6863", "Automatically generated list of changes in version %(version)s": "\u81ea\u52a8\u751f\u6210\u7684 %(version)s \u7248\u672c\u4e2d\u7684\u66f4\u6539\u5217\u8868", "C API changes": "C API \u66f4\u6539", "Changes in Version %(version)s — %(docstitle)s": "\u66f4\u6539\u53d1\u751f\u5728\u7248\u672c %(version)s— %(docstitle)s", "Collapse sidebar": "\u6298\u53e0\u8fb9\u680f", "Complete Table of Contents": "\u5b8c\u6574\u7684\u5185\u5bb9\u8868", "Contents": "\u76ee\u5f55", "Copyright": "\u7248\u6743\u6240\u6709", "Created using <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u7531 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \u521b\u5efa\u3002", "Expand sidebar": "\u5c55\u5f00\u8fb9\u680f", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u5728\u8fd9\u513f\uff0c\u4f60\u53ef\u4ee5\u5bf9\u8fd9\u4e9b\u6587\u6863\u8fdb\u884c\u641c\u7d22\u3002\u5411\u641c\u7d22\u6846\u4e2d\u8f93\u5165\u4f60\u6240\u8981\u641c\u7d22\u7684\u5173\u952e\u5b57\u5e76\u70b9\u51fb\u201c\u641c\u7d22\u201d\u3002\u6ce8\u610f\uff1a\u641c\u7d22\u5f15\u64ce\u4f1a\u81ea\u52a8\u641c\u7d22\u6240\u6709\u7684\u5173\u952e\u5b57\u3002\u5c06\u4e0d\u4f1a\u641c\u7d22\u5230\u90e8\u5206\u5173\u952e\u5b57\u7684\u9875\u9762.", "Full index on one page": "\u4e00\u9875\u7684\u5168\u90e8\u7d22\u5f15", "General Index": "\u603b\u76ee\u5f55", "Global Module Index": "\u5168\u5c40\u6a21\u5757\u7d22\u5f15", "Go": "\u8f6c\u5411", "Hide Search Matches": "\u9690\u85cf\u641c\u7d22\u7ed3\u679c", "Index": "\u7d22\u5f15", "Index – %(key)s": "\u7d22\u5f15 – %(key)s", "Index pages by letter": "\u6309\u7167\u5b57\u6bcd\u7684\u7d22\u5f15\u9875", "Indices and tables:": "\u7d22\u5f15\u548c\u8868\u683c\uff1a", "Last updated on %(last_updated)s.": "\u6700\u540e\u66f4\u65b0\u4e8e %(last_updated)s.", "Library changes": "\u5e93\u66f4\u6539", "Navigation": "\u5bfc\u822a", "Next topic": "\u4e0b\u4e00\u4e2a\u4e3b\u9898", "Other changes": "\u5176\u4ed6\u66f4\u6539", "Overview": "\u6982\u8ff0", "Permalink to this definition": "\u6c38\u4e45\u94fe\u63a5\u81f3\u76ee\u6807", "Permalink to this headline": "\u6c38\u4e45\u94fe\u63a5\u81f3\u6807\u9898", "Please activate JavaScript to enable the search\n functionality.": "\u8bf7\u6fc0\u6d3b JavaScript \u4ee5\u5f00\u542f\u641c\u7d22\u529f\u80fd", "Preparing search...": "\u51c6\u5907\u641c\u7d22\u2026\u2026", "Previous topic": "\u4e0a\u4e00\u4e2a\u4e3b\u9898", "Quick search": "\u5feb\u901f\u641c\u7d22", "Search": "\u641c\u7d22", "Search Page": "\u641c\u7d22\u9875\u9762", "Search Results": "\u641c\u7d22\u7ed3\u679c", "Search finished, found %s page(s) matching the search query.": "\u641c\u7d22\u5b8c\u6210\uff0c\u6709 %s \u4e2a\u9875\u9762\u5339\u914d\u3002", "Search within %(docstitle)s": "\u5728 %(docstitle)s \u4e2d\u641c\u7d22", "Searching": "\u641c\u7d22\u4e2d", "Show Source": "\u663e\u793a\u6e90\u4ee3\u7801", "Table of Contents": "\u76ee\u5f55", "This Page": "\u672c\u9875", "Welcome! This is": "\u6b22\u8fce\uff01\u8fd9\u662f", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u6ca1\u6709\u4efb\u4f55\u6587\u6863\u5339\u914d\u60a8\u7684\u641c\u7d22\u3002\u8bf7\u786e\u4fdd\u4f60\u8f93\u5165\u7684\u8bcd\u62fc\u5199\u6b63\u786e\u5e76\u9009\u62e9\u4e86\u5408\u9002\u7684\u5206\u7c7b\u3002", "all functions, classes, terms": "\u6240\u7684\u51fd\u6570\uff0c\u7c7b\uff0c\u672f\u8bed", "can be huge": "\u53ef\u80fd\u4f1a\u5f88\u591a", "last updated": "\u6700\u540e\u66f4\u65b0\u4e8e", "lists all sections and subsections": "\u5217\u51fa\u6240\u6709\u7684\u7ae0\u8282\u548c\u90e8\u5206", "next chapter": "\u4e0b\u4e00\u7ae0", "previous chapter": "\u4e0a\u4e00\u7ae0", "quick access to all modules": "\u5feb\u901f\u67e5\u770b\u6240\u6709\u7684\u6a21\u5757", "search": "\u641c\u7d22", "search this documentation": "\u641c\u7d22\u6587\u6863", "the documentation for": "\u8fd9\u4efd\u6587\u6863\u662f"}, "plural_expr": "0"}); \ No newline at end of file diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 7a82a0d757943ecb9469d6b90271ac9cf6c6a341..9b92ff0e83b78ec1566217bd6ba2f715f6b957f4 100644 GIT binary patch delta 26944 zcmc(m2Y6Lg*09f|sSyMb>E(b%KuD+ph9Xr&X;Q?3VjvgDm}Uw^)Ei15frJDO5PEMz z3vj6^L>*^rV=vf8CFkZw$6>~q(GlDKuCva)1l0Lv{_lUDp9gr)-e;d()?RDvdP{fL z3KZ1xecZ6tYJ)!qYZyjLxafKbUHtRsn+;<v!7pKZxVRJlJce-y7Vyn2QM@Dm4_yqS zDe=d;8paodU+!iY!w8@5ZWvAAPdyCdG2)xtVi>7#B}_03pHaIPkwm1zE+kwEa|jpr zHjF#r&_0IoBFu;P!~1VF49Yf+!+P*jSR0;))Y14S><`Tt!ypUeA$SK|18;+Wg6&|N zzJ_rX<r{-}xRQvGFcMCLlF>XU8SjSI!2|GG_!Mje-+=XDC9Dg-fl{Gb{S4!3*bvJ5 z)^0c&N<J~LF&qsWP`=^i;Tkv#nlKAWLA#-3bP8StpLO5A0>=|R4+p^^G*>dra=8&U zAnb=C*=J!h_#u=Ed<~n!hylpIDG!l6NDBr)NpKgWTa77DKFovkim?Z_fgi&b@JDzf zY>r${!`omF_$`!*M-4QLE8wm0VK@kiM7KlK!`M3z`OCxmL=1;@X--2p0is973@8Py zg;U`%DEirCuvRDvN;nRh@G&To+Td~*6v-Ar>EbhxIvdZq@9PZl8Ab;p8Vph13R@GN z3TcEfAIgVML+RTWVO#hvL?4X{P;{opP;KdbP%0D)d&1e!ga@E}|1y-W`2b26{MpAt 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 XM!b<}h1(l?qQW1C&M4jA5*q&pFD=Qq delta 18654 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 H`1$_<DE@L1 diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 24f50e837..ebaaa5000 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -1,11 +1,13 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: # Yinian Chin <yinian1992@live.com>, 2015,2017-2018 # Hsiaoming Yang <me@lepture.com>, 2018 +# Nomaka <nomakacyx@gmail.com>, 2018 # Lenville Leo <lenville@gmail.com>, 2013 +# Nomaka <nomakacyx@gmail.com>, 2018 # Ryekee Zhong <ryekee@gmail.com>, 2013 # Tower Joo<zhutao.iscas@gmail.com>, 2009 # Yinian Chin <yinian1992@live.com>, 2018 @@ -14,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-09-12 13:29+0000\n" -"Last-Translator: Yinian Chin <yinian1992@live.com>\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -25,191 +27,173 @@ msgstr "" "Language: zh_CN\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "配置目录中缺少 conf.py 文件 (%s)" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "无法找到源码目录 (%s)" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" -msgstr "源码目录和目标目录不能是同一目录" +msgstr "源文件目录和目标目录不能是同一目录" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" -msgstr "正在运行的是 Sphinx v%s" +msgstr "正在运行 Sphinx v%s" #: sphinx/application.py:214 #, python-format msgid "" "This project needs at least Sphinx v%s and therefore cannot be built with " "this version." -msgstr "该项目需要 Sphinx v%s 及以上版本,当前使用版本不能完成文档构建。" +msgstr "该项目需要 Sphinx v%s 及以上版本,使用现有版本不能构建文档。" #: sphinx/application.py:234 -msgid "making output directory..." -msgstr "创建输出目录…" +msgid "making output directory" +msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." -msgstr "conf.py 中当前定义的 'setup' 不是一个可调用的 Python 对象。请修改其定义为一个可调用函数。conf.py 作为 Sphinx 扩展时必须如此配置。" +msgstr "当前 conf.py 中定义的 'setup' 不是一个可调用的 Python 对象。请把其定义改为一个可调用的函数。Sphinx 扩展的 conf.py 必须这样配置。" -#: sphinx/application.py:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "未找到主域 %r,已忽略。" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "正在加载翻译 [%s]... " -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "完成" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "没有内置信息的翻译" -#: sphinx/application.py:300 -msgid "loading pickled environment... " -msgstr "正在加载 pickled 环境..." +#: sphinx/application.py:298 +msgid "loading pickled environment" +msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "失败:%s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "未选择构建程序,默认使用:html" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "完成但存在问题" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "构建 %s, %s 警告。" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "构建 %s." -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" -msgstr "正在设置扩展 %s:节点类 %r 已经注册,其访问者将被覆盖" +msgid "node class %r is already registered, its visitors will be overridden" +msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" -msgstr "正在设置扩展 %s:指令 %r 已经注册,其将被覆盖" +msgid "directive %r is already registered, it will be overridden" +msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" -msgstr "正在设置扩展 %s:角色 %r 已经注册,其将被覆盖" +msgid "role %r is already registered, it will be overridden" +msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, 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 "扩展 %s 没有声明是否并行读取安全,默认假设为否 - 请联系扩展作者检查是否支持该特性并显式声明" +msgstr "扩展 %s 没有声明是否并行读取安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, 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 "%s 扩展没有声明是否并行写入安全,默认假设为否 - 请联系扩展作者检查是否支持该特性并显式声明" +msgstr "%s 扩展没有声明是否并行写入安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" -msgstr "生成序号 %s" +msgstr "执行顺序 %s" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "不能覆盖字典配置项 %r,已忽略 (请用 %r 设置单个字典元素)" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" -msgstr "配置项 %r 数值 %r 无效,已忽略" +msgstr "无效的数值 %r 用于配置项 %r,已忽略" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "配置项 %r 覆盖值类型不支持,已忽略" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "覆盖中包含未知配置项 %r ,已忽略" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "不存在的配置项:%s" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "配置项 %r 已存在" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" -msgstr "配置文件中有语法错误:%s" +msgid "There is a syntax error in your configuration file: %s\n" +msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "\n你是否已经从 Python 2.x 迁移到 3.x 并调整相应语法?" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "配置文件(或配置文件导入的模块)调用了 sys.exit()" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -217,833 +201,724 @@ msgid "" "%s" msgstr "配置文件中有程序上的错误:\n\n%s" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." -msgstr "配置项 `source_suffix' 应是字符串、字符串列表或字典。但现在是 %r' 。" +msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "节 %s" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "图 %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "表 %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "列表 %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "配置项 `{name}` 必须设置为 {candidates} 之一,但现在是 `{current}` 。" -#: sphinx/config.py:459 -msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " -"{permitted}." -msgstr "配置项 `{name}' 的类型是 `{current.__name__}',应为 {permitted}。" - #: sphinx/config.py:465 msgid "" +"The config value `{name}' has type `{current.__name__}'; expected " +"{permitted}." +msgstr "" + +#: sphinx/config.py:478 +msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "配置项 `{name}' 的类型是 `{current.__name__}',默认为 `{default.__name__}'。" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "配置项 %r 的值包含了非 ASCII 字符,这会导致 Unicode 错误。请使用 Unicode 字符串,例如 %r。" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "未找到 primary_domain %r,已忽略。" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "事件 %r 已存在" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "未知事件名称:%s" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "未能加载 needs_extensions 配置项所需的 %s。" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, python-format msgid "" "This project needs the extension %s at least in version %s and therefore " "cannot be built with the loaded version (%s)." msgstr "该项目所需扩展 %s 最低要求版本 %s ,当前加载版本 (%s) 无法构建文档。" -#: sphinx/highlighting.py:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "未知的 Pygments 词法分析器 %r" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "无法按照“%s”语言的词法解析代码块,跳过语法高亮。" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" -msgstr "源码中存在编码无法识别的字符,已经替换为“?”:%r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." +msgstr "无法读取文档,已忽略。" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "构建程序类 %s 未包含 \"name\" 属性" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "构建程序 %r 已存在 (见模块 %s)" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "构建程序 %s 未注册或在入口点不可用" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "构建程序 %s 未注册" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "域 %s 已注册" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "域 %s 尚未注册" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" -msgstr "指令 %r 已在 %d 域上注册" +msgid "The %r directive is already registered to domain %s" +msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" -msgstr "角色 %r 已在 %d 域上注册" +msgid "The %r role is already registered to domain %s" +msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" -msgstr "索引 %r 已在 %d 域上注册" +msgid "The %r index is already registered to domain %s" +msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "对象类型 %r 已注册" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "交叉引用类型 %r 已注册" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "源文件扩展名 %r 已注册" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "%r 的 source_parser 已注册" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "未注册 %s 的源代码语法分析器" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "%r 的 source_input 已注册" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" -msgstr "%s 的 source_input 未注册" +msgid "Translator for %r already exists" +msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "%r 的转译器已存在" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "add_node() 的关键字参数必须是 (visit, depart) 形式的函数元组:%r=%r" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "可数节点 %r 已注册" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "公式渲染器 %s 已注册" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" +"the extension %r was already merged with Sphinx since version %s; this " +"extension is ignored." -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "原始异常:\n" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "无法导入扩展 %s" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "扩展 %r 未包含setup() 函数;它确实是一个 Sphinx 扩展模块吗?" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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 "该项目所用扩展 %s 需要 Sphinx 版本 %s 以上;当前版本无法构建文档。" -#: sphinx/registry.py:495 +#: sphinx/registry.py:496 #, python-format msgid "" "extension %r returned an unsupported object from its setup() function; it " "should return None or a metadata dictionary" msgstr "扩展 %r 在其 setup() 函数中返回了一个不支持的对象;该函数应返回 None 或一个元数据字典" -#: sphinx/roles.py:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python 提高建议; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "主题 %r 未包含 \"theme\" 配置" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "主题 %r 未包含 \"inherit\" 配置" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "未找到主题 %r,则从 %r 继承" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "配置项 %s.%s 在所有已找到主题配置中均未出现" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "不支持的主题选项 %r" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "主题扩展 %r 未正确响应。" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "主题路径指定的文件 %r 是一个无效的或不包含主题的 zip 文件。" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "sphinx_rtd_theme 从 1.4.0 版本开始不再作为强依赖。请手动安装。(pip install sphinx_rtd_theme)" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "主题 %r 未找到 (缺少 theme.conf?)" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "没有找到适合 %s 构建器的图像:%s (%s)" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "没有找到适合 %s 构建器的图像:%s" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "构建 [mo]:" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "写入输出……" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "所有的 %d po 文件" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "指定了 %d 个 po 文件的目标文件" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "%d 个 po 文件的目标文件已过期" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "所有源文件" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "源文件目录下没有命令行给出的 %r 文件,将被忽略" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "命令行给出的 %r 文件不存在,将被忽略" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "命令行给出了 %d 个源文件" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "%d 个源文件的目标文件已过期" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" -msgstr "构建 [%s]" +msgstr "构建 [%s]中" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "查找当前已过期的文件……" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "找到 %d 个" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "没有找到" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " -msgstr "Pickle 序列化环境……" +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" +msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " -msgstr "检查一致性……" +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" +msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "没有过期的目标文件" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "等待工作线程……" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "写入文档:%s" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " -msgstr "准备文档……" +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" +msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." -msgstr "等待其他线程……" +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" +msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "复制图像……" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "无法读取图像文件 %r:直接复制" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "无法复制图像文件 %r:%s" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "无法写入图像文件 %r:%s" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" -msgstr "未安装 PIL - 直接复制图像文件" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" +msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "正在写入 %s 文件……" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "%s 的 MIME 类型未知,将被忽略" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "构建帮助文件索引失败" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "代码签名失败" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "帮助文件存放在 %(outdir)s 中。\n注意你现在无法直接调用它,你需要把它放到 ~/Library/Documentation/Help 目录下或是安装到应用捆绑中。" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "构建 Apple 帮助文件输出前必须设置 applehelp_bundle_id" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "复制本地化文件……" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "写入 Info.plist 文件……" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "复制图标……" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "无法复制图标文件 %r:%s" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "构建访问页……" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "生成帮助索引……" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "跳过" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "索引此帮助文件需要:\n%s" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "命令不存在:%s" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "签名帮助文件……" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "签名帮助文件需要:\n%s" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "概览文件保存在 %(outdir)s 目录 。" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "%s 版本中没有做出修改。" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "内置" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "模块级别" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "复制源文件……" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "创建变更记录时无法读取 %r" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "要调用帮助文件,请执行下面的命令:\n$ mkdir -p $HOME/.local/share/devhelp/books\n$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n$ devhelp" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "导出 DevHelp 索引……" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "伪构建器不生成文件。" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "ePub 文件保存在 %(outdir)s 目录。" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_language”(或“language”)不能为空" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_uid”应为 XML 名称" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_title”(或“html_title”)不能为空" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_author”不能为空" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_contributor”不能为空" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_description”不能为空" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_publisher”不能为空" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_copyright”(或“copyright”)不能为空" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_identifier”不能为空" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“version”不能为空" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "无效的 css_file:%r,已忽略" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "消息目录保存在 %(outdir)s 目录。" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "构建 [%s]:" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "%d 个模板文件的目标文件" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "读取模板……" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "写入消息目录……" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "构建信息文件损坏:%r" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "HTML 页面保存在 %(outdir)s 目录。" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "读取构建信息文件失败:%r" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%Y 年 %m 月 %d 日" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "配置项 html_user_opensearch 必须为字符串" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "总目录" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "索引" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "下一页" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "上一页" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "生成索引……" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "写入附加页面……" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "复制图像……" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "复制可下载文件……" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "无法复制可下载文件 %r:%s" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "复制静态文件……" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "html_static_path 指向的 %r 不存在" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "Logo 文件 %r 不存在" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "Favicon 文件 %r 不存在" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "无法复制静态文件 %r" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "复制额外文件……" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "html_extra_path 指向的 %r 不存在" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "无法复制额外文件 %r" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "写入构建信息文件失败:%r" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "无法加载搜索索引,不会构建所有文档:索引将不完整。" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "页面 %s 匹配了 html_sidebars 中的两条规则:%r 和 %r" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "渲染页面 %s 时发生了错误。\n原因:%r" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "写入文件 %s 时发生错误:%s" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "导出对象清单……" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "导出 %s 的搜索索引……" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "HTML 页面保存在 %(outdir)s 目录。" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "组装单页文档……" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "写入文件……" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "写入附加文件……" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "你现在可以处理 %(outdir)s 中的 Pickle 文件了。" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "你现在可以处理 %(outdir)s 中的 JSON 文件了。" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "无效的 js_file:%r,已忽略" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "注册了多个 math_renderers。但没有选择任何 math_renderer。" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "给定了未知的 math_renderer %r" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s 文档" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "你现在可以打开 %(outdir)s 中的 .hlp 文件运行 HTML Help Workshop 了。" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "导出停止词列表……" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "写入项目文件……" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "写入目录文件……" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "写入索引文件……" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "在上述输出或 %(outdir)s/output.txt 中检查错误" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "锚点“%s”未找到" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "损坏的链接:%s(%s)" @@ -1057,188 +932,210 @@ msgstr "手册页保存在 %(outdir)s 目录。" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "未找到“man_pages”配置项,不会写入手册页" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" -msgstr "你现在可以像下面这样,配合 %(outdir)s 下的 .qhcp 项目文件运行“qcollectiongenerator”命令了:\n$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\nTo view the help file:\n$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" +msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." -msgstr "写入集合项目文件……" +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." +msgstr "HTML 页面保存在 %(outdir)s 目录。" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "Texinfo 文件保存在 %(outdir)s 目录。" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 msgid "" "\n" "Run 'make' in that directory to run these through makeinfo\n" "(use 'make info' here to do that automatically)." msgstr "\n在该目录下运行“make”命令以通过 makeinfo 运行这些 Texinfo文件\n(在此处用“make info”即可自动执行)。" -#: sphinx/builders/texinfo.py:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "未找到“texinfo_documents”配置项,不会写入文档" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "配置项“texinfo_documents”引用了未知文档 %s" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." -msgstr "处理 %s……" +msgid "processing %s" +msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "解析引用……" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "(在" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " -msgstr "复制 Texinfo 支持文件……" +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" +msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" -msgstr "完成" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" +msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "文本文件保存在 %(outdir)s 目录。" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "XML 文件保存在 %(outdir)s 目录。" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "伪 XML 文件保存在 %(outdir)s。" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "LaTex 文件保存在 %(outdir)s 目录。" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\n在该目录下运行“make”以通过 (pdf)latex 运行这些 LaTex 文件\n(在此处用“make latexpdf”即可自动执行)。" -#: sphinx/builders/latex/__init__.py:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "未找到“latex_documents”配置项,不会写入文档" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "配置项“latex_documents”引用了未知文档 %s" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "索引" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "发布" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "没有语种 %r 的 Babel 选项" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "复制 TeX 支持文件……" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." -msgstr "复制附加文件……" +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" +msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "无效的 latex_documents.title(可能包含非 ASCII 字符。请用标记为 Unicode 字符串):%r" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "无效的 latex_documents.author(可能包含非 ASCII 字符。请用标记为 Unicode 字符串):%r" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "未知配置项:latex_elements[%r],已忽略。" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "构建时抛出异常,启动调试器:" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "已中断!" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "reST 标记错误:" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "编码错误:" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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 "如果你想向开发者报告问题,可以查阅已经保存在 %s 的完整 Traceback 信息 。" -#: sphinx/cmd/build.py:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "递归错误:" -#: sphinx/cmd/build.py:70 +#: 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 "在源文件过大或嵌套层数过深时会出现此错误。你可以在 conf.py 中增大默认的Python 递归 1000 层限制,像这样:" -#: sphinx/cmd/build.py:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr " import sys; sys.setrecursionlimit(1500)" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "抛出异常:" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "请向 Bug 追踪系统 <https://github.com/sphinx-doc/sphinx/issues> 投递 Bug 报告。谢谢!" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "工作编号应为正值" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "更多信息请访问 <http://sphinx-doc.org/>。" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1257,291 +1154,285 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "\n从源文件生成文档。\n\nsphinx-build 从 SOURCEDIR 中的文件生成文档,并保存在 OUTPUTDIR。\n它从 SOURCEDIR 的“conf.py” 中读取配置。“sphinx-quickstart”工具可以生\n成包括“conf.py”在内的模板文件。\n\nsphinx-build 可以生成多种格式的文档。在命令行中指定构建器名称即可\n选择文档格式,默认是 HTML。构建器也可以执行文档处理相关的其他\n任务。\n\n默认只会重新构建过期内容。如果指定了文件名,那么只会产生这些文件\n的输出。\n" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "文档源文件的路径" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "输出目录的路径" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "指定重新构建的文件列表。如果指定了 -a 参数,则忽略此项。" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "通用选项" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "构建器(默认:html)" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "写入所有文件(默认:只写入新文件和修改过的文件)" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "不使用已保存的环境,始终读取全部文件" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "缓存环境和 doctree 文件路径(默认:OUTPUTDIR/.doctrees)" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" -msgstr "" +msgstr "如果可能,用 N 个进程并行构建文档(如果指定为“auto”,则 N 为 CPU 数量)" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" -msgstr "" +msgstr "配置文件(conf.py)所在目录路径(默认:与 SOURCEDIR 相同)" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" -msgstr "" +msgstr "只用 -D 选项时,不会采用任何配置文件" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" -msgstr "" +msgstr "覆盖配置文件中的配置项" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" -msgstr "" +msgstr "向 HTML 模板传值" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" -msgstr "" +msgstr "定义标签,用于把涉及此 TAG 的“only”块的内容包含进来" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" -msgstr "" +msgstr "挑刺模式,在引用失败时报警" + +#: sphinx/cmd/build.py:170 +msgid "console output options" +msgstr "控制台输出选项" + +#: sphinx/cmd/build.py:172 +msgid "increase verbosity (can be repeated)" +msgstr "输出更详细的日志(甚至可能重复)" #: sphinx/cmd/build.py:174 -msgid "console output options" -msgstr "" +msgid "no output on stdout, just warnings on stderr" +msgstr "不输出到 stdout,只在 stderr 上输出报警" #: sphinx/cmd/build.py:176 -msgid "increase verbosity (can be repeated)" -msgstr "" - -#: sphinx/cmd/build.py:178 -msgid "no output on stdout, just warnings on stderr" -msgstr "" - -#: sphinx/cmd/build.py:180 msgid "no output at all, not even warnings" -msgstr "" +msgstr "无任何输出,报警也不会输出" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" -msgstr "" +msgstr "着色输出(默认:自动检测)" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" -msgstr "" +msgstr "不着色输出(默认:自动检测)" + +#: sphinx/cmd/build.py:185 +msgid "write warnings (and errors) to given file" +msgstr "把警告(包含错误)信息写入给定的文件" + +#: sphinx/cmd/build.py:187 +msgid "turn warnings into errors" +msgstr "把警告视为错误" #: sphinx/cmd/build.py:189 -msgid "write warnings (and errors) to given file" -msgstr "" +msgid "With -W, Keep going when getting warnings" +msgstr "与 -W 配合使用,在警告时继续运行" #: sphinx/cmd/build.py:191 -msgid "turn warnings into errors" -msgstr "" +msgid "show full traceback on exception" +msgstr "发生异常时显示完整回溯信息" #: sphinx/cmd/build.py:193 -msgid "With -W, Keep going when getting warnings" -msgstr "" - -#: sphinx/cmd/build.py:195 -msgid "show full traceback on exception" -msgstr "" - -#: sphinx/cmd/build.py:197 msgid "run Pdb on exception" -msgstr "" +msgstr "发生异常时运行 Pdb" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" -msgstr "" +msgstr "无法找到文件 %r" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" -msgstr "" +msgstr "-a 选项和文件名不能同时使用" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" -msgstr "" +msgstr "无法打开警告信息文件 %r:%s" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" -msgstr "" +msgstr "-D 选项的参数必须是 name=value 形式" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" -msgstr "" +msgstr "-A 选项的参数必须是 name=value 形式" + +#: sphinx/cmd/quickstart.py:52 +msgid "automatically insert docstrings from modules" +msgstr "自动插入模块中的 Docstring" + +#: sphinx/cmd/quickstart.py:53 +msgid "automatically test code snippets in doctest blocks" +msgstr "自动测试 doctest 块中的测试代码片段" + +#: sphinx/cmd/quickstart.py:54 +msgid "link between Sphinx documentation of different projects" +msgstr "链接不同项目的 Sphinx 文档" + +#: sphinx/cmd/quickstart.py:55 +msgid "write \"todo\" entries that can be shown or hidden on build" +msgstr "编写在构建时可以选择显示、隐藏的“todo”条目" #: sphinx/cmd/quickstart.py:56 -msgid "automatically insert docstrings from modules" -msgstr "" +msgid "checks for documentation coverage" +msgstr "检查文档覆盖率" #: sphinx/cmd/quickstart.py:57 -msgid "automatically test code snippets in doctest blocks" -msgstr "" +msgid "include math, rendered as PNG or SVG images" +msgstr "支持数学公式,渲染成 PNG 或 SVG 图像" #: sphinx/cmd/quickstart.py:58 -msgid "link between Sphinx documentation of different projects" -msgstr "" +msgid "include math, rendered in the browser by MathJax" +msgstr "支持数学公式,用 MathJax 在浏览器中渲染" #: sphinx/cmd/quickstart.py:59 -msgid "write \"todo\" entries that can be shown or hidden on build" -msgstr "" - -#: sphinx/cmd/quickstart.py:60 -msgid "checks for documentation coverage" -msgstr "" +msgid "conditional inclusion of content based on config values" +msgstr "基于配置值控制是否在构建中包含文档内容" #: sphinx/cmd/quickstart.py:61 -msgid "include math, rendered as PNG or SVG images" -msgstr "" - -#: sphinx/cmd/quickstart.py:62 -msgid "include math, rendered in the browser by MathJax" -msgstr "" +msgid "include links to the source code of documented Python objects" +msgstr "支持链接到文档涉及的 Python 对象的源码" #: sphinx/cmd/quickstart.py:63 -msgid "conditional inclusion of content based on config values" -msgstr "" - -#: sphinx/cmd/quickstart.py:65 -msgid "include links to the source code of documented Python objects" -msgstr "" - -#: sphinx/cmd/quickstart.py:67 msgid "create .nojekyll file to publish the document on GitHub pages" -msgstr "" +msgstr "创建 .nojekyll 文件,用于在 GitHub Pages 服务发布文档" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." -msgstr "" +msgstr "请输入有效的路径名。" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." -msgstr "" +msgstr "请输入文本。" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." -msgstr "" +msgstr "请输入 %s 之一。" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." -msgstr "" +msgstr "请输入“y”或“n”。" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." -msgstr "" +msgstr "请输入文件后缀,例如:“.rst”或者“.txt”。" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." -msgstr "" +msgstr "* 提示:输入了非 ASCII 字符并且终端编码未知——假定为 UTF-8 或 Latin-1。" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." -msgstr "" +msgstr "欢迎使用 Sphinx %s 快速配置工具。" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "Please enter values for the following settings (just press Enter to\n" "accept a default value, if one is given in brackets)." -msgstr "" +msgstr "\n请输入接下来各项设置的值(如果方括号中指定了默认值,直接\n按回车即可使用默认值)。" -#: sphinx/cmd/quickstart.py:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" -msgstr "" +msgstr "\n已选择根路径:%s" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." -msgstr "" +msgstr "\n输入文档的根路径。" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" -msgstr "" +msgstr "文档的根路径" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." -msgstr "" +msgstr "错误:选择的根路径中已存在 conf.py 文件。" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." -msgstr "" +msgstr "sphinx-quickstart 不会覆盖已有的 Sphinx 项目。" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" -msgstr "" +msgstr "请输入新的根路径(或按回车退出)" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "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 "" +msgstr "\n布置用于保存 Sphinx 输出的构建目录,有两种选择。\n一是在根路径下创建“_build”目录,二是在根路径下创建“source”\n和“build”两个独立的目录。" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" -msgstr "" +msgstr "独立的源文件和构建目录(y/n)" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "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 "" +msgstr "\n在根目录下,还会创建两个目录:“_templates”用于自定义 HTML 模板、\n“_static”用于自定义 CSS 和其他静态文件。你可以输入其他前缀(比如“.”)\n代替默认的下划线。" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" -msgstr "" +msgstr "模板目录名和静态目录名的前缀" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." -msgstr "" +msgstr "\n项目名称会出现在文档的许多地方。" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" -msgstr "" +msgstr "项目名称" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" -msgstr "" +msgstr "作者名称" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1549,17 +1440,17 @@ msgid "" "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 "" +msgstr "\n在 Sphinx 中,会区分“版本”和“发行版本”两个概念。同一版本可以\n有多个发行版本。例如,Python 版本可以是 2.5 或 3.0,而发行版\n本则是 2.5.1 或 3.0a1。如果你不需要这样的双重版本结构,请把这\n两个选项设置为相同值。" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" -msgstr "" +msgstr "项目版本" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" -msgstr "" +msgstr "项目发行版本" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1568,119 +1459,119 @@ msgid "" "\n" "For a list of supported codes, see\n" "http://sphinx-doc.org/config.html#confval-language." -msgstr "" +msgstr "\n如果用英语以外的语言编写文档,你可以在此按语言代码选择语种。\nSphinx 会把内置文本翻译成相应语言的版本。\n\n支持的语言代码列表见:\nhttp://sphinx-doc.org/config.html#confval-language。" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" -msgstr "" +msgstr "项目语种" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "The file name suffix for source files. Commonly, this is either \".txt\"\n" "or \".rst\". Only files with this suffix are considered documents." -msgstr "" +msgstr "\n源文件的文件名后缀。一般是“.txt”或“.rst”。只有此后缀的文件才会\n被视为文档的源文件。" -#: sphinx/cmd/quickstart.py:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" -msgstr "" +msgstr "源文件后缀" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "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 "" +msgstr "\n有一个特殊的文档将被视为“目录树”的树顶节点,也即是文档层级\n结构的根。一般用“index”作为这个特殊文档,如果你的“index”文\n档使用了自定义模板,你也可以指定其他的文件名。" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" -msgstr "" +msgstr "主文档文件名(不含后缀)" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." -msgstr "" +msgstr "错误:选择的根目录下已存在主文档文件 %s。" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." -msgstr "" +msgstr "sphinx-quickstart 不会覆盖已有的文件。" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" -msgstr "" +msgstr "请输入新文件名,若要重命名现有文件请按回车" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" -msgstr "" +msgstr "启用 Sphinx 扩展:" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." -msgstr "" +msgstr "注意:imgmath 和 mathjax 不能同时启用。已取消选择 imgmath。" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "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 "" +msgstr "\n生成 Makefile 和 Windows 批处理文件,可以直接像“make html”这样\n运行,而不需要直接调用 sphinx-build。" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" -msgstr "" +msgstr "创建 Makefile?(y/n)" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" -msgstr "" +msgstr "创建 Windows 批处理文件?(y/n)" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." -msgstr "" +msgstr "创建文件 %s。" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." -msgstr "" +msgstr "文件 %s 已存在,跳过。" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." -msgstr "" +msgstr "完成:已创建初始目录结构。" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" "You should now populate your master file %s and create other documentation\n" "source files. " -msgstr "" +msgstr "\n你现在可以填写主文档文件 %s 并创建其他文档源文件了。" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" -msgstr "" +msgstr "用 Makefile 构建文档,像这样:\n make builder\n" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" -msgstr "" +msgstr "用 sphinx-build 命令构建文档,像这样:\n sphinx-build -b builder %s %s\n" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" -msgstr "" +msgstr "此处的“builder”是支持的构建器名,比如 html、latex 或 linkcheck。\n" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1688,216 +1579,216 @@ msgid "" "sphinx-quickstart is an interactive tool that asks some questions about your\n" "project and then generates a complete documentation directory and sample\n" "Makefile to be used with sphinx-build.\n" -msgstr "" +msgstr "\n生成 Sphinx 项目的必需文件。\n\nsphinx-quickstart 是一个交互式工具,询问一些关于项目的问题,生成\n完整的文档目录和用于 sphinx-build 的示例 Makefile。\n" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" -msgstr "" +msgstr "静默模式" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" -msgstr "" +msgstr "输出路径" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "文档结构参数" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" -msgstr "" +msgstr "如果指定了此选项,将使用独立的源文件目录和构建目录。" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." -msgstr "" +msgstr "用点替代下划线,“ _templates”。" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "项目基本参数" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" -msgstr "" +msgstr "项目名称" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" -msgstr "" +msgstr "作者名称" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" -msgstr "" +msgstr "项目版本" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" -msgstr "" +msgstr "项目发行版本" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" -msgstr "" +msgstr "项目语种" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" -msgstr "" +msgstr "源文件后缀" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" -msgstr "" +msgstr "主文档名" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" -msgstr "" +msgstr "启用 ePub 支持" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "扩展程序选项" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" -msgstr "" +msgstr "启用 %s 扩展" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" -msgstr "" +msgstr "启用多个扩展" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" -msgstr "" +msgstr "创建 Makefile 和批处理文件" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" -msgstr "" +msgstr "创建 Makefile" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" -msgstr "" +msgstr "不创建 Makefile" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" -msgstr "" +msgstr "创建批处理文件" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" -msgstr "" +msgstr "不创建批处理文件" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" -msgstr "" +msgstr "使用用于 Makefile/make.bat 的 Make 模式" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" -msgstr "" +msgstr "不使用用于 Makefile/make.bat 的 Make 模式" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "项目模板" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" -msgstr "" +msgstr "放置模板文件的模板目录" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" -msgstr "" +msgstr "定义一个模板变量" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." -msgstr "" +msgstr "指定了“quiet”,但是没有指定“project”和“author”。" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." -msgstr "" +msgstr "错误:指定的路径不是一个目录,或是 Sphinx 文件已存在。" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." -msgstr "" +msgstr "sphinx-quickstart 只会在空目录中生成文件。请指定一个新的根路径。" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" -msgstr "" +msgstr "无效模板变量:%s" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "检测到过度的去缩进" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "无效的标题:%s" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" -msgstr "" +msgstr "指定的行号超出范围(1-%d):%r" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "\"%s\" 和 \"%s\" 选项不能同时使用" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "包含的文件 %r 不存在或读取失败" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, python-format msgid "" "Encoding %r used for reading included file %r seems to be wrong, try giving " "an :encoding: option" msgstr "用于读取包含文件 %r 的编码 %r 不正确,请重新给定 :encoding: 选项。" -#: sphinx/directives/code.py:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "对象 %r 在包含文件 %r 中不存在" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "不能在互斥的 \"lines\" 集合上使用 \"lineno-match\" 选项" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "行规范 %r:未能从包含文件 %r 中拉取行" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "节作者:" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "模块作者:" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "代码作者:" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "作者:" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "参数" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "返回" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "返回类型" @@ -1926,12 +1817,12 @@ msgstr "%s (C 类型)" msgid "%s (C variable)" msgstr "%s (C 变量)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "函数" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "成员" @@ -1939,7 +1830,7 @@ msgstr "成员" msgid "macro" msgstr "宏" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "类型" @@ -1947,297 +1838,262 @@ msgstr "类型" msgid "variable" msgstr "变量" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "%s 新版功能" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "在 %s 版更改" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "%s 版后已移除" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." -msgstr "" +msgstr "重复的声明,已经在“%s”处定义。\n定义为“%s”。" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "模板参数" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "抛出" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ 类型)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "%s (C++ 概念)" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++ 成员)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++ 函数)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++ 类)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (C++ 枚举)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (C++ 枚举子)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "类" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" -msgstr "" +msgstr "联合体" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "概念" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "枚举" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "枚举子" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." -msgstr "" +msgstr "重复的声明,已经在“%s”处定义。\n声明名称为“%s”。" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (內置函数)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 方法)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (类)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (全局变量或常量)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 属性)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "参数" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (模块)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "方法" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "数据" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "属性" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "模块" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" -msgstr "" +msgstr "无效的 math_eqref_format:%r" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "重复的公式标签 %s,另一实例出现在 %s" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "关键字" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "运算符" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "对象" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "例外" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "语句" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "內置函数" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "变量" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "引发" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (內置变量)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (內置类)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的类)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s 方法)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s 静态方法)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 静态方法)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s 类方法)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 类方法)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s 属性)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Python 模块索引" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "模块" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "已移除" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "类方法" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "静态方法" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" -msgstr "" +msgstr "交叉引用 %r 找到了多个目标:%s" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr " (已移除)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (指令)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (角色)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "指令" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "角色" @@ -2246,209 +2102,200 @@ msgstr "角色" msgid "environment variable; %s" msgstr "环境变量; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, python-format msgid "" "Malformed option description %r, should look like \"opt\", \"-opt args\", \"" "--opt args\", \"/opt args\" or \"+opt args\"" -msgstr "" +msgstr "畸形的选项描述 %r,应是“opt”、“-opt args”、“--opt args”、“/opt args”或“+opt args”形式" -#: sphinx/domains/std.py:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%s命令行选项; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "术语" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "语法记号" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "引用标签" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "环境变量" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "程序选项" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "文档" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "索引" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "模块索引" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "搜索页面" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" -msgstr "" +msgstr "重复的引文 %s,已有引文出现在 %s" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" -msgstr "" +msgstr "重复的标签 %s,已有标签出现在 %s" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." -msgstr "" +msgstr "引文 [%s] 没有被引用过。" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." -msgstr "" +msgstr "numfig 已禁用,忽略 :numref:。" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" -msgstr "" +msgstr "没有给 %s 分配标号:%s" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" -msgstr "" +msgstr "链接没有标题:%s" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" -msgstr "" +msgstr "无效的 numfig_format:%s (%r)" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" -msgstr "" +msgstr "无效的 numfig_format:%s" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" -msgstr "" +msgstr "新配置" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" -msgstr "" +msgstr "配置有变化" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" -msgstr "" +msgstr "扩展有变化" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" -msgstr "" +msgstr "构建环境版本与当前环境不符" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" -msgstr "" +msgstr "源文件目录已变化" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." -msgstr "" +msgstr "本环境与选择的构建器不兼容,请选择其他的文档树目录。" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" -msgstr "" +msgstr "在 %s 中扫描文档失败:%r" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" -msgstr "" +msgstr "没有注册 %r 域" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." -msgstr "" +msgstr "目录树存在自引用,已忽略。" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" -msgstr "" +msgstr "文档没有加入到任何目录树中" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "见 %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "参见 %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" -msgstr "" +msgstr "未知的索引条目类型 %r" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "符号" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" -msgstr "" +msgstr "在文档树中检测到循环引用,已忽略:%s <- %s" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, python-format msgid "" "toctree contains reference to document %r that doesn't have a title: no link" " will be generated" +msgstr "目录树引用的文档 %r 缺少标题:不会生成链接" + +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" msgstr "" -#: sphinx/environment/adapters/toctree.py:175 +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" -msgstr "" +msgstr "目录树引用的文档 %r 不存在" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" -msgstr "" +msgstr "无法读取图像文件:%s" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" -msgstr "" +msgstr "无法读取图像文件 %s:%s" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" -msgstr "" +msgstr "无法读取下载文件:%s" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" -msgstr "" +msgstr "已经给 %s 分配了章节编号(嵌套的带编号文档树?)" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." -msgstr "" +msgstr "将会创建文件 %s。" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2458,421 +2305,469 @@ msgid "" "excluded from generation.\n" "\n" "Note: By default this script will not overwrite already created files." -msgstr "" +msgstr "\n在 <MODULE_PATH> 中递归查找 Python 模块和包,然后在 <OUTPUT_PATH> 中为每个使用了\nautomodule 指令的包创建一个 reST 文件。\n\n<EXCLUDE_PATTERN> 可以排除生成符合规则的文件/目录的文档。\n\n提示:本脚本默认不会覆盖已有文件。" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" -msgstr "" +msgstr "要生成文档的模块路径" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" -msgstr "" +msgstr "排除的文件/目录,fnmatch 风格的规则" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" -msgstr "" +msgstr "输出的目录" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" -msgstr "" +msgstr "在目录树中显示的子模块最大深度(默认:4)" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" -msgstr "" +msgstr "覆盖已有文件" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." -msgstr "" +msgstr "遵循符号链接。配合 collective.recipe.omelette 使用尤其奏效。" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" -msgstr "" +msgstr "运行脚本,但不创建文件" + +#: sphinx/ext/apidoc.py:334 +msgid "put documentation for each module on its own page" +msgstr "模块有各自的文档页" + +#: sphinx/ext/apidoc.py:337 +msgid "include \"_private\" modules" +msgstr "包含“_private”模块" #: sphinx/ext/apidoc.py:339 -msgid "put documentation for each module on its own page" +msgid "filename of table of contents (default: modules)" msgstr "" -#: sphinx/ext/apidoc.py:342 -msgid "include \"_private\" modules" -msgstr "" +#: sphinx/ext/apidoc.py:341 +msgid "don't create a table of contents file" +msgstr "不创建目录文件" #: sphinx/ext/apidoc.py:344 -msgid "don't create a table of contents file" -msgstr "" - -#: sphinx/ext/apidoc.py:347 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" -msgstr "" +msgstr "不创建模块/包的标题(比如当 Docstring 中已经有标题时,可以使用这个选项)" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" -msgstr "" +msgstr "模块文档先于子模块文档" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" -msgstr "" +msgstr "根据 PEP-0420 隐式命名空间规范解释模块路径" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" -msgstr "" +msgstr "文件后缀(默认:rst)" + +#: sphinx/ext/apidoc.py:359 +msgid "generate a full project with sphinx-quickstart" +msgstr "用 sphinx-quickstart 生成完整项目" #: sphinx/ext/apidoc.py:362 -msgid "generate a full project with sphinx-quickstart" -msgstr "" - -#: sphinx/ext/apidoc.py:365 msgid "append module_path to sys.path, used when --full is given" -msgstr "" +msgstr "当指定了 --full 选项,把 module_path 附加到 sys.path。" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" -msgstr "" +msgstr "项目名称(默认:根模块名)" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" -msgstr "" +msgstr "项目作者,指定了 --full 选项时使用" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" -msgstr "" +msgstr "项目版本,指定了 --full 选项时使用" + +#: sphinx/ext/apidoc.py:370 +msgid "project release, used when --full is given, defaults to --doc-version" +msgstr "项目发行版本,指定了 --full 选项时使用,默认与 --doc-version 等同" #: sphinx/ext/apidoc.py:373 -msgid "project release, used when --full is given, defaults to --doc-version" -msgstr "" - -#: sphinx/ext/apidoc.py:376 msgid "extension options" -msgstr "" +msgstr "扩展选项" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." -msgstr "" +msgstr "%s 不是一个目录" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" -msgstr "" +msgstr "无效的正则表达式 %r 在 %s" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." -msgstr "" +msgstr "已完成源文件的覆盖率测试,请在 %(outdir)s/python.txt 中查看结果。" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" -msgstr "" +msgstr "coverage_c_regexes 中有无效的正则表达式 %r" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" -msgstr "" +msgstr "无法导入模块 %s:%s" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "'%s' 选项中缺少 '+' 或 '-'。" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' 不是一个有效选项。" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' 不是一个有效的 pyversion 选项。" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" -msgstr "" +msgstr "无效的 TestCode 类型" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." -msgstr "" +msgstr "已完成源文件的文档测试,请在 %(outdir)s/output.txt 中查看结果。" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" -msgstr "" +msgstr "块 %s 没有代码或没有输出,出现在 %s:%s" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" -msgstr "" +msgstr "y已忽略无效的文档代码:%r" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "Graphviz 指令不能同时指定内容和文件名参数" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "外部 Graphviz 文件 %r 不存在或读取失败" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "已忽略无内容的 \"graphviz 指令" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "无法运行 Dot 命令 %r (Graphviz 输出所需),请检查 graphviz_dot 配置" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "Dot 退出并报错:\n[stderr]\n%s\n[stdout]\n%s" +"%r" +msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "Dot 未生成输出文件:\n[stderr]\n%s\n[stdout]\n%s" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format 必须是 'png' 或 'svg' 中之一,现为 %r" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" -msgstr "" +msgstr "DOT 代码 %r:%s" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[图表:%s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[图表]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "格式转换命令 %r 不能执行。请检查 image_converter 设置" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" -msgstr "格式转换程序退出并报错:\n[stderr]\n%s\n[stdout]\n%s" +"%r" +msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" -msgstr "" +msgstr "无法运行 LaTeX 命令 %r (数学公式显示必需),请检查 imgmath_latex 设置" -#: sphinx/ext/imgmath.py:163 +#: sphinx/ext/imgmath.py:155 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" -msgstr "" +msgstr "无法运行 %s 命令 %r (数学公式显示必需),请检查 imgmath_%s 设置" -#: sphinx/ext/imgmath.py:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" -msgstr "" +msgstr "显示 LaTeX %r:%s" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" -msgstr "" +msgstr "内联 LaTeX %r:%s" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "公式的永久链接" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" -msgstr "" +msgstr "访问对象清单时报错:" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(在 %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "(在 %s)" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "跨 Sphinx 标识 %r 不是字符串,已忽略" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[源代码]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "待处理" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" -msgstr "" +msgstr "已发现 TODO 条目:%s" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "<<original entry>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "(<<original entry>> 见 %s,第 %d 行。)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "原始记录" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[文档]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "模块代码" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>%s 源代码</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "概览:模块代码" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>代码可用的所有模块</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" -msgstr "" +msgstr "无效的 auto%s 签名(%r)" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" -msgstr "" +msgstr "格式化 %s 参数时报错:%s" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" -msgstr "" +msgstr "属性 %s 不存在,在对象 %s 上" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" -msgstr "" +msgstr "autodoc:无法判断是否生成 %r 的文档。抛出了下列异常:\n%s" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, 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 "" +msgstr "无法判断导入哪个模块来自动生成文档 %r(尝试在文档中使用“module”或“currentmodule”指令,或者显式给定模块名)" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" -msgstr "" +msgstr "automodule 名中的“::”无意义" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" -msgstr "" +msgstr "automodule %s 给定了函数签名参数或返回类型标注" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" -msgstr "" +msgstr "__all__ 应是一个字符串列表,而不是 %r (出现在模块 %s 中) -- 已忽略__all__" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" -msgstr "" +msgstr ":members: 或 __all__ 提及的属性不存在:模块 %s,属性 %s" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "基类:%s" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` 的别名" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" +msgstr "忽略 autodoc_default_flags 中的无效选项:%r" + +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." -msgstr "" +msgstr "autosummary 内部生成 .rst 文件,但是 source_suffix 中不包含 .rst,已跳过。" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" -msgstr "" +msgstr "[autosummary] 生成 autosummary:%s" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" -msgstr "" +msgstr "[autosummary] 写入 %s" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2885,115 +2780,115 @@ msgid "" "``sphinx.ext.autosummary`` Python module and can be read using::\n" "\n" " pydoc sphinx.ext.autosummary\n" -msgstr "" +msgstr "\n用 autosummary 指令生成 ReStructuredText\n\nsphinx-autogen 是 sphinx.ext.autosummary.generate 的前端,它根据给定\n的输入文件中的 autosummary 指令生成 reStructuredText  文件\n\nautosummary 指令的格式见 Python 模块 ``sphinx.ext.autosummary`` 的文\n档,并且可以这样调出文档阅读::\n\n pydoc sphinx.ext.autosummary\n" + +#: sphinx/ext/autosummary/generate.py:383 +msgid "source files to generate rST files for" +msgstr "用于生成 rST 文件的源文件" #: sphinx/ext/autosummary/generate.py:387 -msgid "source files to generate rST files for" -msgstr "" - -#: sphinx/ext/autosummary/generate.py:391 msgid "directory to place all output in" -msgstr "" +msgstr "输出目录" + +#: sphinx/ext/autosummary/generate.py:390 +#, python-format +msgid "default suffix for files (default: %(default)s)" +msgstr "默认的文件名后缀(默认:%(default)s)" #: sphinx/ext/autosummary/generate.py:394 #, python-format -msgid "default suffix for files (default: %(default)s)" -msgstr "" +msgid "custom template directory (default: %(default)s)" +msgstr "自定义模板目录(默认:%(default)s)" #: sphinx/ext/autosummary/generate.py:398 #, python-format -msgid "custom template directory (default: %(default)s)" -msgstr "" - -#: sphinx/ext/autosummary/generate.py:402 -#, python-format msgid "document imported members (default: %(default)s)" -msgstr "" +msgstr "文档导入的成员(默认:%(default)s)" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "关键字参数" -#: sphinx/ext/napoleon/docstring.py:626 -msgid "Example" -msgstr "" - #: sphinx/ext/napoleon/docstring.py:627 +msgid "Example" +msgstr "示例" + +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "实际案例" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" -msgstr "" +msgstr "提示" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" -msgstr "" +msgstr "其他参数" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" -msgstr "" +msgstr "引用" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" -msgstr "" +msgstr "警告" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" -msgstr "" +msgstr "生成器" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "注意" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "警告" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "危险" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "错误" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "提示" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "重要" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "注解" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "参见" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "小技巧" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "警告" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "续上页" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "下页继续" #: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 @@ -3005,7 +2900,7 @@ msgstr "搜索" msgid "Go" msgstr "转向" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "显示源代码" @@ -3154,13 +3049,13 @@ msgstr "搜索" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "搜索结果" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3202,36 +3097,36 @@ msgstr "C API 更改" msgid "Other changes" msgstr "其他更改" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "永久链接至标题" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "永久链接至目标" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "隐藏搜索结果" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "搜索中" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "准备搜索……" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "搜索完成,有 %s 个页面匹配。" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr ",在" @@ -3248,223 +3143,223 @@ msgstr "折叠边栏" msgid "Contents" msgstr "目录" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" -msgstr "" +msgstr "发现使用了 4 列布局的索引页。可能是你所用的扩展出现了 Bug:%r" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." -msgstr "" +msgstr "脚注 [%s] 没有被引用过。" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." -msgstr "" +msgstr "脚注 [#] 没有被引用过。" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" -msgstr "" +msgstr "译文中的脚注引用与原文不一致。原始为:{0},翻译后为:{1}" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" -msgstr "" +msgstr "译文中的引用与原文不一致。原始为:{0},翻译后为:{1}" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" -msgstr "" +msgstr "译文中的引文引用与原文不一致。原始为:{0},翻译后为:{1}" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" -msgstr "" +msgstr "译文中的术语引用与原文不一致。原始为:{0},翻译后为:{1}" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" -msgstr "" +msgstr "more than one target found for 'any' cross-reference %r: could be %s" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "%s:%s 引用目标不存在:%%(target)s" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "%r 引用目标不存在:%%(target)s" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" -msgstr "" +msgstr "无法获取远程图像:%s [%d]" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" -msgstr "" +msgstr "无法获取远程图像:%s [%s]" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." +msgstr "未知的图像格式:%s……" + +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "源码中存在编码无法识别的字符,已经替换为“?”:%r" + +#: sphinx/util/__init__.py:695 +msgid "skipped" msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "当添加指令类时,不应该给定额外参数" #: sphinx/util/i18n.py:74 #, python-format msgid "reading error: %s, %s" -msgstr "" +msgstr "读取时发生错误:%s,%s" #: sphinx/util/i18n.py:81 #, python-format msgid "writing error: %s, %s" -msgstr "" +msgstr "写入时发生错误:%s,%s" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, python-format msgid "" "Invalid date format. Quote the string by single quote if you want to output " "it directly: %s" -msgstr "" +msgstr "无效的日期格式。如果你想直接输出日期字符串,请用单引号:%s" -#: sphinx/util/nodes.py:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" -msgstr "" +msgstr "目录树引用的文件 %r 不存在" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" +msgstr "only 指令表达式求值时抛出异常:%s" + +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" -msgstr "" +msgstr "默认角色 %s 未找到" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" -msgstr "" +msgstr "未定义 %s 的 numfig_format " -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" -msgstr "" +msgstr "没有给 %s 节点分配 ID" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "永久链接至表格" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "永久链接至代码" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "永久链接至图片" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "永久链接至目录树" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." -msgstr "" +msgstr "无法获取图像尺寸,已忽略 :scale: 选项。" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "发布" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" -msgstr "" +msgstr "未知的 %r toplevel_sectioning,用于 %r 类" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." -msgstr "" +msgstr "过大的 :mathdepth:,已忽略。" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "下页继续" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "页" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" -msgstr "" +msgstr "文档标题不是一个单纯文本节点" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" -msgstr "" +msgstr "在节、话题、表格、警示或边栏以外的位置发现标题节点" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "脚注" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." -msgstr "" +msgstr "无效的量纲单位 %s,已忽略。" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" -msgstr "" +msgstr "发现未知的索引条目类型 %s" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "未知配置项:latex_elements[%r],已忽略。" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[图片: %s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[图片]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." -msgstr "" +msgstr "在图示之外发现了图示标题。" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" -msgstr "" +msgstr "未实现的节点类型:%r" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" -msgstr "" +msgstr "未知节点类型:%r" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js index 7572ba40c..42b2a19b4 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "zh_Hant_TW", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">\u7248\u6b0a\u6240\u6709</a> %(copyright)s\u3002", "© Copyright %(copyright)s.": "© \u7248\u6b0a\u6240\u6709 %(copyright)s\u3002", ", in ": " \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", "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 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u4f7f\u7528 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \u5275\u5efa\u3002", "Expand sidebar": "\u5c55\u958b\u5074\u908a\u6b04", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u4f60\u53ef\u4ee5\u5f9e\u9019\u88e1\u641c\u5c0b\u6587\u4ef6\u3002\u8f38\u5165\u641c\u5c0b\u8a5e\u81f3\u5e95\u4e0b\u7684\u6587\u5b57\u6846\u4e26\u9ede\u64ca\u300c\u641c\u5c0b\u300d\u3002\u6ce8\u610f\u641c\u5c0b\u529f\u80fd\u6703\u81ea\u52d5\u5c0b\u627e\u6eff\u8db3\u6240\u6709\u8a5e\u7684\u7d50\u679c\u3002\u53ea\u6eff\u8db3\u5c11\u90e8\u4efd\u641c\u5c0b\u8a5e\u7684\u9801\u9762\u5c07\u4e0d\u4e88\u986f\u793a\u5728\u7d50\u679c\u6e05\u55ae\u4e2d\u3002", "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", "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", "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", "Navigation": "\u700f\u89bd", "Next topic": "\u4e0b\u500b\u4e3b\u984c", "Other changes": "\u5176\u4ed6\u6539\u8b8a", "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", "Please activate JavaScript to enable the search\n functionality.": "\u8acb\u555f\u7528 Javascript \u4ee5\u958b\u555f\u641c\u5c0b\u529f\u80fd\u3002", "Preparing search...": "\u6e96\u5099\u641c\u5c0b\u4e2d\u2026", "Previous topic": "\u4e0a\u500b\u4e3b\u984c", "Quick search": "\u5feb\u901f\u641c\u5c0b", "Search": "\u641c\u5c0b", "Search Page": "\u641c\u5c0b\u9801\u9762", "Search Results": "\u641c\u5c0b\u7d50\u679c", "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", "Show Source": "\u986f\u793a\u539f\u59cb\u78bc", "Table of Contents": "", "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", "next chapter": "\u4e0b\u4e00\u7ae0", "previous chapter": "\u4e0a\u4e00\u7ae0", "quick access to all modules": "\u5feb\u901f\u524d\u5f80\u6240\u6709\u7684\u6a21\u7d44", "search": "\u641c\u5c0b", "search this documentation": "\u641c\u5c0b\u672c\u8aaa\u660e\u6587\u4ef6", "the documentation for": "\u8aaa\u660e\u6587\u4ef6\u4ecb\u7d39"}, "plural_expr": "0"}); +Documentation.addTranslations({"locale": "zh_Hant_TW", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© <a href=\"%(path)s\">Copyright</a> %(copyright)s.": "© <a href=\"%(path)s\">\u7248\u6b0a\u6240\u6709</a> %(copyright)s\u3002", "© Copyright %(copyright)s.": "© \u7248\u6b0a\u6240\u6709 %(copyright)s\u3002", ", in ": " \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", "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 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s.": "\u4f7f\u7528 <a href=\"http://sphinx-doc.org/\">Sphinx</a> %(sphinx_version)s \u5275\u5efa\u3002", "Expand sidebar": "\u5c55\u958b\u5074\u908a\u6b04", "From here you can search these documents. Enter your search\n words into the box below and click \"search\". Note that the search\n function will automatically search for all of the words. Pages\n containing fewer words won't appear in the result list.": "\u4f60\u53ef\u4ee5\u5f9e\u9019\u88e1\u641c\u5c0b\u6587\u4ef6\u3002\u8f38\u5165\u641c\u5c0b\u8a5e\u81f3\u5e95\u4e0b\u7684\u6587\u5b57\u6846\u4e26\u9ede\u64ca\u300c\u641c\u5c0b\u300d\u3002\u6ce8\u610f\u641c\u5c0b\u529f\u80fd\u6703\u81ea\u52d5\u5c0b\u627e\u6eff\u8db3\u6240\u6709\u8a5e\u7684\u7d50\u679c\u3002\u53ea\u6eff\u8db3\u5c11\u90e8\u4efd\u641c\u5c0b\u8a5e\u7684\u9801\u9762\u5c07\u4e0d\u4e88\u986f\u793a\u5728\u7d50\u679c\u6e05\u55ae\u4e2d\u3002", "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", "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", "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", "Navigation": "\u700f\u89bd", "Next topic": "\u4e0b\u500b\u4e3b\u984c", "Other changes": "\u5176\u4ed6\u6539\u8b8a", "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", "Please activate JavaScript to enable the search\n functionality.": "\u8acb\u555f\u7528 Javascript \u4ee5\u958b\u555f\u641c\u5c0b\u529f\u80fd\u3002", "Preparing search...": "\u6e96\u5099\u641c\u5c0b\u4e2d\u2026", "Previous topic": "\u4e0a\u500b\u4e3b\u984c", "Quick search": "\u5feb\u901f\u641c\u5c0b", "Search": "\u641c\u5c0b", "Search Page": "\u641c\u5c0b\u9801\u9762", "Search Results": "\u641c\u5c0b\u7d50\u679c", "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", "Show Source": "\u986f\u793a\u539f\u59cb\u78bc", "Table of Contents": "", "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", "next chapter": "\u4e0b\u4e00\u7ae0", "previous chapter": "\u4e0a\u4e00\u7ae0", "quick access to all modules": "\u5feb\u901f\u524d\u5f80\u6240\u6709\u7684\u6a21\u7d44", "search": "\u641c\u5c0b", "search this documentation": "\u641c\u5c0b\u672c\u8aaa\u660e\u6587\u4ef6", "the documentation for": "\u8aaa\u660e\u6587\u4ef6\u4ecb\u7d39"}, "plural_expr": "0"}); \ No newline at end of file diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 0ae9bc7d9c22261dd52837d06e8a16cccdcb270e..c2791173b2fdbc22e1d53616cf4e01cd3e329961 100644 GIT binary patch delta 14010 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 X=i>6w<<Hghoc`x`d+guc?bd$+D)ttF delta 16229 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 DKy8dy diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 6ddf35143..65cc2f8dc 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -1,5 +1,5 @@ # Translations template for Sphinx. -# Copyright (C) 2018 ORGANIZATION +# Copyright (C) 2019 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # # Translators: @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2018-08-21 01:14+0900\n" -"PO-Revision-Date: 2018-08-20 16:15+0000\n" +"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"PO-Revision-Date: 2019-03-14 16:36+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -24,21 +24,21 @@ msgstr "" "Language: zh_TW\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: sphinx/application.py:152 +#: sphinx/application.py:153 #, python-format msgid "config directory doesn't contain a conf.py file (%s)" msgstr "" -#: sphinx/application.py:156 +#: sphinx/application.py:157 #, python-format msgid "Cannot find source directory (%s)" msgstr "" -#: sphinx/application.py:160 +#: sphinx/application.py:161 msgid "Source directory and destination directory cannot be identical" msgstr "" -#: sphinx/application.py:191 +#: sphinx/application.py:192 #, python-format msgid "Running Sphinx v%s" msgstr "" @@ -51,95 +51,83 @@ msgid "" msgstr "本專案需要 Sphinx v%s 版本以上,故無法以現版本編譯。" #: sphinx/application.py:234 -msgid "making output directory..." +msgid "making output directory" msgstr "" -#: sphinx/application.py:244 +#: sphinx/application.py:239 sphinx/registry.py:470 +#, python-format +msgid "while setting up extension %s:" +msgstr "" + +#: sphinx/application.py:245 msgid "" "'setup' as currently defined in conf.py isn't a Python callable. Please " "modify its definition to make it a callable function. This is needed for " "conf.py to behave as a Sphinx extension." msgstr "目前在 conf.py 裡指定的 'setup' 並非一個 Python 的可呼叫物件。請修改它並使它成為一個可呼叫的函式。若要使 conf.py 以 Sphinx 擴充套件的方式運作,這個修改是必須的。" -#: sphinx/application.py:256 -#, python-format -msgid "primary_domain %r not found, ignored." -msgstr "找不到 primary_domain:%r,略過。" - -#: sphinx/application.py:271 +#: sphinx/application.py:269 #, python-format msgid "loading translations [%s]... " msgstr "" -#: sphinx/application.py:287 sphinx/application.py:304 -#: sphinx/builders/__init__.py:380 sphinx/builders/__init__.py:387 -#: sphinx/builders/__init__.py:588 sphinx/builders/applehelp.py:134 -#: sphinx/builders/applehelp.py:178 sphinx/builders/applehelp.py:188 -#: sphinx/builders/applehelp.py:201 sphinx/builders/applehelp.py:241 -#: sphinx/builders/applehelp.py:274 sphinx/builders/html.py:956 -#: sphinx/builders/html.py:1220 sphinx/builders/html.py:1238 -#: sphinx/builders/html.py:1412 sphinx/builders/html.py:1422 -#: sphinx/builders/latex/__init__.py:339 sphinx/builders/texinfo.py:188 +#: sphinx/application.py:285 sphinx/builders/html.py:852 +#: sphinx/builders/html.py:870 sphinx/builders/html.py:1133 +#: sphinx/builders/html.py:1151 sphinx/util/__init__.py:702 msgid "done" msgstr "完成" -#: sphinx/application.py:289 +#: sphinx/application.py:287 msgid "not available for built-in messages" msgstr "" -#: sphinx/application.py:300 -msgid "loading pickled environment... " -msgstr "讀入 pickle 化環境…" +#: sphinx/application.py:298 +msgid "loading pickled environment" +msgstr "" -#: sphinx/application.py:306 +#: sphinx/application.py:303 #, python-format msgid "failed: %s" msgstr "失敗:%s" -#: sphinx/application.py:316 +#: sphinx/application.py:313 msgid "No builder selected, using default: html" msgstr "沒有指定 builder,使用預設:html" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "succeeded" msgstr "成功" -#: sphinx/application.py:347 +#: sphinx/application.py:344 msgid "finished with problems" msgstr "完成問題" -#: sphinx/application.py:349 +#: sphinx/application.py:346 #, python-format msgid "build %s, %s warning." msgstr "" -#: sphinx/application.py:353 +#: sphinx/application.py:350 #, python-format msgid "build %s." msgstr "" -#: sphinx/application.py:626 +#: sphinx/application.py:557 #, python-format -msgid "" -"while setting up extension %s: node class %r is already registered, its " -"visitors will be overridden" +msgid "node class %r is already registered, its visitors will be overridden" msgstr "" -#: sphinx/application.py:724 +#: sphinx/application.py:654 #, python-format -msgid "" -"while setting up extension %s: directive %r is already registered, it will " -"be overridden" +msgid "directive %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:749 sphinx/application.py:770 +#: sphinx/application.py:677 sphinx/application.py:696 #, python-format -msgid "" -"while setting up extension %s: role %r is already registered, it will be " -"overridden" +msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1268 +#: sphinx/application.py:1182 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -147,7 +135,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1274 +#: sphinx/application.py:1188 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,60 +143,54 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1285 +#: sphinx/application.py:1199 #, python-format msgid "doing serial %s" msgstr "" -#: sphinx/config.py:212 +#: sphinx/config.py:220 #, python-format msgid "" "cannot override dictionary config setting %r, ignoring (use %r to set " "individual elements)" msgstr "" -#: sphinx/config.py:221 +#: sphinx/config.py:229 #, python-format msgid "invalid number %r for config value %r, ignoring" msgstr "" -#: sphinx/config.py:226 +#: sphinx/config.py:234 #, python-format msgid "cannot override config setting %r with unsupported type, ignoring" msgstr "" -#: sphinx/config.py:256 +#: sphinx/config.py:264 #, python-format msgid "unknown config value %r in override, ignoring" msgstr "" -#: sphinx/config.py:274 +#: sphinx/config.py:282 #, python-format msgid "No such config value: %s" msgstr "" -#: sphinx/config.py:304 +#: sphinx/config.py:312 #, python-format msgid "Config value %r already present" msgstr "" -#: sphinx/config.py:355 +#: sphinx/config.py:363 #, python-format -msgid "There is a syntax error in your configuration file: %s" +msgid "There is a syntax error in your configuration file: %s\n" msgstr "" -#: sphinx/config.py:357 -msgid "" -"\n" -"Did you change the syntax from 2.x to 3.x?" -msgstr "" - -#: sphinx/config.py:360 +#: sphinx/config.py:366 msgid "" "The configuration file (or one of the modules it imports) called sys.exit()" msgstr "" -#: sphinx/config.py:364 +#: sphinx/config.py:370 #, python-format msgid "" "There is a programmable error in your configuration file:\n" @@ -216,833 +198,722 @@ msgid "" "%s" msgstr "" -#: sphinx/config.py:391 +#: sphinx/config.py:397 #, python-format msgid "" -"The config value `source_suffix' expected to a string, list of strings or " +"The config value `source_suffix' expects a string, list of strings, or " "dictionary. But `%r' is given." msgstr "" -#: sphinx/config.py:399 +#: sphinx/config.py:405 #, python-format msgid "Section %s" msgstr "段落 %s" -#: sphinx/config.py:400 +#: sphinx/config.py:406 #, python-format msgid "Fig. %s" msgstr "圖 %s" -#: sphinx/config.py:401 +#: sphinx/config.py:407 #, python-format msgid "Table %s" msgstr "表 %s" -#: sphinx/config.py:402 +#: sphinx/config.py:408 #, python-format msgid "Listing %s" msgstr "程式 %s" -#: sphinx/config.py:441 +#: sphinx/config.py:447 msgid "" "The config value `{name}` has to be a one of {candidates}, but `{current}` " "is given." msgstr "" -#: sphinx/config.py:459 +#: sphinx/config.py:465 msgid "" -"The config value `{name}' has type `{current.__name__}', expected to " +"The config value `{name}' has type `{current.__name__}'; expected " "{permitted}." msgstr "" -#: sphinx/config.py:465 +#: sphinx/config.py:478 msgid "" "The config value `{name}' has type `{current.__name__}', defaults to " "`{default.__name__}'." msgstr "" -#: sphinx/config.py:481 +#: sphinx/config.py:497 #, python-format msgid "" "the config value %r is set to a string with non-ASCII characters; this can " "lead to Unicode errors occurring. Please use Unicode strings, e.g. %r." msgstr "" -#: sphinx/events.py:58 +#: sphinx/config.py:506 +#, python-format +msgid "primary_domain %r not found, ignored." +msgstr "找不到 primary_domain:%r,略過。" + +#: sphinx/config.py:518 +msgid "" +"Since v2.0, Sphinx uses \"index\" as master_doc by default. Please add " +"\"master_doc = 'contents'\" to your conf.py." +msgstr "" + +#: sphinx/events.py:54 #, python-format msgid "Event %r already present" msgstr "" -#: sphinx/events.py:64 +#: sphinx/events.py:60 #, python-format msgid "Unknown event name: %s" msgstr "" -#: sphinx/extension.py:55 +#: sphinx/extension.py:52 #, python-format msgid "" "The %s extension is required by needs_extensions settings, but it is not " "loaded." msgstr "" -#: sphinx/extension.py:60 +#: sphinx/extension.py:57 #, 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:144 +#: sphinx/highlighting.py:142 #, python-format msgid "Pygments lexer name %r is not known" msgstr "" -#: sphinx/highlighting.py:165 +#: sphinx/highlighting.py:163 #, python-format msgid "Could not lex literal_block as \"%s\". Highlighting skipped." msgstr "" -#: sphinx/io.py:209 -#, python-format -msgid "undecodable source characters, replacing with \"?\": %r" +#: sphinx/project.py:59 +msgid "document not readable. Ignored." msgstr "" -#: sphinx/registry.py:132 +#: sphinx/registry.py:131 #, python-format msgid "Builder class %s has no \"name\" attribute" msgstr "" -#: sphinx/registry.py:134 +#: sphinx/registry.py:133 #, python-format msgid "Builder %r already exists (in module %s)" msgstr "" -#: sphinx/registry.py:148 +#: sphinx/registry.py:147 #, python-format msgid "Builder name %s not registered or available through entry point" msgstr "" -#: sphinx/registry.py:156 +#: sphinx/registry.py:155 #, python-format msgid "Builder name %s not registered" msgstr "" -#: sphinx/registry.py:164 +#: sphinx/registry.py:163 #, python-format msgid "domain %s already registered" msgstr "" -#: sphinx/registry.py:198 sphinx/registry.py:213 sphinx/registry.py:224 +#: sphinx/registry.py:197 sphinx/registry.py:212 sphinx/registry.py:223 #, python-format msgid "domain %s not yet registered" msgstr "" -#: sphinx/registry.py:202 +#: sphinx/registry.py:201 #, python-format -msgid "The %r directive is already registered to %d domain" +msgid "The %r directive is already registered to domain %s" msgstr "" -#: sphinx/registry.py:216 +#: sphinx/registry.py:215 #, python-format -msgid "The %r role is already registered to %d domain" +msgid "The %r role is already registered to domain %s" msgstr "" -#: sphinx/registry.py:227 +#: sphinx/registry.py:226 #, python-format -msgid "The %r index is already registered to %d domain" +msgid "The %r index is already registered to domain %s" msgstr "" -#: sphinx/registry.py:251 +#: sphinx/registry.py:250 #, python-format msgid "The %r object_type is already registered" msgstr "" -#: sphinx/registry.py:271 +#: sphinx/registry.py:270 #, python-format msgid "The %r crossref_type is already registered" msgstr "" -#: sphinx/registry.py:279 +#: sphinx/registry.py:278 #, python-format msgid "source_suffix %r is already registered" msgstr "" -#: sphinx/registry.py:309 +#: sphinx/registry.py:308 #, python-format msgid "source_parser for %r is already registered" msgstr "" -#: sphinx/registry.py:325 +#: sphinx/registry.py:324 #, python-format msgid "Source parser for %s not registered" msgstr "" -#: sphinx/registry.py:343 +#: sphinx/registry.py:344 #, python-format msgid "source_input for %r is already registered" msgstr "" -#: sphinx/registry.py:356 +#: sphinx/registry.py:363 #, python-format -msgid "source_input for %s not registered" +msgid "Translator for %r already exists" msgstr "" -#: sphinx/registry.py:362 -#, python-format -msgid "Translatoro for %r already exists" -msgstr "" - -#: sphinx/registry.py:374 +#: sphinx/registry.py:375 #, python-format msgid "kwargs for add_node() must be a (visit, depart) function tuple: %r=%r" msgstr "" -#: sphinx/registry.py:444 +#: sphinx/registry.py:445 #, python-format msgid "enumerable_node %r already registered" msgstr "" -#: sphinx/registry.py:452 +#: sphinx/registry.py:453 #, python-format msgid "math renderer %s is already registred" msgstr "" -#: sphinx/registry.py:463 +#: sphinx/registry.py:464 #, python-format msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." msgstr "" -#: sphinx/registry.py:474 +#: sphinx/registry.py:475 msgid "Original exception:\n" msgstr "" -#: sphinx/registry.py:475 +#: sphinx/registry.py:476 #, python-format msgid "Could not import extension %s" msgstr "無法引入擴充套件 %s" -#: sphinx/registry.py:478 +#: sphinx/registry.py:479 #, python-format msgid "" "extension %r has no setup() function; is it really a Sphinx extension " "module?" msgstr "" -#: sphinx/registry.py:487 +#: sphinx/registry.py:488 #, 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:495 +#: sphinx/registry.py:496 #, 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:202 +#: sphinx/roles.py:221 sphinx/roles.py:272 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" -#: sphinx/theming.py:83 +#: sphinx/theming.py:79 #, python-format msgid "theme %r doesn't have \"theme\" setting" msgstr "" -#: sphinx/theming.py:85 +#: sphinx/theming.py:81 #, python-format msgid "theme %r doesn't have \"inherit\" setting" msgstr "" -#: sphinx/theming.py:91 +#: sphinx/theming.py:87 #, python-format msgid "no theme named %r found, inherited by %r" msgstr "" -#: sphinx/theming.py:116 +#: sphinx/theming.py:112 #, python-format msgid "setting %s.%s occurs in none of the searched theme configs" msgstr "" -#: sphinx/theming.py:136 +#: sphinx/theming.py:132 #, python-format msgid "unsupported theme option %r given" msgstr "" -#: sphinx/theming.py:238 -#, python-format -msgid "Theme extension %r does not respond correctly." -msgstr "" - -#: sphinx/theming.py:265 +#: sphinx/theming.py:242 #, python-format msgid "file %r on theme path is not a valid zipfile or contains no theme" msgstr "" -#: sphinx/theming.py:281 +#: sphinx/theming.py:258 msgid "" "sphinx_rtd_theme is no longer a hard dependency since version 1.4.0. Please " "install it manually.(pip install sphinx_rtd_theme)" msgstr "" -#: sphinx/theming.py:285 +#: sphinx/theming.py:262 #, python-format msgid "no theme named %r found (missing theme.conf?)" msgstr "" -#: sphinx/builders/__init__.py:226 +#: sphinx/builders/__init__.py:205 #, python-format msgid "a suitable image for %s builder not found: %s (%s)" msgstr "" -#: sphinx/builders/__init__.py:230 +#: sphinx/builders/__init__.py:209 #, python-format msgid "a suitable image for %s builder not found: %s" msgstr "" -#: sphinx/builders/__init__.py:252 +#: sphinx/builders/__init__.py:231 msgid "building [mo]: " msgstr "" -#: sphinx/builders/__init__.py:253 sphinx/builders/__init__.py:601 -#: sphinx/builders/__init__.py:629 +#: sphinx/builders/__init__.py:232 sphinx/builders/__init__.py:574 +#: sphinx/builders/__init__.py:602 msgid "writing output... " msgstr "" -#: sphinx/builders/__init__.py:267 +#: sphinx/builders/__init__.py:245 #, python-format msgid "all of %d po files" msgstr "" -#: sphinx/builders/__init__.py:289 +#: sphinx/builders/__init__.py:266 #, python-format msgid "targets for %d po files that are specified" msgstr "" -#: sphinx/builders/__init__.py:300 +#: sphinx/builders/__init__.py:276 #, python-format msgid "targets for %d po files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:308 +#: sphinx/builders/__init__.py:284 msgid "all source files" msgstr "" -#: sphinx/builders/__init__.py:322 +#: sphinx/builders/__init__.py:298 #, python-format msgid "" "file %r given on command line is not under the source directory, ignoring" msgstr "" -#: sphinx/builders/__init__.py:327 +#: sphinx/builders/__init__.py:303 #, python-format msgid "file %r given on command line does not exist, ignoring" msgstr "" -#: sphinx/builders/__init__.py:338 +#: sphinx/builders/__init__.py:314 #, python-format msgid "%d source files given on command line" msgstr "" -#: sphinx/builders/__init__.py:349 +#: sphinx/builders/__init__.py:325 #, python-format msgid "targets for %d source files that are out of date" msgstr "" -#: sphinx/builders/__init__.py:359 +#: sphinx/builders/__init__.py:335 #, python-format msgid "building [%s]" msgstr "" -#: sphinx/builders/__init__.py:366 +#: sphinx/builders/__init__.py:342 msgid "looking for now-outdated files... " msgstr "" -#: sphinx/builders/__init__.py:371 +#: sphinx/builders/__init__.py:347 #, python-format msgid "%d found" msgstr "" -#: sphinx/builders/__init__.py:373 +#: sphinx/builders/__init__.py:349 msgid "none found" msgstr "" -#: sphinx/builders/__init__.py:377 -msgid "pickling environment... " +#: sphinx/builders/__init__.py:354 +msgid "pickling environment" msgstr "" -#: sphinx/builders/__init__.py:385 -msgid "checking consistency... " +#: sphinx/builders/__init__.py:360 +msgid "checking consistency" msgstr "" -#: sphinx/builders/__init__.py:390 +#: sphinx/builders/__init__.py:364 msgid "no targets are out of date." msgstr "" -#: sphinx/builders/__init__.py:577 +#: sphinx/builders/__init__.py:404 +msgid "updating environment: " +msgstr "" + +#: sphinx/builders/__init__.py:423 +#, python-format +msgid "%s added, %s changed, %s removed" +msgstr "" + +#: sphinx/builders/__init__.py:462 sphinx/builders/__init__.py:492 +msgid "reading sources... " +msgstr "" + +#: sphinx/builders/__init__.py:497 sphinx/builders/__init__.py:612 +msgid "waiting for workers..." +msgstr "" + +#: sphinx/builders/__init__.py:551 #, python-format msgid "docnames to write: %s" msgstr "" -#: sphinx/builders/__init__.py:586 sphinx/builders/html.py:1410 -msgid "preparing documents... " +#: sphinx/builders/__init__.py:560 sphinx/builders/singlehtml.py:166 +msgid "preparing documents" msgstr "" -#: sphinx/builders/__init__.py:639 -msgid "waiting for workers..." +#: sphinx/builders/_epub_base.py:219 +#, python-format +msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 +#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +msgid "copying images... " +msgstr "" + +#: sphinx/builders/_epub_base.py:422 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:421 sphinx/builders/html.py:853 -#: sphinx/builders/latex/__init__.py:353 sphinx/builders/texinfo.py:260 +#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:437 +#: sphinx/builders/_epub_base.py:445 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:448 -msgid "PIL not found - copying image files" +#: sphinx/builders/_epub_base.py:456 +msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:478 sphinx/builders/_epub_base.py:485 -#: sphinx/builders/_epub_base.py:515 sphinx/builders/_epub_base.py:694 -#: sphinx/builders/_epub_base.py:719 sphinx/builders/epub3.py:211 +#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 +#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 +#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:541 +#: sphinx/builders/_epub_base.py:566 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" -#: sphinx/builders/applehelp.py:64 -msgid "Help indexer failed" -msgstr "" - -#: sphinx/builders/applehelp.py:68 -msgid "Code signing failed" -msgstr "" - -#: sphinx/builders/applehelp.py:77 -#, python-format -msgid "" -"The help book is in %(outdir)s.\n" -"Note that won't be able to view it unless you put it in ~/Library/Documentation/Help or install it in your application bundle." -msgstr "" - -#: sphinx/builders/applehelp.py:104 -msgid "You must set applehelp_bundle_id before building Apple Help output" -msgstr "" - -#: sphinx/builders/applehelp.py:128 -msgid "copying localized files... " -msgstr "" - -#: sphinx/builders/applehelp.py:175 -msgid "writing Info.plist... " -msgstr "" - -#: sphinx/builders/applehelp.py:182 -msgid "copying icon... " -msgstr "" - -#: sphinx/builders/applehelp.py:190 -#, python-format -msgid "cannot copy icon file %r: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:195 -msgid "building access page..." -msgstr "" - -#: sphinx/builders/applehelp.py:204 -msgid "generating help index... " -msgstr "" - -#: sphinx/builders/applehelp.py:226 sphinx/builders/applehelp.py:260 -msgid "skipping" -msgstr "" - -#: sphinx/builders/applehelp.py:228 -#, python-format -msgid "" -"you will need to index this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/applehelp.py:243 sphinx/builders/applehelp.py:276 -#, python-format -msgid "Command not found: %s" -msgstr "" - -#: sphinx/builders/applehelp.py:247 -msgid "signing help book... " -msgstr "" - -#: sphinx/builders/applehelp.py:261 -#, python-format -msgid "" -"you will need to sign this help book with:\n" -" %s" -msgstr "" - -#: sphinx/builders/changes.py:43 +#: sphinx/builders/changes.py:39 #, python-format msgid "The overview file is in %(outdir)s." msgstr "" -#: sphinx/builders/changes.py:70 +#: sphinx/builders/changes.py:68 #, python-format msgid "no changes in version %s." msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:70 +msgid "writing summary file..." +msgstr "" + +#: sphinx/builders/changes.py:87 msgid "Builtins" msgstr "內建" -#: sphinx/builders/changes.py:91 +#: sphinx/builders/changes.py:89 msgid "Module level" msgstr "模組層次" -#: sphinx/builders/changes.py:136 +#: sphinx/builders/changes.py:134 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:143 +#: sphinx/builders/changes.py:141 #, python-format msgid "could not read %r for changelog creation" msgstr "" -#: sphinx/builders/devhelp.py:47 -#, python-format -msgid "" -"To view the help file:\n" -"$ mkdir -p $HOME/.local/share/devhelp/books\n" -"$ ln -s $PWD/%(outdir)s $HOME/.local/share/devhelp/books/%(project)s\n" -"$ devhelp" -msgstr "" - -#: sphinx/builders/devhelp.py:73 -msgid "dumping devhelp index..." -msgstr "" - -#: sphinx/builders/dummy.py:25 +#: sphinx/builders/dummy.py:24 msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:70 +#: sphinx/builders/epub3.py:69 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:95 +#: sphinx/builders/epub3.py:212 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:99 +#: sphinx/builders/epub3.py:216 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:102 +#: sphinx/builders/epub3.py:219 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:106 +#: sphinx/builders/epub3.py:223 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:109 +#: sphinx/builders/epub3.py:226 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:112 +#: sphinx/builders/epub3.py:229 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:115 +#: sphinx/builders/epub3.py:232 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:118 +#: sphinx/builders/epub3.py:235 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:122 +#: sphinx/builders/epub3.py:239 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:125 +#: sphinx/builders/epub3.py:242 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:244 sphinx/builders/html.py:1599 +#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:219 +#: sphinx/builders/gettext.py:215 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:243 +#: sphinx/builders/gettext.py:239 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:240 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:248 +#: sphinx/builders/gettext.py:244 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:272 +#: sphinx/builders/gettext.py:271 msgid "writing message catalogs... " msgstr "" -#: sphinx/builders/html.py:240 +#: sphinx/builders/html.py:182 #, python-format msgid "build info file is broken: %r" msgstr "" -#: sphinx/builders/html.py:279 +#: sphinx/builders/html.py:217 #, python-format msgid "The HTML pages are in %(outdir)s." msgstr "" -#: sphinx/builders/html.py:472 +#: sphinx/builders/html.py:399 #, python-format msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:572 sphinx/transforms/__init__.py:121 -#: sphinx/writers/latex.py:537 sphinx/writers/manpage.py:110 -#: sphinx/writers/texinfo.py:240 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 +#: sphinx/writers/texinfo.py:243 #, python-format msgid "%b %d, %Y" msgstr "%Y 年 %m 月 %d 日" -#: sphinx/builders/html.py:584 +#: sphinx/builders/html.py:500 msgid "html_use_opensearch config value must now be a string" msgstr "" -#: sphinx/builders/html.py:590 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:506 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "總索引" -#: sphinx/builders/html.py:590 +#: sphinx/builders/html.py:506 msgid "index" msgstr "索引" -#: sphinx/builders/html.py:654 +#: sphinx/builders/html.py:570 msgid "next" msgstr "下一頁" -#: sphinx/builders/html.py:663 +#: sphinx/builders/html.py:579 msgid "previous" msgstr "上一頁" -#: sphinx/builders/html.py:761 +#: sphinx/builders/html.py:677 msgid "generating indices..." msgstr "" -#: sphinx/builders/html.py:779 +#: sphinx/builders/html.py:695 msgid "writing additional pages..." msgstr "" -#: sphinx/builders/html.py:845 sphinx/builders/latex/__init__.py:345 -#: sphinx/builders/texinfo.py:252 -msgid "copying images... " -msgstr "" - -#: sphinx/builders/html.py:864 +#: sphinx/builders/html.py:780 msgid "copying downloadable files... " msgstr "" -#: sphinx/builders/html.py:872 +#: sphinx/builders/html.py:788 #, python-format msgid "cannot copy downloadable file %r: %s" msgstr "" -#: sphinx/builders/html.py:879 +#: sphinx/builders/html.py:795 msgid "copying static files... " msgstr "" -#: sphinx/builders/html.py:914 +#: sphinx/builders/html.py:830 #, python-format msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:923 sphinx/builders/latex/__init__.py:336 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 #, python-format msgid "logo file %r does not exist" msgstr "" -#: sphinx/builders/html.py:931 +#: sphinx/builders/html.py:847 #, python-format msgid "favicon file %r does not exist" msgstr "" -#: sphinx/builders/html.py:940 +#: sphinx/builders/html.py:854 #, python-format msgid "cannot copy static file %r" msgstr "" -#: sphinx/builders/html.py:946 +#: sphinx/builders/html.py:860 msgid "copying extra files... " msgstr "" -#: sphinx/builders/html.py:952 +#: sphinx/builders/html.py:866 #, python-format msgid "html_extra_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:958 +#: sphinx/builders/html.py:872 #, python-format msgid "cannot copy extra file %r" msgstr "" -#: sphinx/builders/html.py:966 +#: sphinx/builders/html.py:880 #, python-format msgid "Failed to write build info file: %r" msgstr "" -#: sphinx/builders/html.py:1013 +#: sphinx/builders/html.py:927 msgid "" "search index couldn't be loaded, but not all documents will be built: the " "index will be incomplete." msgstr "" -#: sphinx/builders/html.py:1076 +#: sphinx/builders/html.py:996 #, python-format msgid "page %s matches two patterns in html_sidebars: %r and %r" msgstr "" -#: sphinx/builders/html.py:1182 +#: sphinx/builders/html.py:1094 #, 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.py:1187 +#: sphinx/builders/html.py:1099 #, python-format msgid "" "An error happened in rendering the page %s.\n" "Reason: %r" msgstr "" -#: sphinx/builders/html.py:1198 sphinx/builders/texinfo.py:245 -#: sphinx/builders/text.py:88 sphinx/builders/xml.py:101 +#: sphinx/builders/html.py:1111 sphinx/builders/text.py:85 +#: sphinx/builders/xml.py:99 #, python-format msgid "error writing file %s: %s" msgstr "" -#: sphinx/builders/html.py:1218 +#: sphinx/builders/html.py:1131 msgid "dumping object inventory... " msgstr "" -#: sphinx/builders/html.py:1225 +#: sphinx/builders/html.py:1138 #, python-format msgid "dumping search index in %s ... " msgstr "" -#: sphinx/builders/html.py:1280 -#, python-format -msgid "The HTML page is in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1414 -msgid "assembling single document... " -msgstr "" - -#: sphinx/builders/html.py:1419 sphinx/builders/latex/__init__.py:213 -#: sphinx/builders/manpage.py:72 sphinx/builders/texinfo.py:171 -msgid "writing... " -msgstr "" - -#: sphinx/builders/html.py:1427 -msgid "writing additional files..." -msgstr "" - -#: sphinx/builders/html.py:1551 -#, python-format -msgid "You can now process the pickle files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1572 -#, python-format -msgid "You can now process the JSON files in %(outdir)s." -msgstr "" - -#: sphinx/builders/html.py:1617 +#: sphinx/builders/html.py:1184 #, python-format msgid "invalid js_file: %r, ignored" msgstr "" -#: sphinx/builders/html.py:1661 +#: sphinx/builders/html.py:1228 msgid "Many math_renderers are registered. But no math_renderer is selected." msgstr "" -#: sphinx/builders/html.py:1664 +#: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." msgstr "" -#: sphinx/builders/html.py:1681 +#: sphinx/builders/html.py:1264 #, python-format msgid "%s %s documentation" msgstr "%s %s 說明文件" -#: sphinx/builders/htmlhelp.py:178 -#, python-format -msgid "You can now run HTML Help Workshop with the .htp file in %(outdir)s." -msgstr "" - -#: sphinx/builders/htmlhelp.py:232 -msgid "dumping stopword list..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:237 sphinx/builders/qthelp.py:99 -msgid "writing project file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:260 -msgid "writing TOC file..." -msgstr "" - -#: sphinx/builders/htmlhelp.py:302 -msgid "writing index file..." -msgstr "" - -#: sphinx/builders/linkcheck.py:95 +#: sphinx/builders/linkcheck.py:80 #, python-format msgid "Look for any errors in the above output or in %(outdir)s/output.txt" msgstr "" -#: sphinx/builders/linkcheck.py:159 +#: sphinx/builders/linkcheck.py:144 #, python-format msgid "Anchor '%s' not found" msgstr "" -#: sphinx/builders/linkcheck.py:257 +#: sphinx/builders/linkcheck.py:242 #, python-format msgid "broken link: %s (%s)" msgstr "" @@ -1056,188 +927,210 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/qthelp.py:59 +#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 +msgid "writing" +msgstr "" + +#: sphinx/builders/manpage.py:76 #, python-format -msgid "" -"You can now run \"qcollectiongenerator\" with the .qhcp project file in %(outdir)s, like this:\n" -"$ qcollectiongenerator %(outdir)s/%(project)s.qhcp\n" -"To view the help file:\n" -"$ assistant -collectionFile %(outdir)s/%(project)s.qhc" +msgid "\"man_pages\" config value references unknown document %s" msgstr "" -#: sphinx/builders/qthelp.py:161 -msgid "writing collection project file..." +#: sphinx/builders/singlehtml.py:37 +#, python-format +msgid "The HTML page is in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:101 +#: sphinx/builders/singlehtml.py:169 +msgid "assembling single document" +msgstr "" + +#: sphinx/builders/singlehtml.py:188 +msgid "writing additional files" +msgstr "" + +#: sphinx/builders/texinfo.py:50 #, python-format msgid "The Texinfo files are in %(outdir)s." msgstr "" -#: sphinx/builders/texinfo.py:103 +#: sphinx/builders/texinfo.py:52 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:136 +#: sphinx/builders/texinfo.py:85 msgid "no \"texinfo_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/texinfo.py:144 +#: sphinx/builders/texinfo.py:93 #, python-format msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:198 sphinx/builders/texinfo.py:167 +#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 #, python-format -msgid "processing %s..." +msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:260 sphinx/builders/texinfo.py:215 +#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/texinfo.py:224 +#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 msgid " (in " msgstr "(於" -#: sphinx/builders/texinfo.py:237 -msgid "copying Texinfo support files... " +#: sphinx/builders/texinfo.py:204 +msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:246 -msgid " done" +#: sphinx/builders/texinfo.py:208 +#, python-format +msgid "error writing file Makefile: %s" msgstr "" -#: sphinx/builders/text.py:35 +#: sphinx/builders/text.py:33 #, python-format msgid "The text files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:39 +#: sphinx/builders/xml.py:38 #, python-format msgid "The XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/xml.py:114 +#: sphinx/builders/xml.py:112 #, python-format msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:117 +#: sphinx/builders/latex/__init__.py:121 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:119 +#: sphinx/builders/latex/__init__.py:123 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:154 +#: sphinx/builders/latex/__init__.py:163 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:162 +#: sphinx/builders/latex/__init__.py:171 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:312 +#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/templates/latex/latex.tex_t:79 +#: 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:30 sphinx/themes/basic/genindex.html:33 +#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 +#: sphinx/writers/texinfo.py:522 +msgid "Index" +msgstr "索引" + +#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +msgid "Release" +msgstr "發佈" + +#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#, python-format +msgid "no Babel option known for language %r" +msgstr "" + +#: sphinx/builders/latex/__init__.py:361 +msgid "copying TeX support files" +msgstr "" + +#: sphinx/builders/latex/__init__.py:382 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:327 -msgid "copying additional files..." +#: sphinx/builders/latex/__init__.py:402 +msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:364 -#, python-format -msgid "" -"Invalid latex_documents.title found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:372 -#, python-format -msgid "" -"Invalid latex_documents.author found (might contain non-ASCII chars. Please " -"use u\"...\" notation instead): %r" -msgstr "" - -#: sphinx/builders/latex/__init__.py:378 +#: sphinx/builders/latex/__init__.py:445 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" -#: sphinx/cmd/build.py:42 +#: sphinx/cmd/build.py:38 msgid "Exception occurred while building, starting debugger:" msgstr "" -#: sphinx/cmd/build.py:52 +#: sphinx/cmd/build.py:48 msgid "interrupted!" msgstr "" -#: sphinx/cmd/build.py:54 +#: sphinx/cmd/build.py:50 msgid "reST markup error:" msgstr "" -#: sphinx/cmd/build.py:60 +#: sphinx/cmd/build.py:56 msgid "Encoding error:" msgstr "" -#: sphinx/cmd/build.py:63 sphinx/cmd/build.py:78 +#: 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:67 +#: sphinx/cmd/build.py:63 msgid "Recursion error:" msgstr "" -#: sphinx/cmd/build.py:70 +#: 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:73 +#: sphinx/cmd/build.py:69 msgid " import sys; sys.setrecursionlimit(1500)" msgstr "" -#: sphinx/cmd/build.py:75 +#: sphinx/cmd/build.py:71 msgid "Exception occurred:" msgstr "" -#: sphinx/cmd/build.py:81 +#: 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:84 +#: sphinx/cmd/build.py:80 msgid "" "A bug report can be filed in the tracker at <https://github.com/sphinx-" "doc/sphinx/issues>. Thanks!" msgstr "" -#: sphinx/cmd/build.py:101 +#: sphinx/cmd/build.py:97 msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:110 sphinx/cmd/quickstart.py:528 -#: sphinx/ext/apidoc.py:303 sphinx/ext/autosummary/generate.py:369 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" -#: sphinx/cmd/build.py:111 +#: sphinx/cmd/build.py:107 msgid "" "\n" "Generate documentation from source files.\n" @@ -1256,253 +1149,247 @@ msgid "" "files can be built by specifying individual filenames.\n" msgstr "" -#: sphinx/cmd/build.py:132 +#: sphinx/cmd/build.py:128 msgid "path to documentation source files" msgstr "" -#: sphinx/cmd/build.py:134 +#: sphinx/cmd/build.py:130 msgid "path to output directory" msgstr "" -#: sphinx/cmd/build.py:136 +#: sphinx/cmd/build.py:132 msgid "a list of specific files to rebuild. Ignored if -a is specified" msgstr "" -#: sphinx/cmd/build.py:139 +#: sphinx/cmd/build.py:135 msgid "general options" msgstr "" -#: sphinx/cmd/build.py:142 +#: sphinx/cmd/build.py:138 msgid "builder to use (default: html)" msgstr "" -#: sphinx/cmd/build.py:144 +#: sphinx/cmd/build.py:140 msgid "write all files (default: only write new and changed files)" msgstr "" -#: sphinx/cmd/build.py:147 +#: sphinx/cmd/build.py:143 msgid "don't use a saved environment, always read all files" msgstr "" -#: sphinx/cmd/build.py:150 +#: sphinx/cmd/build.py:146 msgid "" "path for the cached environment and doctree files (default: " "OUTPUTDIR/.doctrees)" msgstr "" -#: sphinx/cmd/build.py:153 +#: sphinx/cmd/build.py:149 msgid "" "build in parallel with N processes where possible (special value \"auto\" " "will set N to cpu-count)" msgstr "" -#: sphinx/cmd/build.py:157 +#: sphinx/cmd/build.py:153 msgid "" "path where configuration file (conf.py) is located (default: same as " "SOURCEDIR)" msgstr "" -#: sphinx/cmd/build.py:160 +#: sphinx/cmd/build.py:156 msgid "use no config file at all, only -D options" msgstr "" -#: sphinx/cmd/build.py:163 +#: sphinx/cmd/build.py:159 msgid "override a setting in configuration file" msgstr "" -#: sphinx/cmd/build.py:166 +#: sphinx/cmd/build.py:162 msgid "pass a value into HTML templates" msgstr "" -#: sphinx/cmd/build.py:169 +#: sphinx/cmd/build.py:165 msgid "define tag: include \"only\" blocks with TAG" msgstr "" -#: sphinx/cmd/build.py:171 +#: sphinx/cmd/build.py:167 msgid "nit-picky mode, warn about all missing references" msgstr "" -#: sphinx/cmd/build.py:174 +#: sphinx/cmd/build.py:170 msgid "console output options" msgstr "" -#: sphinx/cmd/build.py:176 +#: sphinx/cmd/build.py:172 msgid "increase verbosity (can be repeated)" msgstr "" -#: sphinx/cmd/build.py:178 +#: sphinx/cmd/build.py:174 msgid "no output on stdout, just warnings on stderr" msgstr "" -#: sphinx/cmd/build.py:180 +#: sphinx/cmd/build.py:176 msgid "no output at all, not even warnings" msgstr "" -#: sphinx/cmd/build.py:183 +#: sphinx/cmd/build.py:179 msgid "do emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:186 +#: sphinx/cmd/build.py:182 msgid "do not emit colored output (default: auto-detect)" msgstr "" -#: sphinx/cmd/build.py:189 +#: sphinx/cmd/build.py:185 msgid "write warnings (and errors) to given file" msgstr "" -#: sphinx/cmd/build.py:191 +#: sphinx/cmd/build.py:187 msgid "turn warnings into errors" msgstr "" -#: sphinx/cmd/build.py:193 +#: sphinx/cmd/build.py:189 msgid "With -W, Keep going when getting warnings" msgstr "" -#: sphinx/cmd/build.py:195 +#: sphinx/cmd/build.py:191 msgid "show full traceback on exception" msgstr "" -#: sphinx/cmd/build.py:197 +#: sphinx/cmd/build.py:193 msgid "run Pdb on exception" msgstr "" -#: sphinx/cmd/build.py:231 +#: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" msgstr "" -#: sphinx/cmd/build.py:241 +#: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" msgstr "" -#: sphinx/cmd/build.py:260 +#: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" msgstr "" -#: sphinx/cmd/build.py:270 +#: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/build.py:282 +#: sphinx/cmd/build.py:266 msgid "-A option argument must be in the form name=value" msgstr "" -#: sphinx/cmd/quickstart.py:56 +#: sphinx/cmd/quickstart.py:52 msgid "automatically insert docstrings from modules" msgstr "" -#: sphinx/cmd/quickstart.py:57 +#: sphinx/cmd/quickstart.py:53 msgid "automatically test code snippets in doctest blocks" msgstr "" -#: sphinx/cmd/quickstart.py:58 +#: sphinx/cmd/quickstart.py:54 msgid "link between Sphinx documentation of different projects" msgstr "" -#: sphinx/cmd/quickstart.py:59 +#: sphinx/cmd/quickstart.py:55 msgid "write \"todo\" entries that can be shown or hidden on build" msgstr "" -#: sphinx/cmd/quickstart.py:60 +#: sphinx/cmd/quickstart.py:56 msgid "checks for documentation coverage" msgstr "" -#: sphinx/cmd/quickstart.py:61 +#: sphinx/cmd/quickstart.py:57 msgid "include math, rendered as PNG or SVG images" msgstr "" -#: sphinx/cmd/quickstart.py:62 +#: sphinx/cmd/quickstart.py:58 msgid "include math, rendered in the browser by MathJax" msgstr "" -#: sphinx/cmd/quickstart.py:63 +#: sphinx/cmd/quickstart.py:59 msgid "conditional inclusion of content based on config values" msgstr "" -#: sphinx/cmd/quickstart.py:65 +#: sphinx/cmd/quickstart.py:61 msgid "include links to the source code of documented Python objects" msgstr "" -#: sphinx/cmd/quickstart.py:67 +#: sphinx/cmd/quickstart.py:63 msgid "create .nojekyll file to publish the document on GitHub pages" msgstr "" -#: sphinx/cmd/quickstart.py:111 +#: sphinx/cmd/quickstart.py:107 msgid "Please enter a valid path name." msgstr "" -#: sphinx/cmd/quickstart.py:123 +#: sphinx/cmd/quickstart.py:119 msgid "Please enter some text." msgstr "" -#: sphinx/cmd/quickstart.py:132 +#: sphinx/cmd/quickstart.py:128 #, python-format msgid "Please enter one of %s." msgstr "" -#: sphinx/cmd/quickstart.py:140 +#: sphinx/cmd/quickstart.py:136 msgid "Please enter either 'y' or 'n'." msgstr "" -#: sphinx/cmd/quickstart.py:147 +#: sphinx/cmd/quickstart.py:143 msgid "Please enter a file suffix, e.g. '.rst' or '.txt'." msgstr "" -#: sphinx/cmd/quickstart.py:170 +#: sphinx/cmd/quickstart.py:169 msgid "" "* Note: non-ASCII characters entered and terminal encoding unknown -- " "assuming UTF-8 or Latin-1." msgstr "" -#: sphinx/cmd/quickstart.py:193 -msgid "" -"* Note: non-ASCII default value provided and terminal encoding unknown -- " -"assuming UTF-8 or Latin-1." -msgstr "" - -#: sphinx/cmd/quickstart.py:259 +#: sphinx/cmd/quickstart.py:248 #, python-format msgid "Welcome to the Sphinx %s quickstart utility." msgstr "" -#: sphinx/cmd/quickstart.py:260 +#: sphinx/cmd/quickstart.py:249 msgid "" "\n" "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:265 +#: sphinx/cmd/quickstart.py:254 #, python-format msgid "" "\n" "Selected root path: %s" msgstr "" -#: sphinx/cmd/quickstart.py:268 +#: sphinx/cmd/quickstart.py:257 msgid "" "\n" "Enter the root path for documentation." msgstr "" -#: sphinx/cmd/quickstart.py:270 +#: sphinx/cmd/quickstart.py:259 msgid "Root path for the documentation" msgstr "" -#: sphinx/cmd/quickstart.py:275 +#: sphinx/cmd/quickstart.py:264 msgid "Error: an existing conf.py has been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:277 +#: sphinx/cmd/quickstart.py:266 msgid "sphinx-quickstart will not overwrite existing Sphinx projects." msgstr "" -#: sphinx/cmd/quickstart.py:279 +#: sphinx/cmd/quickstart.py:268 msgid "Please enter a new root path (or just Enter to exit)" msgstr "" -#: sphinx/cmd/quickstart.py:285 +#: sphinx/cmd/quickstart.py:274 msgid "" "\n" "You have two options for placing the build directory for Sphinx output.\n" @@ -1510,11 +1397,11 @@ msgid "" "\"source\" and \"build\" directories within the root path." msgstr "" -#: sphinx/cmd/quickstart.py:289 +#: sphinx/cmd/quickstart.py:278 msgid "Separate source and build directories (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:293 +#: sphinx/cmd/quickstart.py:282 msgid "" "\n" "Inside the root directory, two more directories will be created; \"_templates\"\n" @@ -1522,25 +1409,25 @@ msgid "" "files. You can enter another prefix (such as \".\") to replace the underscore." msgstr "" -#: sphinx/cmd/quickstart.py:297 +#: sphinx/cmd/quickstart.py:286 msgid "Name prefix for templates and static dir" msgstr "" -#: sphinx/cmd/quickstart.py:300 +#: sphinx/cmd/quickstart.py:289 msgid "" "\n" "The project name will occur in several places in the built documentation." msgstr "" -#: sphinx/cmd/quickstart.py:302 +#: sphinx/cmd/quickstart.py:291 msgid "Project name" msgstr "" -#: sphinx/cmd/quickstart.py:304 +#: sphinx/cmd/quickstart.py:293 msgid "Author name(s)" msgstr "" -#: sphinx/cmd/quickstart.py:307 +#: sphinx/cmd/quickstart.py:296 msgid "" "\n" "Sphinx has the notion of a \"version\" and a \"release\" for the\n" @@ -1550,15 +1437,15 @@ msgid "" "just set both to the same value." msgstr "" -#: sphinx/cmd/quickstart.py:313 +#: sphinx/cmd/quickstart.py:302 msgid "Project version" msgstr "" -#: sphinx/cmd/quickstart.py:315 +#: sphinx/cmd/quickstart.py:304 msgid "Project release" msgstr "" -#: sphinx/cmd/quickstart.py:318 +#: sphinx/cmd/quickstart.py:307 msgid "" "\n" "If the documents are to be written in a language other than English,\n" @@ -1569,22 +1456,22 @@ msgid "" "http://sphinx-doc.org/config.html#confval-language." msgstr "" -#: sphinx/cmd/quickstart.py:325 +#: sphinx/cmd/quickstart.py:314 msgid "Project language" msgstr "" -#: sphinx/cmd/quickstart.py:330 +#: sphinx/cmd/quickstart.py:319 msgid "" "\n" "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:333 +#: sphinx/cmd/quickstart.py:322 msgid "Source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:336 +#: sphinx/cmd/quickstart.py:325 msgid "" "\n" "One document is special in that it is considered the top node of the\n" @@ -1593,36 +1480,36 @@ msgid "" "document is a custom template, you can also set this to another filename." msgstr "" -#: sphinx/cmd/quickstart.py:341 +#: sphinx/cmd/quickstart.py:330 msgid "Name of your master document (without suffix)" msgstr "" -#: sphinx/cmd/quickstart.py:347 +#: sphinx/cmd/quickstart.py:336 #, python-format msgid "" "Error: the master file %s has already been found in the selected root path." msgstr "" -#: sphinx/cmd/quickstart.py:349 +#: sphinx/cmd/quickstart.py:338 msgid "sphinx-quickstart will not overwrite the existing file." msgstr "" -#: sphinx/cmd/quickstart.py:351 +#: sphinx/cmd/quickstart.py:340 msgid "" "Please enter a new file name, or rename the existing file and press Enter" msgstr "" -#: sphinx/cmd/quickstart.py:355 +#: sphinx/cmd/quickstart.py:344 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:365 +#: sphinx/cmd/quickstart.py:354 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:370 +#: sphinx/cmd/quickstart.py:359 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1630,29 +1517,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:374 +#: sphinx/cmd/quickstart.py:363 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:377 +#: sphinx/cmd/quickstart.py:366 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:439 sphinx/ext/apidoc.py:79 +#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:444 sphinx/ext/apidoc.py:77 +#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:480 +#: sphinx/cmd/quickstart.py:450 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:481 +#: sphinx/cmd/quickstart.py:451 #, python-format msgid "" "\n" @@ -1660,26 +1547,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:483 +#: sphinx/cmd/quickstart.py:453 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:486 +#: sphinx/cmd/quickstart.py:456 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:489 +#: sphinx/cmd/quickstart.py:459 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:529 +#: sphinx/cmd/quickstart.py:499 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1689,214 +1576,214 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:539 +#: sphinx/cmd/quickstart.py:509 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:544 +#: sphinx/cmd/quickstart.py:514 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:546 +#: sphinx/cmd/quickstart.py:516 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:518 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:520 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:522 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:524 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:556 +#: sphinx/cmd/quickstart.py:526 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:558 +#: sphinx/cmd/quickstart.py:528 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:530 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:562 +#: sphinx/cmd/quickstart.py:532 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:564 +#: sphinx/cmd/quickstart.py:534 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:566 +#: sphinx/cmd/quickstart.py:536 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:538 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:570 +#: sphinx/cmd/quickstart.py:540 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:574 sphinx/ext/apidoc.py:380 +#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:576 +#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:578 +#: sphinx/cmd/quickstart.py:548 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:580 +#: sphinx/cmd/quickstart.py:550 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:582 +#: sphinx/cmd/quickstart.py:552 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:584 +#: sphinx/cmd/quickstart.py:554 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:587 +#: sphinx/cmd/quickstart.py:557 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:590 +#: sphinx/cmd/quickstart.py:560 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:593 +#: sphinx/cmd/quickstart.py:563 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:595 +#: sphinx/cmd/quickstart.py:565 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:598 +#: sphinx/cmd/quickstart.py:568 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:601 +#: sphinx/cmd/quickstart.py:571 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:628 +#: sphinx/cmd/quickstart.py:605 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:642 +#: sphinx/cmd/quickstart.py:619 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:644 +#: sphinx/cmd/quickstart.py:621 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:671 +#: sphinx/cmd/quickstart.py:636 #, python-format msgid "Invalid template variable: %s" msgstr "" -#: sphinx/directives/code.py:75 +#: sphinx/directives/code.py:74 msgid "Over dedent has detected" msgstr "" -#: sphinx/directives/code.py:95 +#: sphinx/directives/code.py:94 #, python-format msgid "Invalid caption: %s" msgstr "無效標題:%s" -#: sphinx/directives/code.py:138 sphinx/directives/code.py:280 -#: sphinx/directives/code.py:450 +#: sphinx/directives/code.py:140 sphinx/directives/code.py:292 +#: sphinx/directives/code.py:462 #, python-format msgid "line number spec is out of range(1-%d): %r" msgstr "" -#: sphinx/directives/code.py:210 +#: sphinx/directives/code.py:222 #, python-format msgid "Cannot use both \"%s\" and \"%s\" options" msgstr "" -#: sphinx/directives/code.py:223 +#: sphinx/directives/code.py:235 #, python-format msgid "Include file %r not found or reading it failed" msgstr "" -#: sphinx/directives/code.py:225 +#: sphinx/directives/code.py:237 #, 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:263 +#: sphinx/directives/code.py:275 #, python-format msgid "Object named %r not found in include file %r" msgstr "" -#: sphinx/directives/code.py:289 +#: sphinx/directives/code.py:301 msgid "Cannot use \"lineno-match\" with a disjoint set of \"lines\"" msgstr "" -#: sphinx/directives/code.py:294 +#: sphinx/directives/code.py:306 #, python-format msgid "Line spec %r: no lines pulled from include file %r" msgstr "" -#: sphinx/directives/other.py:169 +#: sphinx/directives/other.py:172 msgid "Section author: " msgstr "段落作者:" -#: sphinx/directives/other.py:171 +#: sphinx/directives/other.py:174 msgid "Module author: " msgstr "模組作者:" -#: sphinx/directives/other.py:173 +#: sphinx/directives/other.py:176 msgid "Code author: " msgstr "程式作者:" -#: sphinx/directives/other.py:175 +#: sphinx/directives/other.py:178 msgid "Author: " msgstr "作者:" -#: sphinx/domains/__init__.py:336 +#: sphinx/domains/__init__.py:344 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:65 sphinx/domains/cpp.py:6070 -#: sphinx/domains/python.py:212 sphinx/ext/napoleon/docstring.py:695 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "參數" -#: sphinx/domains/c.py:68 sphinx/domains/cpp.py:6079 -#: sphinx/domains/javascript.py:211 sphinx/domains/python.py:224 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 +#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 msgid "Returns" msgstr "傳回" -#: sphinx/domains/c.py:70 sphinx/domains/javascript.py:213 -#: sphinx/domains/python.py:226 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/python.py:224 msgid "Return type" msgstr "傳回型態" @@ -1925,12 +1812,12 @@ msgstr "%s (C 型態)" msgid "%s (C variable)" msgstr "%s (C 變數)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6547 -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:740 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 msgid "function" msgstr "函式" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6548 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 msgid "member" msgstr "成員函數" @@ -1938,7 +1825,7 @@ msgstr "成員函數" msgid "macro" msgstr "巨集" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6549 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 msgid "type" msgstr "類型" @@ -1946,297 +1833,262 @@ msgstr "類型" msgid "variable" msgstr "變數" -#: sphinx/domains/changeset.py:34 +#: sphinx/domains/changeset.py:33 #, python-format msgid "New in version %s" msgstr "%s 版新加入" -#: sphinx/domains/changeset.py:35 +#: sphinx/domains/changeset.py:34 #, python-format msgid "Changed in version %s" msgstr "%s 版更變" -#: sphinx/domains/changeset.py:36 +#: sphinx/domains/changeset.py:35 #, python-format msgid "Deprecated since version %s" msgstr "%s 版後已棄用" -#: sphinx/domains/cpp.py:4037 +#: sphinx/domains/cpp.py:4297 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6073 +#: sphinx/domains/cpp.py:6374 msgid "Template Parameters" msgstr "範本參數" -#: sphinx/domains/cpp.py:6076 sphinx/domains/javascript.py:208 +#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 msgid "Throws" msgstr "拋出" -#: sphinx/domains/cpp.py:6283 +#: sphinx/domains/cpp.py:6505 #, python-format -msgid "%s (C++ type)" -msgstr "%s (C++ 類別)" - -#: sphinx/domains/cpp.py:6293 -#, python-format -msgid "%s (C++ concept)" -msgstr "%s (C++ concept)" - -#: sphinx/domains/cpp.py:6303 -#, python-format -msgid "%s (C++ member)" -msgstr "%s (C++ 成員函數)" - -#: sphinx/domains/cpp.py:6313 -#, python-format -msgid "%s (C++ function)" -msgstr "%s (C++ 函式)" - -#: sphinx/domains/cpp.py:6323 -#, python-format -msgid "%s (C++ class)" -msgstr "%s (C++ 類別)" - -#: sphinx/domains/cpp.py:6333 -#, python-format -msgid "%s (C++ union)" +msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6343 -#, python-format -msgid "%s (C++ enum)" -msgstr "%s (C++ enum)" - -#: sphinx/domains/cpp.py:6363 -#, python-format -msgid "%s (C++ enumerator)" -msgstr "%s (C++ enumerator)" - -#: sphinx/domains/cpp.py:6545 sphinx/domains/javascript.py:301 -#: sphinx/domains/python.py:742 +#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 +#: sphinx/domains/python.py:743 msgid "class" msgstr "類別" -#: sphinx/domains/cpp.py:6546 +#: sphinx/domains/cpp.py:6955 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6550 +#: sphinx/domains/cpp.py:6959 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp.py:6551 +#: sphinx/domains/cpp.py:6960 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6552 +#: sphinx/domains/cpp.py:6961 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/cpp.py:6617 +#: sphinx/domains/cpp.py:7054 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:431 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 #, python-format msgid "%s() (built-in function)" msgstr "%s() (內建函式)" -#: sphinx/domains/javascript.py:133 sphinx/domains/python.py:496 +#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 的方法)" -#: sphinx/domains/javascript.py:135 +#: sphinx/domains/javascript.py:134 #, python-format msgid "%s() (class)" msgstr "%s() (類別)" -#: sphinx/domains/javascript.py:137 +#: sphinx/domains/javascript.py:136 #, python-format msgid "%s (global variable or constant)" msgstr "%s (全域變數或常數)" -#: sphinx/domains/javascript.py:139 sphinx/domains/python.py:534 +#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 的屬性)" -#: sphinx/domains/javascript.py:205 +#: sphinx/domains/javascript.py:204 msgid "Arguments" msgstr "引數" -#: sphinx/domains/javascript.py:266 sphinx/domains/python.py:611 +#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 #, python-format msgid "%s (module)" msgstr "%s (模組)" -#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:744 +#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 msgid "method" msgstr "成員函式" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:741 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:747 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 msgid "attribute" msgstr "屬性" -#: sphinx/domains/javascript.py:304 sphinx/domains/python.py:50 -#: sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:749 msgid "module" msgstr "模組" -#: sphinx/domains/math.py:88 sphinx/writers/latex.py:2529 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" -#: sphinx/domains/math.py:113 +#: sphinx/domains/math.py:126 #, python-format msgid "duplicate label of equation %s, other instance in %s" msgstr "重覆公式標籤 %s,亦出現於 %s" -#: sphinx/domains/python.py:51 +#: sphinx/domains/python.py:50 msgid "keyword" msgstr "關鍵字" -#: sphinx/domains/python.py:52 +#: sphinx/domains/python.py:51 msgid "operator" msgstr "運算子" -#: sphinx/domains/python.py:53 +#: sphinx/domains/python.py:52 msgid "object" msgstr "物件" -#: sphinx/domains/python.py:54 sphinx/domains/python.py:743 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 msgid "exception" msgstr "例外" -#: sphinx/domains/python.py:55 +#: sphinx/domains/python.py:54 msgid "statement" msgstr "陳述式" -#: sphinx/domains/python.py:56 +#: sphinx/domains/python.py:55 msgid "built-in function" msgstr "內建函式" -#: sphinx/domains/python.py:217 +#: sphinx/domains/python.py:215 msgid "Variables" msgstr "變數" -#: sphinx/domains/python.py:221 +#: sphinx/domains/python.py:219 msgid "Raises" msgstr "丟出" -#: sphinx/domains/python.py:432 sphinx/domains/python.py:490 -#: sphinx/domains/python.py:502 sphinx/domains/python.py:515 +#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 +#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 #, python-format msgid "%s() (in module %s)" msgstr "%s() (於 %s 模組中)" -#: sphinx/domains/python.py:435 +#: sphinx/domains/python.py:433 #, python-format msgid "%s (built-in variable)" msgstr "%s (內建變數)" -#: sphinx/domains/python.py:436 sphinx/domains/python.py:528 +#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 #, python-format msgid "%s (in module %s)" msgstr "%s (於 %s 模組中)" -#: sphinx/domains/python.py:456 +#: sphinx/domains/python.py:454 #, python-format msgid "%s (built-in class)" msgstr "%s (內建類別)" -#: sphinx/domains/python.py:457 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的類別)" -#: sphinx/domains/python.py:494 +#: sphinx/domains/python.py:492 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s 的成員函數)" -#: sphinx/domains/python.py:506 +#: sphinx/domains/python.py:504 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s 的靜態成員)" -#: sphinx/domains/python.py:509 +#: sphinx/domains/python.py:507 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 的靜態成員)" -#: sphinx/domains/python.py:519 +#: sphinx/domains/python.py:517 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s 的類別成員)" -#: sphinx/domains/python.py:522 +#: sphinx/domains/python.py:520 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 的類別成員)" -#: sphinx/domains/python.py:532 +#: sphinx/domains/python.py:530 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s 的屬性)" -#: sphinx/domains/python.py:669 +#: sphinx/domains/python.py:667 msgid "Python Module Index" msgstr "Python 模組索引" -#: sphinx/domains/python.py:670 +#: sphinx/domains/python.py:668 msgid "modules" msgstr "模組" -#: sphinx/domains/python.py:718 +#: sphinx/domains/python.py:719 msgid "Deprecated" msgstr "已棄用" -#: sphinx/domains/python.py:745 +#: sphinx/domains/python.py:746 msgid "class method" msgstr "類別成員" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "static method" msgstr "靜態成員" -#: sphinx/domains/python.py:878 +#: sphinx/domains/python.py:879 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:918 +#: sphinx/domains/python.py:917 msgid " (deprecated)" msgstr "(已棄用)" -#: sphinx/domains/rst.py:65 +#: sphinx/domains/rst.py:62 #, python-format msgid "%s (directive)" msgstr "%s (directive)" -#: sphinx/domains/rst.py:67 +#: sphinx/domains/rst.py:64 #, python-format msgid "%s (role)" msgstr "%s (role)" -#: sphinx/domains/rst.py:119 +#: sphinx/domains/rst.py:116 msgid "directive" msgstr "directive" -#: sphinx/domains/rst.py:120 +#: sphinx/domains/rst.py:117 msgid "role" msgstr "role" @@ -2245,209 +2097,200 @@ msgstr "role" msgid "environment variable; %s" msgstr "環境變數; %s" -#: sphinx/domains/std.py:164 +#: sphinx/domains/std.py:166 #, 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:203 +#: sphinx/domains/std.py:207 #, python-format msgid "%scommand line option; %s" msgstr "%s命令列選項; %s" -#: sphinx/domains/std.py:455 +#: sphinx/domains/std.py:458 msgid "glossary term" msgstr "雜項術語" -#: sphinx/domains/std.py:456 +#: sphinx/domains/std.py:459 msgid "grammar token" msgstr "語法單詞" -#: sphinx/domains/std.py:457 +#: sphinx/domains/std.py:460 msgid "reference label" msgstr "參照標籤" -#: sphinx/domains/std.py:459 +#: sphinx/domains/std.py:462 msgid "environment variable" msgstr "環境變數" -#: sphinx/domains/std.py:460 +#: sphinx/domains/std.py:463 msgid "program option" msgstr "程式選項" -#: sphinx/domains/std.py:461 +#: sphinx/domains/std.py:464 msgid "document" msgstr "" -#: sphinx/domains/std.py:498 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:30 sphinx/themes/basic/genindex.html:33 -#: sphinx/themes/basic/genindex.html:66 sphinx/themes/basic/layout.html:150 -#: sphinx/writers/latex.py:503 sphinx/writers/texinfo.py:516 -msgid "Index" -msgstr "索引" - -#: sphinx/domains/std.py:499 +#: sphinx/domains/std.py:502 msgid "Module Index" msgstr "模組索引" -#: sphinx/domains/std.py:500 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:503 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "搜尋頁面" -#: sphinx/domains/std.py:595 +#: sphinx/domains/std.py:598 #, python-format msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:627 sphinx/ext/autosectionlabel.py:47 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:652 +#: sphinx/domains/std.py:665 #, python-format msgid "Citation [%s] is not referenced." msgstr "" -#: sphinx/domains/std.py:735 +#: sphinx/domains/std.py:748 msgid "numfig is disabled. :numref: is ignored." msgstr "" -#: sphinx/domains/std.py:743 +#: sphinx/domains/std.py:756 #, python-format msgid "no number is assigned for %s: %s" msgstr "" -#: sphinx/domains/std.py:754 +#: sphinx/domains/std.py:767 #, python-format msgid "the link has no caption: %s" msgstr "" -#: sphinx/domains/std.py:768 +#: sphinx/domains/std.py:781 #, python-format msgid "invalid numfig_format: %s (%r)" msgstr "" -#: sphinx/domains/std.py:771 +#: sphinx/domains/std.py:784 #, python-format msgid "invalid numfig_format: %s" msgstr "" -#: sphinx/environment/__init__.py:79 +#: sphinx/environment/__init__.py:69 msgid "new config" msgstr "" -#: sphinx/environment/__init__.py:80 +#: sphinx/environment/__init__.py:70 msgid "config changed" msgstr "" -#: sphinx/environment/__init__.py:81 +#: sphinx/environment/__init__.py:71 msgid "extensions changed" msgstr "" -#: sphinx/environment/__init__.py:223 +#: sphinx/environment/__init__.py:210 msgid "build environment version not current" msgstr "" -#: sphinx/environment/__init__.py:225 +#: sphinx/environment/__init__.py:212 msgid "source directory has changed" msgstr "" -#: sphinx/environment/__init__.py:292 +#: sphinx/environment/__init__.py:283 msgid "" "This environment is incompatible with the selected builder, please choose " "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:425 -msgid "document not readable. Ignored." -msgstr "" - -#: sphinx/environment/__init__.py:445 +#: sphinx/environment/__init__.py:408 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:599 +#: sphinx/environment/__init__.py:536 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:694 +#: sphinx/environment/__init__.py:621 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:734 +#: sphinx/environment/__init__.py:662 msgid "document isn't included in any toctree" msgstr "" -#: sphinx/environment/adapters/indexentries.py:85 +#: sphinx/environment/adapters/indexentries.py:82 #, python-format msgid "see %s" msgstr "參考 %s" -#: sphinx/environment/adapters/indexentries.py:89 +#: sphinx/environment/adapters/indexentries.py:86 #, python-format msgid "see also %s" msgstr "也參考 %s" -#: sphinx/environment/adapters/indexentries.py:92 +#: sphinx/environment/adapters/indexentries.py:89 #, python-format msgid "unknown index entry type %r" msgstr "" -#: sphinx/environment/adapters/indexentries.py:159 sphinx/writers/latex.py:673 +#: sphinx/environment/adapters/indexentries.py:156 msgid "Symbols" msgstr "符號" -#: sphinx/environment/adapters/toctree.py:151 +#: sphinx/environment/adapters/toctree.py:153 #, python-format msgid "circular toctree references detected, ignoring: %s <- %s" msgstr "" -#: sphinx/environment/adapters/toctree.py:170 +#: sphinx/environment/adapters/toctree.py:172 #, 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:175 +#: sphinx/environment/adapters/toctree.py:178 +#, python-format +msgid "toctree contains reference to excluded document %r" +msgstr "" + +#: sphinx/environment/adapters/toctree.py:180 #, python-format msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:93 +#: sphinx/environment/collectors/asset.py:91 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:109 +#: sphinx/environment/collectors/asset.py:107 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:134 +#: sphinx/environment/collectors/asset.py:135 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:193 +#: sphinx/environment/collectors/toctree.py:197 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" -#: sphinx/ext/apidoc.py:74 +#: sphinx/ext/apidoc.py:69 #, python-format msgid "Would create file %s." msgstr "" -#: sphinx/ext/apidoc.py:304 +#: sphinx/ext/apidoc.py:299 msgid "" "\n" "Look recursively in <MODULE_PATH> for Python modules and packages and create\n" @@ -2459,352 +2302,381 @@ msgid "" "Note: By default this script will not overwrite already created files." msgstr "" -#: sphinx/ext/apidoc.py:317 +#: sphinx/ext/apidoc.py:312 msgid "path to module to document" msgstr "" -#: sphinx/ext/apidoc.py:319 +#: sphinx/ext/apidoc.py:314 msgid "" "fnmatch-style file and/or directory patterns to exclude from generation" msgstr "" -#: sphinx/ext/apidoc.py:324 +#: sphinx/ext/apidoc.py:319 msgid "directory to place all output" msgstr "" -#: sphinx/ext/apidoc.py:327 +#: sphinx/ext/apidoc.py:322 msgid "maximum depth of submodules to show in the TOC (default: 4)" msgstr "" -#: sphinx/ext/apidoc.py:330 +#: sphinx/ext/apidoc.py:325 msgid "overwrite existing files" msgstr "" -#: sphinx/ext/apidoc.py:333 +#: sphinx/ext/apidoc.py:328 msgid "" "follow symbolic links. Powerful when combined with " "collective.recipe.omelette." msgstr "" -#: sphinx/ext/apidoc.py:336 +#: sphinx/ext/apidoc.py:331 msgid "run the script without creating files" msgstr "" -#: sphinx/ext/apidoc.py:339 +#: sphinx/ext/apidoc.py:334 msgid "put documentation for each module on its own page" msgstr "" -#: sphinx/ext/apidoc.py:342 +#: sphinx/ext/apidoc.py:337 msgid "include \"_private\" modules" msgstr "" -#: sphinx/ext/apidoc.py:344 +#: sphinx/ext/apidoc.py:339 +msgid "filename of table of contents (default: modules)" +msgstr "" + +#: sphinx/ext/apidoc.py:341 msgid "don't create a table of contents file" msgstr "" -#: sphinx/ext/apidoc.py:347 +#: sphinx/ext/apidoc.py:344 msgid "" "don't create headings for the module/package packages (e.g. when the " "docstrings already contain them)" msgstr "" -#: sphinx/ext/apidoc.py:352 +#: sphinx/ext/apidoc.py:349 msgid "put module documentation before submodule documentation" msgstr "" -#: sphinx/ext/apidoc.py:356 +#: sphinx/ext/apidoc.py:353 msgid "" "interpret module paths according to PEP-0420 implicit namespaces " "specification" msgstr "" -#: sphinx/ext/apidoc.py:360 +#: sphinx/ext/apidoc.py:357 msgid "file suffix (default: rst)" msgstr "" -#: sphinx/ext/apidoc.py:362 +#: sphinx/ext/apidoc.py:359 msgid "generate a full project with sphinx-quickstart" msgstr "" -#: sphinx/ext/apidoc.py:365 +#: sphinx/ext/apidoc.py:362 msgid "append module_path to sys.path, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:367 +#: sphinx/ext/apidoc.py:364 msgid "project name (default: root module name)" msgstr "" -#: sphinx/ext/apidoc.py:369 +#: sphinx/ext/apidoc.py:366 msgid "project author(s), used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:371 +#: sphinx/ext/apidoc.py:368 msgid "project version, used when --full is given" msgstr "" -#: sphinx/ext/apidoc.py:373 +#: sphinx/ext/apidoc.py:370 msgid "project release, used when --full is given, defaults to --doc-version" msgstr "" -#: sphinx/ext/apidoc.py:376 +#: sphinx/ext/apidoc.py:373 msgid "extension options" msgstr "" -#: sphinx/ext/apidoc.py:403 +#: sphinx/ext/apidoc.py:402 #, python-format msgid "%s is not a directory." msgstr "" -#: sphinx/ext/coverage.py:49 +#: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" msgstr "" -#: sphinx/ext/coverage.py:58 +#: sphinx/ext/coverage.py:55 #, python-format msgid "" "Testing of coverage in the sources finished, look at the results in " "%(outdir)spython.txt." msgstr "" -#: sphinx/ext/coverage.py:73 +#: sphinx/ext/coverage.py:70 #, python-format msgid "invalid regex %r in coverage_c_regexes" msgstr "" -#: sphinx/ext/coverage.py:155 +#: sphinx/ext/coverage.py:152 #, python-format msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:143 +#: sphinx/ext/doctest.py:142 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:148 +#: sphinx/ext/doctest.py:147 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:162 +#: sphinx/ext/doctest.py:161 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:231 +#: sphinx/ext/doctest.py:230 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:292 +#: sphinx/ext/doctest.py:291 #, python-format msgid "" "Testing of doctests in the sources finished, look at the results in " "%(outdir)s/output.txt." msgstr "" -#: sphinx/ext/doctest.py:444 +#: sphinx/ext/doctest.py:438 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:535 +#: sphinx/ext/doctest.py:527 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" -#: sphinx/ext/graphviz.py:139 +#: sphinx/ext/graphviz.py:140 msgid "Graphviz directive cannot have both content and a filename argument" msgstr "" -#: sphinx/ext/graphviz.py:149 +#: sphinx/ext/graphviz.py:150 #, python-format msgid "External Graphviz file %r not found or reading it failed" msgstr "" -#: sphinx/ext/graphviz.py:155 +#: sphinx/ext/graphviz.py:156 msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:255 +#: sphinx/ext/graphviz.py:252 +#, python-format +msgid "" +"dot did not produce an output file:\n" +"[stderr]\n" +"%r\n" +"[stdout]\n" +"%r" +msgstr "" + +#: sphinx/ext/graphviz.py:256 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:263 #, python-format msgid "" "dot exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/graphviz.py:276 -#, python-format -msgid "" -"dot did not produce an output file:\n" -"[stderr]\n" -"%s\n" -"[stdout]\n" -"%s" -msgstr "" - -#: sphinx/ext/graphviz.py:287 +#: sphinx/ext/graphviz.py:273 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:291 sphinx/ext/graphviz.py:345 -#: sphinx/ext/graphviz.py:383 +#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 +#: sphinx/ext/graphviz.py:369 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:398 sphinx/ext/graphviz.py:407 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 #, python-format msgid "[graph: %s]" msgstr "[圖:%s]" -#: sphinx/ext/graphviz.py:400 sphinx/ext/graphviz.py:409 +#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 msgid "[graph]" msgstr "[圖]" -#: sphinx/ext/imgconverter.py:44 sphinx/ext/imgconverter.py:81 +#: sphinx/ext/imgconverter.py:43 sphinx/ext/imgconverter.py:68 #, python-format msgid "convert command %r cannot be run.check the image_converter setting" msgstr "" -#: sphinx/ext/imgconverter.py:58 sphinx/ext/imgconverter.py:94 +#: sphinx/ext/imgconverter.py:48 sphinx/ext/imgconverter.py:73 #, python-format msgid "" "convert exited with error:\n" "[stderr]\n" -"%s\n" +"%r\n" "[stdout]\n" -"%s" +"%r" msgstr "" -#: sphinx/ext/imgmath.py:143 +#: sphinx/ext/imgmath.py:140 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:163 +#: 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:302 +#: sphinx/ext/imgmath.py:290 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:329 +#: sphinx/ext/imgmath.py:317 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:336 sphinx/ext/jsmath.py:47 sphinx/ext/mathjax.py:50 +#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "本公式的永久連結" -#: sphinx/ext/intersphinx.py:226 +#: sphinx/ext/intersphinx.py:182 #, python-format -msgid "intersphinx identifier %r is not string. Ignored" +msgid "intersphinx inventory has moved: %s -> %s" msgstr "" -#: sphinx/ext/intersphinx.py:268 +#: sphinx/ext/intersphinx.py:217 +#, python-format +msgid "loading intersphinx inventory from %s..." +msgstr "" + +#: sphinx/ext/intersphinx.py:232 +msgid "" +"encountered some issues with some of the inventories, but they had working " +"alternatives:" +msgstr "" + +#: sphinx/ext/intersphinx.py:237 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:343 +#: sphinx/ext/intersphinx.py:312 #, python-format msgid "(in %s v%s)" msgstr "(於 %s v%s)" -#: sphinx/ext/intersphinx.py:345 +#: sphinx/ext/intersphinx.py:314 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/linkcode.py:75 sphinx/ext/viewcode.py:128 +#: sphinx/ext/intersphinx.py:348 +#, python-format +msgid "intersphinx identifier %r is not string. Ignored" +msgstr "" + +#: sphinx/ext/intersphinx.py:361 +#, python-format +msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" +msgstr "" + +#: sphinx/ext/linkcode.py:72 sphinx/ext/viewcode.py:117 msgid "[source]" msgstr "[原始碼]" -#: sphinx/ext/todo.py:67 +#: sphinx/ext/todo.py:70 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:105 +#: sphinx/ext/todo.py:111 #, python-format msgid "TODO entry found: %s" msgstr "" -#: sphinx/ext/todo.py:153 +#: sphinx/ext/todo.py:160 msgid "<<original entry>>" msgstr "<<original entry>>" -#: sphinx/ext/todo.py:156 +#: sphinx/ext/todo.py:163 #, python-format msgid "(The <<original entry>> is located in %s, line %d.)" msgstr "(<<original entry>> 見 %s ,第 %d 行)" -#: sphinx/ext/todo.py:165 +#: sphinx/ext/todo.py:172 msgid "original entry" msgstr "原始記錄" -#: sphinx/ext/viewcode.py:196 +#: sphinx/ext/viewcode.py:158 +msgid "highlighting module code... " +msgstr "" + +#: sphinx/ext/viewcode.py:187 msgid "[docs]" msgstr "[文件]" -#: sphinx/ext/viewcode.py:210 +#: sphinx/ext/viewcode.py:201 msgid "Module code" msgstr "模組原始碼" -#: sphinx/ext/viewcode.py:216 +#: sphinx/ext/viewcode.py:207 #, python-format msgid "<h1>Source code for %s</h1>" msgstr "<h1>%s 的原始碼</h1>" -#: sphinx/ext/viewcode.py:242 +#: sphinx/ext/viewcode.py:233 msgid "Overview: module code" msgstr "概要:模組原始碼" -#: sphinx/ext/viewcode.py:243 +#: sphinx/ext/viewcode.py:234 msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>所有可得程式碼的模組</h1>" -#: sphinx/ext/autodoc/__init__.py:345 +#: sphinx/ext/autodoc/__init__.py:302 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:444 +#: sphinx/ext/autodoc/__init__.py:402 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:566 +#: sphinx/ext/autodoc/__init__.py:514 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:654 +#: sphinx/ext/autodoc/__init__.py:602 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:746 +#: sphinx/ext/autodoc/__init__.py:694 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2812,66 +2684,85 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:835 +#: sphinx/ext/autodoc/__init__.py:788 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:842 +#: sphinx/ext/autodoc/__init__.py:796 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:876 +#: sphinx/ext/autodoc/__init__.py:829 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:889 +#: sphinx/ext/autodoc/__init__.py:844 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1134 +#: sphinx/ext/autodoc/__init__.py:1128 #, python-format msgid "Bases: %s" msgstr "基礎類別:%s" -#: sphinx/ext/autodoc/__init__.py:1195 +#: sphinx/ext/autodoc/__init__.py:1185 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` 的別名" -#: sphinx/ext/autodoc/__init__.py:1541 -msgid "" -"autodoc_default_flags is now deprecated. Please use autodoc_default_options " -"instead." -msgstr "" - -#: sphinx/ext/autodoc/__init__.py:1549 +#: sphinx/ext/autodoc/__init__.py:1470 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" -#: sphinx/ext/autosummary/__init__.py:683 +#: sphinx/ext/autosummary/__init__.py:256 +#, python-format +msgid "toctree references excluded document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:258 +#, python-format +msgid "toctree references unknown document %r" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:292 +#, python-format +msgid "failed to import %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:307 +#, python-format +msgid "failed to parse name %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:311 +#, python-format +msgid "failed to import object %s" +msgstr "" + +#: sphinx/ext/autosummary/__init__.py:702 msgid "" "autosummary generats .rst files internally. But your source_suffix does not " "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:105 +#: sphinx/ext/autosummary/generate.py:102 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:109 +#: sphinx/ext/autosummary/generate.py:106 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:370 +#: sphinx/ext/autosummary/generate.py:366 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2886,106 +2777,106 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:383 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:391 +#: sphinx/ext/autosummary/generate.py:387 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:390 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:394 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:402 +#: sphinx/ext/autosummary/generate.py:398 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" -#: sphinx/ext/napoleon/__init__.py:334 sphinx/ext/napoleon/docstring.py:668 +#: sphinx/ext/napoleon/__init__.py:330 sphinx/ext/napoleon/docstring.py:669 msgid "Keyword Arguments" msgstr "關鍵字引數" -#: sphinx/ext/napoleon/docstring.py:626 +#: sphinx/ext/napoleon/docstring.py:627 msgid "Example" msgstr "" -#: sphinx/ext/napoleon/docstring.py:627 +#: sphinx/ext/napoleon/docstring.py:628 msgid "Examples" msgstr "" -#: sphinx/ext/napoleon/docstring.py:683 +#: sphinx/ext/napoleon/docstring.py:684 msgid "Notes" msgstr "" -#: sphinx/ext/napoleon/docstring.py:687 +#: sphinx/ext/napoleon/docstring.py:688 msgid "Other Parameters" msgstr "" -#: sphinx/ext/napoleon/docstring.py:739 +#: sphinx/ext/napoleon/docstring.py:717 msgid "References" msgstr "" -#: sphinx/ext/napoleon/docstring.py:776 +#: sphinx/ext/napoleon/docstring.py:754 msgid "Warns" msgstr "" -#: sphinx/ext/napoleon/docstring.py:781 +#: sphinx/ext/napoleon/docstring.py:759 msgid "Yields" msgstr "" -#: sphinx/locale/__init__.py:341 +#: sphinx/locale/__init__.py:307 msgid "Attention" msgstr "注意" -#: sphinx/locale/__init__.py:342 +#: sphinx/locale/__init__.py:308 msgid "Caution" msgstr "警示" -#: sphinx/locale/__init__.py:343 +#: sphinx/locale/__init__.py:309 msgid "Danger" msgstr "危險" -#: sphinx/locale/__init__.py:344 +#: sphinx/locale/__init__.py:310 msgid "Error" msgstr "錯誤" -#: sphinx/locale/__init__.py:345 +#: sphinx/locale/__init__.py:311 msgid "Hint" msgstr "提示" -#: sphinx/locale/__init__.py:346 +#: sphinx/locale/__init__.py:312 msgid "Important" msgstr "重要" -#: sphinx/locale/__init__.py:347 +#: sphinx/locale/__init__.py:313 msgid "Note" msgstr "備註" -#: sphinx/locale/__init__.py:348 +#: sphinx/locale/__init__.py:314 msgid "See also" msgstr "也參考" -#: sphinx/locale/__init__.py:349 +#: sphinx/locale/__init__.py:315 msgid "Tip" msgstr "小訣竅" -#: sphinx/locale/__init__.py:350 +#: sphinx/locale/__init__.py:316 msgid "Warning" msgstr "警告" -#: sphinx/templates/latex/longtable.tex_t:22 sphinx/writers/latex.py:664 +#: sphinx/templates/latex/longtable.tex_t:23 msgid "continued from previous page" msgstr "繼續上一頁" -#: sphinx/templates/latex/longtable.tex_t:28 +#: sphinx/templates/latex/longtable.tex_t:29 msgid "Continued on next page" msgstr "繼續下一頁" @@ -3004,7 +2895,7 @@ msgstr "搜尋" msgid "Go" msgstr "搜" -#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" msgstr "顯示原始碼" @@ -3153,13 +3044,13 @@ msgstr "搜尋" #: sphinx/themes/basic/search.html:46 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:290 +#: sphinx/themes/basic/static/searchtools.js:295 msgid "Search Results" msgstr "搜尋結果" #: sphinx/themes/basic/search.html:48 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:292 +#: sphinx/themes/basic/static/searchtools.js:297 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3201,36 +3092,36 @@ msgstr "C API 改變" msgid "Other changes" msgstr "其他改變" -#: sphinx/themes/basic/static/doctools.js:195 sphinx/writers/html.py:403 -#: sphinx/writers/html.py:408 sphinx/writers/html5.py:349 -#: sphinx/writers/html5.py:354 +#: sphinx/themes/basic/static/doctools.js:194 sphinx/writers/html.py:454 +#: sphinx/writers/html.py:459 sphinx/writers/html5.py:400 +#: sphinx/writers/html5.py:405 msgid "Permalink to this headline" msgstr "本標題的永久連結" -#: sphinx/themes/basic/static/doctools.js:201 sphinx/writers/html.py:124 -#: sphinx/writers/html.py:135 sphinx/writers/html5.py:93 -#: sphinx/writers/html5.py:104 +#: sphinx/themes/basic/static/doctools.js:200 sphinx/writers/html.py:134 +#: sphinx/writers/html.py:145 sphinx/writers/html5.py:103 +#: sphinx/writers/html5.py:114 msgid "Permalink to this definition" msgstr "本定義的永久連結" -#: sphinx/themes/basic/static/doctools.js:234 +#: sphinx/themes/basic/static/doctools.js:233 msgid "Hide Search Matches" msgstr "隱藏符合搜尋" -#: sphinx/themes/basic/static/searchtools.js:121 +#: sphinx/themes/basic/static/searchtools.js:131 msgid "Searching" msgstr "搜尋中" -#: sphinx/themes/basic/static/searchtools.js:126 +#: sphinx/themes/basic/static/searchtools.js:136 msgid "Preparing search..." msgstr "準備搜尋中…" -#: sphinx/themes/basic/static/searchtools.js:294 +#: sphinx/themes/basic/static/searchtools.js:299 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "搜尋完成,共找到 %s 頁面滿足搜尋條件。" -#: sphinx/themes/basic/static/searchtools.js:347 +#: sphinx/themes/basic/static/searchtools.js:352 msgid ", in " msgstr " 於 " @@ -3247,76 +3138,89 @@ msgstr "收合側邊欄" msgid "Contents" msgstr "內容" -#: sphinx/transforms/__init__.py:258 +#: sphinx/transforms/__init__.py:259 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:300 +#: sphinx/transforms/__init__.py:301 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:306 +#: sphinx/transforms/__init__.py:307 msgid "Footnote [#] is not referenced." msgstr "" -#: sphinx/transforms/i18n.py:294 sphinx/transforms/i18n.py:371 +#: sphinx/transforms/i18n.py:293 sphinx/transforms/i18n.py:363 msgid "" "inconsistent footnote references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:340 +#: sphinx/transforms/i18n.py:335 msgid "" "inconsistent references in translated message. original: {0}, translated: " "{1}" msgstr "" -#: sphinx/transforms/i18n.py:393 +#: sphinx/transforms/i18n.py:382 msgid "" "inconsistent citation references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/i18n.py:413 +#: sphinx/transforms/i18n.py:402 msgid "" "inconsistent term references in translated message. original: {0}, " "translated: {1}" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:142 +#: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:172 +#: sphinx/transforms/post_transforms/__init__.py:142 #, python-format msgid "%s:%s reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/__init__.py:175 +#: sphinx/transforms/post_transforms/__init__.py:145 #, python-format msgid "%r reference target not found: %%(target)s" msgstr "" -#: sphinx/transforms/post_transforms/images.py:94 +#: sphinx/transforms/post_transforms/images.py:92 #, python-format msgid "Could not fetch remote image: %s [%d]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:122 +#: sphinx/transforms/post_transforms/images.py:120 #, python-format msgid "Could not fetch remote image: %s [%s]" msgstr "" -#: sphinx/transforms/post_transforms/images.py:143 +#: sphinx/transforms/post_transforms/images.py:140 #, python-format msgid "Unknown image format: %s..." msgstr "" -#: sphinx/util/docutils.py:281 +#: sphinx/util/__init__.py:415 +#, python-format +msgid "undecodable source characters, replacing with \"?\": %r" +msgstr "" + +#: sphinx/util/__init__.py:695 +msgid "skipped" +msgstr "" + +#: sphinx/util/__init__.py:700 +msgid "failed" +msgstr "" + +#: sphinx/util/docutils.py:321 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3330,140 +3234,127 @@ msgstr "" msgid "writing error: %s, %s" msgstr "" -#: sphinx/util/i18n.py:217 +#: sphinx/util/i18n.py:215 #, 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:360 +#: sphinx/util/nodes.py:428 #, python-format msgid "toctree contains ref to nonexisting file %r" msgstr "" -#: sphinx/util/nodes.py:433 +#: sphinx/util/nodes.py:501 #, python-format msgid "exception while evaluating only directive expression: %s" msgstr "" -#: sphinx/util/rst.py:47 +#: sphinx/util/pycompat.py:82 +#, python-format +msgid "" +"Support for evaluating Python 2 syntax is deprecated and will be removed in " +"Sphinx 4.0. Convert %s to Python 3 syntax." +msgstr "" + +#: sphinx/util/rst.py:49 #, python-format msgid "default role %s not found" msgstr "" -#: sphinx/writers/html.py:336 sphinx/writers/html5.py:304 +#: sphinx/writers/html.py:345 sphinx/writers/html5.py:313 #, python-format msgid "numfig_format is not defined for %s" msgstr "" -#: sphinx/writers/html.py:346 sphinx/writers/html5.py:314 +#: sphinx/writers/html.py:355 sphinx/writers/html5.py:323 #, python-format msgid "Any IDs not assigned for %s node" msgstr "" -#: sphinx/writers/html.py:412 sphinx/writers/html5.py:358 +#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 msgid "Permalink to this table" msgstr "本表格的永久連結" -#: sphinx/writers/html.py:459 sphinx/writers/html5.py:405 +#: sphinx/writers/html.py:510 sphinx/writers/html5.py:456 msgid "Permalink to this code" msgstr "本原始碼的永久連結" -#: sphinx/writers/html.py:463 sphinx/writers/html5.py:409 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this image" msgstr "本圖片的永久連結" -#: sphinx/writers/html.py:465 sphinx/writers/html5.py:411 +#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 msgid "Permalink to this toctree" msgstr "本目錄的永久連結" -#: sphinx/writers/html.py:612 sphinx/writers/html5.py:558 +#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" -#: sphinx/writers/latex.py:508 -msgid "Release" -msgstr "發佈" - -#: sphinx/writers/latex.py:531 +#: sphinx/writers/latex.py:510 #, python-format msgid "unknown %r toplevel_sectioning for class %r" msgstr "" -#: sphinx/writers/latex.py:582 -#, python-format -msgid "no Babel option known for language %r" -msgstr "" - -#: sphinx/writers/latex.py:633 +#: sphinx/writers/latex.py:603 msgid "too large :maxdepth:, ignored." msgstr "" -#: sphinx/writers/latex.py:667 -msgid "continues on next page" -msgstr "" - -#: sphinx/writers/latex.py:670 -msgid "Non-alphabetical" -msgstr "" - -#: sphinx/writers/latex.py:676 -msgid "Numbers" -msgstr "" - -#: sphinx/writers/latex.py:680 -msgid "page" -msgstr "頁" - -#: sphinx/writers/latex.py:1013 +#: sphinx/writers/latex.py:893 msgid "document title is not a single Text node" msgstr "" -#: sphinx/writers/latex.py:1046 sphinx/writers/texinfo.py:651 +#: sphinx/writers/latex.py:926 sphinx/writers/texinfo.py:658 msgid "" "encountered title node not in section, topic, table, admonition or sidebar" msgstr "" -#: sphinx/writers/latex.py:1223 sphinx/writers/manpage.py:275 -#: sphinx/writers/texinfo.py:669 +#: sphinx/writers/latex.py:1102 sphinx/writers/manpage.py:277 +#: sphinx/writers/texinfo.py:675 msgid "Footnotes" msgstr "頁尾" -#: sphinx/writers/latex.py:1638 +#: sphinx/writers/latex.py:1150 +msgid "" +"both tabularcolumns and :widths: option are given. :widths: is ignored." +msgstr "" + +#: sphinx/writers/latex.py:1521 #, python-format msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1927 +#: sphinx/writers/latex.py:1843 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2606 +#: sphinx/writers/latex.py:2552 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "未知設定鍵:latex_elements[%r] 將被忽略。" -#: sphinx/writers/manpage.py:331 sphinx/writers/text.py:709 +#: sphinx/writers/manpage.py:333 sphinx/writers/text.py:887 #, python-format msgid "[image: %s]" msgstr "[圖片:%s]" -#: sphinx/writers/manpage.py:332 sphinx/writers/text.py:710 +#: sphinx/writers/manpage.py:334 sphinx/writers/text.py:888 msgid "[image]" msgstr "[圖片]" -#: sphinx/writers/texinfo.py:1321 +#: sphinx/writers/texinfo.py:1330 msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1412 +#: sphinx/writers/texinfo.py:1421 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1417 +#: sphinx/writers/texinfo.py:1426 #, python-format msgid "unknown node type: %r" msgstr "" From 3711c47985b8a8cbbdaf4a2674fb33e88ada97a3 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Fri, 29 Mar 2019 00:19:17 +0900 Subject: [PATCH 112/121] Bump to 2.0.0 final --- CHANGES | 44 ++++++++++++-------------------------------- sphinx/__init__.py | 4 ++-- 2 files changed, 14 insertions(+), 34 deletions(-) diff --git a/CHANGES b/CHANGES index 8ca26e1e5..1c941dec3 100644 --- a/CHANGES +++ b/CHANGES @@ -1,10 +1,10 @@ -Release 2.0.0 beta3 (in development) -==================================== +Release 2.0.0 (released Mar 29, 2019) +===================================== Dependencies ------------ -1.8.0b1 +2.0.0b1 * LaTeX builder now depends on TeX Live 2015 or above. * LaTeX builder (with ``'pdflatex'`` :confval:`latex_engine`) will process @@ -33,7 +33,7 @@ Dependencies Incompatible changes -------------------- -1.8.0b1 +2.0.0b1 * Drop python 2.7 and 3.4 support * Drop docutils 0.11 support @@ -78,14 +78,14 @@ Incompatible changes * #4550: All tables and figures without ``align`` option are displayed to center * #4587: html: Output HTML5 by default -1.8.0b2 +2.0.0b2 * texinfo: image files are copied into ``name-figure`` directory Deprecated ---------- -1.8.0b1 +2.0.0b1 * Support for evaluating Python 2 syntax is deprecated. This includes configuration files which should be converted to Python 3. @@ -174,7 +174,7 @@ For more details, see :ref:`deprecation APIs list <dev-deprecated-apis>`. Features added -------------- -1.8.0b1 +2.0.0b1 * #1618: The search results preview of generated HTML documentation is reader-friendlier: instead of showing the snippets as raw reStructuredText @@ -225,7 +225,7 @@ Features added Bugs fixed ---------- -1.8.0b1 +2.0.0b1 * #1682: LaTeX: writer should not translate Greek unicode, but use textgreek package @@ -248,7 +248,7 @@ Bugs fixed * HTML search: search always returns nothing when multiple search terms are used and one term is shorter than three characters -1.8.0b2 +2.0.0b2 * #6096: html: Anchor links are not added to figures * #3620: html: Defer searchindex.js rather than loading it via ajax @@ -269,41 +269,21 @@ Bugs fixed docs, allow negative values. * #6178: i18n: Captions missing in translations for hidden TOCs -1.8.0 final +2.0.0 final * #6196: py domain: unexpected prefix is generated Testing -------- -1.8.0b1 +2.0.0b1 * Stop to use ``SPHINX_TEST_TEMPDIR`` envvar -1.8.0b2 +2.0.0b2 * Add a helper function: ``sphinx.testing.restructuredtext.parse()`` -Release 1.8.6 (in development) - -Dependencies ------------- - -Incompatible changes --------------------- - -Deprecated ----------- - -Features added --------------- - -Bugs fixed ----------- - -Testing --------- - Release 1.8.5 (released Mar 10, 2019) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index cab6a6a0d..9d07412d2 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -32,7 +32,7 @@ if 'PYTHONWARNINGS' not in os.environ: warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '2.0.0+' +__version__ = '2.0.0' __released__ = '2.0.0' # used when Sphinx builds its own docs #: Version info for better programmatic use. @@ -43,7 +43,7 @@ __released__ = '2.0.0' # used when Sphinx builds its own docs #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (2, 0, 0, 'beta', 3) +version_info = (2, 0, 0, 'final', 0) package_dir = path.abspath(path.dirname(__file__)) From 4cfcef651399884d1472f00b553a792d4c41dad4 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Fri, 29 Mar 2019 00:22:15 +0900 Subject: [PATCH 113/121] Bump version --- CHANGES | 21 +++++++++++++++++++++ sphinx/__init__.py | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 1c941dec3..f126e17d4 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,24 @@ +Release 2.0.1 (in development) +============================== + +Dependencies +------------ + +Incompatible changes +-------------------- + +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + Release 2.0.0 (released Mar 29, 2019) ===================================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 9d07412d2..be1403cfd 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -32,8 +32,8 @@ if 'PYTHONWARNINGS' not in os.environ: warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '2.0.0' -__released__ = '2.0.0' # used when Sphinx builds its own docs +__version__ = '2.0.1+' +__released__ = '2.0.1' # used when Sphinx builds its own docs #: Version info for better programmatic use. #: @@ -43,7 +43,7 @@ __released__ = '2.0.0' # used when Sphinx builds its own docs #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (2, 0, 0, 'final', 0) +version_info = (2, 0, 1, 'beta', 0) package_dir = path.abspath(path.dirname(__file__)) From b2a8ffc7677f32f72804ee9548de9902d5e786fe Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Fri, 29 Mar 2019 01:08:23 +0900 Subject: [PATCH 114/121] Fix i18n: messages on sphinxmessages.sty_t are not extracted --- CHANGES | 2 + babel.cfg | 7 + sphinx/locale/sphinx.pot | 480 ++++++++++++++++++++------------------- 3 files changed, 258 insertions(+), 231 deletions(-) diff --git a/CHANGES b/CHANGES index f126e17d4..2786098df 100644 --- a/CHANGES +++ b/CHANGES @@ -16,6 +16,8 @@ Features added Bugs fixed ---------- +* LaTeX: some system labels are not translated + Testing -------- diff --git a/babel.cfg b/babel.cfg index a57e0ac09..d41d26ad0 100644 --- a/babel.cfg +++ b/babel.cfg @@ -14,6 +14,13 @@ variable_end_string = %> block_start_string = <% block_end_string = %> +# Extraction from Jinja2 template files +[jinja2: **/templates/latex/**.sty_t] +variable_start_string = <%= +variable_end_string = %> +block_start_string = <% +block_end_string = %> + # Extraction from Jinja2 HTML templates [jinja2: **/themes/**.html] encoding = utf-8 diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index 38074c074..07f4216c4 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Sphinx 2.0.0\n" +"Project-Id-Version: Sphinx 2.0.1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -120,7 +120,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -128,7 +128,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -136,7 +136,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -586,44 +586,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -642,19 +642,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -663,82 +663,82 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "" "conf value \"epub_language\" (or \"language\") should not be empty for " "EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "" "conf value \"epub_title\" (or \"html_title\") should not be empty for " "EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "" "conf value \"epub_copyright\" (or \"copyright\")should not be empty for " "EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -757,7 +757,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -810,7 +810,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -927,7 +927,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -971,24 +971,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1008,28 +1008,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1041,28 +1041,28 @@ msgstr "" msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1125,8 +1125,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1511,13 +1511,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has" " been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that " @@ -1526,29 +1526,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1557,26 +1557,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1587,132 +1587,132 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "" "\"quiet\" is specified, but any of \"project\" or \"author\" is not " "specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a " "new root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1784,17 +1784,17 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1824,12 +1824,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "" @@ -1837,7 +1837,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "" @@ -1860,106 +1860,106 @@ msgstr "" msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1981,7 +1981,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "" @@ -2001,88 +2001,88 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2158,7 +2158,7 @@ msgstr "" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2218,21 +2218,21 @@ msgid "" " another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2252,6 +2252,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2277,22 +2278,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2438,38 +2439,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2487,7 +2488,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2497,14 +2498,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2514,23 +2515,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2549,31 +2550,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the " "imgmath_%s setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2593,26 +2594,26 @@ msgid "" "working alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2668,22 +2669,22 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception " @@ -2691,7 +2692,7 @@ msgid "" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2699,40 +2700,40 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute" " %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2768,17 +2769,17 @@ msgid "" "not contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2795,25 +2796,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2891,6 +2892,7 @@ msgid "Warning" msgstr "" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "" @@ -2898,13 +2900,29 @@ msgstr "" msgid "Continued on next page" msgstr "" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "" @@ -3041,13 +3059,13 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3055,17 +3073,17 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:42 sphinx/themes/basic/searchresults.html:17 +#: sphinx/themes/basic/search.html:37 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:46 sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/search.html:41 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:48 sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words " "are spelled correctly and that you've selected enough categories." @@ -3123,20 +3141,20 @@ msgstr "" msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3153,17 +3171,17 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3234,7 +3252,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3295,15 +3313,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3338,12 +3356,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3361,12 +3379,12 @@ msgstr "" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" From b3d3aad55790edc0b01fe862ec50a7f4e84c5d43 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Fri, 29 Mar 2019 01:15:18 +0900 Subject: [PATCH 115/121] Update message catalogs --- sphinx/locale/ar/LC_MESSAGES/sphinx.mo | Bin 69487 -> 69678 bytes sphinx/locale/ar/LC_MESSAGES/sphinx.po | 482 +++++++++--------- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 72078 -> 72248 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 69102 -> 69272 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/cak/LC_MESSAGES/sphinx.mo | Bin 69035 -> 69207 bytes sphinx/locale/cak/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 69329 -> 69499 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/cy/LC_MESSAGES/sphinx.mo | Bin 69177 -> 69347 bytes sphinx/locale/cy/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 69066 -> 69237 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 482 +++++++++--------- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 69553 -> 69737 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 482 +++++++++--------- sphinx/locale/el/LC_MESSAGES/sphinx.mo | Bin 72560 -> 72730 bytes sphinx/locale/el/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/eo/LC_MESSAGES/sphinx.mo | Bin 68939 -> 69109 bytes sphinx/locale/eo/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 71633 -> 71833 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 482 +++++++++--------- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 70142 -> 70316 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 482 +++++++++--------- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 69205 -> 69375 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 69680 -> 69850 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 68762 -> 68932 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 74330 -> 74493 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 486 +++++++++--------- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 69558 -> 69728 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/hi/LC_MESSAGES/sphinx.mo | Bin 113306 -> 113573 bytes sphinx/locale/hi/LC_MESSAGES/sphinx.po | 484 +++++++++--------- sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo | Bin 68931 -> 69101 bytes sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 69350 -> 69524 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 69583 -> 69769 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 482 +++++++++--------- sphinx/locale/id/LC_MESSAGES/sphinx.mo | Bin 70347 -> 70516 bytes sphinx/locale/id/LC_MESSAGES/sphinx.po | 482 +++++++++--------- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 69474 -> 69649 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 482 +++++++++--------- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 82380 -> 82550 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 490 ++++++++++--------- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 70528 -> 70690 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 482 +++++++++--------- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 69495 -> 69665 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 69346 -> 69516 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/mk/LC_MESSAGES/sphinx.mo | Bin 69244 -> 69414 bytes sphinx/locale/mk/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 68834 -> 69004 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 71623 -> 71793 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 70058 -> 70207 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 482 +++++++++--------- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 70929 -> 71080 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 482 +++++++++--------- sphinx/locale/pt/LC_MESSAGES/sphinx.mo | Bin 68922 -> 69092 bytes sphinx/locale/pt/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 69455 -> 69636 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 482 +++++++++--------- sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo | Bin 69466 -> 69636 bytes sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/ro/LC_MESSAGES/sphinx.mo | Bin 69463 -> 69633 bytes sphinx/locale/ro/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 73462 -> 73636 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 482 +++++++++--------- sphinx/locale/si/LC_MESSAGES/sphinx.mo | Bin 69781 -> 69951 bytes sphinx/locale/si/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 69783 -> 69951 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 482 +++++++++--------- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 69061 -> 69231 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/sr/LC_MESSAGES/sphinx.mo | Bin 69258 -> 69428 bytes sphinx/locale/sr/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo | Bin 69013 -> 69183 bytes sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo | Bin 69008 -> 69178 bytes sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 68875 -> 69045 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/ta/LC_MESSAGES/sphinx.mo | Bin 68991 -> 69161 bytes sphinx/locale/ta/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 69419 -> 69591 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 482 +++++++++--------- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 70781 -> 70951 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/ur/LC_MESSAGES/sphinx.mo | Bin 68916 -> 69086 bytes sphinx/locale/ur/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/vi/LC_MESSAGES/sphinx.mo | Bin 69487 -> 69657 bytes sphinx/locale/vi/LC_MESSAGES/sphinx.po | 480 +++++++++--------- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 67686 -> 67800 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 488 +++++++++--------- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 68771 -> 68932 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 482 +++++++++--------- 102 files changed, 12728 insertions(+), 11812 deletions(-) diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.mo b/sphinx/locale/ar/LC_MESSAGES/sphinx.mo index a7a92f941ec7148b32e213cb9406ce26a3bc582c..e3028816ba32894a388fc2d37c774542addb95dc 100644 GIT binary patch delta 11413 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 bJ811#`re-U<$1*$e9BM!T2_<wMAi5oEENsA delta 11206 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 G!2bao?cA*Z diff --git a/sphinx/locale/ar/LC_MESSAGES/sphinx.po b/sphinx/locale/ar/LC_MESSAGES/sphinx.po index 27f53d15c..2452773d1 100644 --- a/sphinx/locale/ar/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ar/LC_MESSAGES/sphinx.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: Mohammed Shannaq <sam@ms.per.jo>\n" "Language-Team: Arabic (http://www.transifex.com/sphinx-doc/sphinx-1/language/ar/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -122,7 +122,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -130,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -587,44 +587,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -643,19 +643,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -664,76 +664,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "بناء [%s]" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -752,7 +752,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -805,7 +805,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -966,24 +966,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1003,28 +1003,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1036,28 +1036,28 @@ msgstr "" msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1120,8 +1120,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1498,13 +1498,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1512,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1542,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1571,131 +1571,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1767,17 +1767,17 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1807,12 +1807,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "" @@ -1820,7 +1820,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "" @@ -1843,106 +1843,106 @@ msgstr "" msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "" @@ -1984,88 +1984,88 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2141,7 +2141,7 @@ msgstr "" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2201,21 +2201,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2235,6 +2235,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2260,22 +2261,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2419,38 +2420,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2468,7 +2469,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2478,14 +2479,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2495,23 +2496,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2530,31 +2531,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2574,26 +2575,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2649,29 +2650,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2679,39 +2680,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2747,17 +2748,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2772,25 +2773,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2868,6 +2869,7 @@ msgid "Warning" msgstr "" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "" @@ -2875,13 +2877,29 @@ msgstr "" msgid "Continued on next page" msgstr "يتبع في الصفحة التالية" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "" @@ -3018,13 +3036,13 @@ msgstr "الموضوع التالي" msgid "next chapter" msgstr "الفصل التالي" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3032,20 +3050,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3103,20 +3121,20 @@ msgstr "" msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3133,18 +3151,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3215,7 +3233,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3276,15 +3294,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3321,12 +3339,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3344,12 +3362,12 @@ msgstr "" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index 0e43532710fba32ad2471772915ac7d6be6bd8e5..ea16f1233dfffd6c279c0d20dc99675e2bdfff22 100644 GIT binary patch delta 11340 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 delta 11166 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 diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 910057eb5..897bc0d6b 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -130,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -587,44 +587,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -643,19 +643,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "বিল্টইন সমূহ" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "মডিউল লেভেল" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -664,76 +664,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -752,7 +752,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -805,7 +805,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -966,24 +966,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "(-" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1003,28 +1003,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1036,28 +1036,28 @@ msgstr "" msgid "Index" msgstr "ইনডেক্স" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "রিলিজ" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1120,8 +1120,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1498,13 +1498,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1512,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1542,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1571,131 +1571,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1767,17 +1767,17 @@ msgstr "লেখক:" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "প্যারামিটার" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "রিটার্নস" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "রিটার্ন টাইপ" @@ -1807,12 +1807,12 @@ msgstr "%s (C টাইপ)" msgid "%s (C variable)" msgstr "%s (C ভ্যারিয়েবল)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "ফাংশন" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "" @@ -1820,7 +1820,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "" @@ -1843,106 +1843,106 @@ msgstr "%s ভার্সনে পরিবর্তিত" msgid "Deprecated since version %s" msgstr "%s ভার্সন থেকে ডেপ্রিকেটেড" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "ক্লাস" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (বিল্ট-ইন ফাংশন)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s মেথড)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (ক্লাসে)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s এ্যট্রিবিউট)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (মডিউল)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "মেথড" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "ডাটা" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "এ্যট্রিবিউট" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "মডিউল" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "অপারেটর" msgid "object" msgstr "অবজেক্ট" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "এক্সেপশন" @@ -1984,88 +1984,88 @@ msgstr "" msgid "Raises" msgstr "রেইজেস" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s মডিউলে)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (বিল্ট-ইন ভ্যারিয়েবল)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (%s মডিউলে)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (বিল্ট-ইন ক্লাস)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (%s ক্লাসে)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s (%s.%s মেথড)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s (%s.%s স্ট্যাটিক মেথড)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s স্ট্যাটিক মেথড)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s ক্লাস মেথড)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s ক্লাস মেথড)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s এ্যট্রিবিউট)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "মডিউল সমূহ" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "ডেপ্রিকেটেড" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "ক্লাস মেথড" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "স্ট্যাটিক মেথড" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2141,7 +2141,7 @@ msgstr "অনুসন্ধান পাতা" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2201,21 +2201,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2235,6 +2235,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2260,22 +2261,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2419,38 +2420,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2468,7 +2469,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2478,14 +2479,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2495,23 +2496,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2530,31 +2531,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2574,26 +2575,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2649,29 +2650,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2679,39 +2680,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` এর উপনাম" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2747,17 +2748,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2772,25 +2773,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2868,6 +2869,7 @@ msgid "Warning" msgstr "সতর্কতা" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "পূর্ববর্তী পাতা হতে চলমান" @@ -2875,13 +2877,29 @@ msgstr "পূর্ববর্তী পাতা হতে চলমান" msgid "Continued on next page" msgstr "পরবর্তী পাতাতে চলমান" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "অনুসন্ধান" @@ -3018,13 +3036,13 @@ msgstr "পরবর্তী টপিক" msgid "next chapter" msgstr "পরবর্তী অধ্যায়" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "অনুসন্ধান করার জন্য অনুগ্রহপূর্বক জাভাস্ক্রিপ্ট \n সক্রিয় করুন।" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3032,20 +3050,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "এখান থেকে এই নথিগুলোতে আপনি অনুসন্ধান করতে পারবেন। \n আপনার কাঙ্ক্ষিত শব্দসমূহ নিচের বাক্সে লিখুন এবং \"অনুসন্ধান\" বাটনে ক্লিক করুন।\n উল্লেখ্য, সকল শব্দসমূহের উপস্থিতি নিয়ে অনুসন্ধান করা হবে। যেসব পাতায় সকল\n শব্দ নেই সেগুলো বাদ দেয়া হবে।" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "খুঁজুন" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "অনুসন্ধানের ফলাফল" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3103,20 +3121,20 @@ msgstr "এই সংজ্ঞার পার্মালিঙ্ক" msgid "Hide Search Matches" msgstr "অনুসন্ধানের ম্যাচগুলো লুকান" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3133,18 +3151,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3215,7 +3233,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3276,15 +3294,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3321,12 +3339,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3344,12 +3362,12 @@ msgstr "[ছবি]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index d0194dc4ba00cac1af5e785febacb36daf057511..6c7252806b6840b8e153f1f13a0ae0b4521459a2 100644 GIT binary patch delta 11336 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 Uul+xrF08nH-nHSC=(#NXzXMS9ga7~l delta 11168 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 LaJRR<Sm6JE`6l1k diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index fdaf2d372..16c5dd220 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -130,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -587,44 +587,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -643,19 +643,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Mòduls Interns" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Nivell de mòdul" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -664,76 +664,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -752,7 +752,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -805,7 +805,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -966,24 +966,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (a " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1003,28 +1003,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1036,28 +1036,28 @@ msgstr "" msgid "Index" msgstr "Índex" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Versió" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1120,8 +1120,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1498,13 +1498,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1512,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1542,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1571,131 +1571,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1767,17 +1767,17 @@ msgstr "Autor: " msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Paràmetres" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Retorna" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Tipus de retorn" @@ -1807,12 +1807,12 @@ msgstr "%s (tipus de C)" msgid "%s (C variable)" msgstr "%s (variable de C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "funció" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "membre" @@ -1820,7 +1820,7 @@ msgstr "membre" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "tipus" @@ -1843,106 +1843,106 @@ msgstr "Canviat a la versió %s" msgid "Deprecated since version %s" msgstr "Obsolet desde la versió %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "class" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funció interna)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (mètode %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (class)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (mòdul)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "mòdul" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "operador" msgid "object" msgstr "objecte" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "excepció" @@ -1984,88 +1984,88 @@ msgstr "" msgid "Raises" msgstr "Llença" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (al mòdul %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable interna)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (al mòdul %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (class a %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (mètode %s.%s)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (mètode estàtic %s.%s)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (mètode estàtic %s)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atribut %s.%s)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "mòduls" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Obsolet" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "mètode estàtic" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (obsolet)" @@ -2141,7 +2141,7 @@ msgstr "Pàgina de Cerca" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2201,21 +2201,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2235,6 +2235,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2260,22 +2261,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2419,38 +2420,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2468,7 +2469,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2478,14 +2479,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2495,23 +2496,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2530,31 +2531,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2574,26 +2575,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2649,29 +2650,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2679,39 +2680,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "àlies de :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2747,17 +2748,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2772,25 +2773,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2868,6 +2869,7 @@ msgid "Warning" msgstr "Avís" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "ve de la pàgina anterior" @@ -2875,13 +2877,29 @@ msgstr "ve de la pàgina anterior" msgid "Continued on next page" msgstr "Continua a la pàgina següent" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Cerca" @@ -3018,13 +3036,13 @@ msgstr "Tema següent" msgid "next chapter" msgstr "capítol següent" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Activa JavaScript per utilitzar la funcionalitat\nde cerca." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3032,20 +3050,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Des d'aquí pots fer cerques en aquests documents. Entra les \nparaules de la teva cerca i clica el botó \"cerca\". Tingues en compte\nque la cerca inclourà totes les paraules que posis. Les pàgines que no\ntenen totes les paraules no sortiràn." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "cerca" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Resultats de la Cerca" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3103,20 +3121,20 @@ msgstr "Link permanent a aquesta definició" msgid "Hide Search Matches" msgstr "Oculta Resultats de Cerca" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3133,18 +3151,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3215,7 +3233,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3276,15 +3294,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3321,12 +3339,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3344,12 +3362,12 @@ msgstr "[imatge]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.mo b/sphinx/locale/cak/LC_MESSAGES/sphinx.mo index c46e91bfa9f82e4daa39853a522c5e85ac9a5ab9..9d4e9846eb22b7d1e2be8bca99e012fcc3865180 100644 GIT binary patch delta 11333 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 delta 11163 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 WVDo`RdZoT+!Gd461@oSF+5ZCyTGT24 diff --git a/sphinx/locale/cak/LC_MESSAGES/sphinx.po b/sphinx/locale/cak/LC_MESSAGES/sphinx.po index 58849c062..0c652d72f 100644 --- a/sphinx/locale/cak/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cak/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-27 16:22+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" "Last-Translator: Julien Malard <julien.malard@mail.mcgill.ca>\n" "Language-Team: Kaqchikel (http://www.transifex.com/sphinx-doc/sphinx-1/language/cak/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -130,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -587,44 +587,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -643,19 +643,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -664,76 +664,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -752,7 +752,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -805,7 +805,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "tajin nutz'ib'aj" @@ -966,24 +966,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "(chupam" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1003,28 +1003,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1036,28 +1036,28 @@ msgstr "" msgid "Index" msgstr "Cholwuj" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1120,8 +1120,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1498,13 +1498,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1512,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1542,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1571,131 +1571,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1767,17 +1767,17 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Jalajöj" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1807,12 +1807,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "" @@ -1820,7 +1820,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "" @@ -1843,106 +1843,106 @@ msgstr "" msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "Ruwäch" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "" msgid "object" msgstr "wachinäq" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "" @@ -1984,88 +1984,88 @@ msgstr "Retal jalöj" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2141,7 +2141,7 @@ msgstr "" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2201,21 +2201,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2235,6 +2235,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2260,22 +2261,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2419,38 +2420,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2468,7 +2469,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2478,14 +2479,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2495,23 +2496,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2530,31 +2531,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2574,26 +2575,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "(chupam %s)" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2649,29 +2650,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2679,39 +2680,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2747,17 +2748,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2772,25 +2773,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2868,6 +2869,7 @@ msgid "Warning" msgstr "" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "" @@ -2875,13 +2877,29 @@ msgstr "" msgid "Continued on next page" msgstr "" +#: 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 "Ajilanïk" + +#: sphinx/templates/latex/sphinxmessages.sty_t:13 +msgid "page" +msgstr "" + #: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "" @@ -3018,13 +3036,13 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3032,20 +3050,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3103,20 +3121,20 @@ msgstr "" msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", pa" @@ -3133,18 +3151,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3215,7 +3233,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3276,15 +3294,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3321,12 +3339,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3344,12 +3362,12 @@ msgstr "[wachib'äl]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 5b35be9de961b5cde8106df2e9188154c0f36655..21483e91e315fe820fabdc90bede4bf137412907 100644 GIT binary patch delta 11341 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 a(MWgvxz|ejt_$9^@&B1aWIV&y2>&0<;PX)c delta 11175 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 diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index fe21d6ad5..ed2dbfe76 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\n" "MIME-Version: 1.0\n" @@ -123,7 +123,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -131,7 +131,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -139,7 +139,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -588,44 +588,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -644,19 +644,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Vestavěné funkce" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Úroveň modulu" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -665,76 +665,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -753,7 +753,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -806,7 +806,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -923,7 +923,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -967,24 +967,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (v " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1004,28 +1004,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1037,28 +1037,28 @@ msgstr "" msgid "Index" msgstr "Rejstřík" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Vydání" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1121,8 +1121,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1499,13 +1499,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1513,29 +1513,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1543,26 +1543,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1572,131 +1572,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1768,17 +1768,17 @@ msgstr "Autor: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametry" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Vrací" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Typ návratové hodnoty" @@ -1808,12 +1808,12 @@ msgstr "%s (C typ)" msgid "%s (C variable)" msgstr "%s (C proměnná)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "funkce" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "člen" @@ -1821,7 +1821,7 @@ msgstr "člen" msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "typ" @@ -1844,106 +1844,106 @@ msgstr "Změněno ve verzi %s" msgid "Deprecated since version %s" msgstr "Zastaralé od verze %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Vyvolá" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "třída" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (vestavěná funkce)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (třída)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globální proměnná nebo konstanta)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Argumenty" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1965,7 +1965,7 @@ msgstr "operátor" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "výjimka" @@ -1985,88 +1985,88 @@ msgstr "Proměnné" msgid "Raises" msgstr "Vyvolá" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (vestavěná proměnná)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (vestavěná třída)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (třída v %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (metoda %s.%s)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statická metoda %s.%s)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metoda %s)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (třídní metoda %s.%s)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (třídní metoda %s)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atribut %s.%s)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Rejstřík modulů Pythonu" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Zastaralé" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "třídní metoda" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "statická metoda" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (zastaralé)" @@ -2142,7 +2142,7 @@ msgstr "Vyhledávací stránka" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2202,21 +2202,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2236,6 +2236,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Symboly" @@ -2261,22 +2262,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2420,38 +2421,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2469,7 +2470,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2479,14 +2480,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2496,23 +2497,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[graf: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[graf]" @@ -2531,31 +2532,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2575,26 +2576,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(v %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2650,29 +2651,29 @@ msgstr "Přehled: kód modulu" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Všechny moduly s dostupným kódem</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2680,39 +2681,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "alias třídy :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2748,17 +2749,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2773,25 +2774,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2869,6 +2870,7 @@ msgid "Warning" msgstr "Varování" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "pokračujte na předchozí stránce" @@ -2876,13 +2878,29 @@ msgstr "pokračujte na předchozí stránce" msgid "Continued on next page" msgstr "Pokračujte na další stránce" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Vyhledávání" @@ -3019,13 +3037,13 @@ msgstr "Další téma" msgid "next chapter" msgstr "další kapitola" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Pro podporu vyhledávání aktivujte JavaScript." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3033,20 +3051,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Toto je vyhledávací stránka. Zadejte klíčová slova a klikněte na \"hledat\". \nVyhledávání automaticky hledá všechna slova, nebudou tedy nalezeny stránky obsahující jen některé z nich." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "hledat" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Výsledky vyhledávání" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3104,20 +3122,20 @@ msgstr "Trvalý odkaz na tuto definici" msgid "Hide Search Matches" msgstr "Skrýt výsledky vyhledávání" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Probíhá vyhledání" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Vyhledávání se připravuje..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Vyhledávání dokončeno, stránky odpovídající hledanému výrazu: %s." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", v " @@ -3134,18 +3152,18 @@ msgstr "Sbalit boční lištu" msgid "Contents" msgstr "Obsah" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3216,7 +3234,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3277,15 +3295,15 @@ msgstr "Permalink k této tabulce" msgid "Permalink to this code" msgstr "Permalink k tomuto kódu" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Permalink k tomuto obrázku" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3322,12 +3340,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3345,12 +3363,12 @@ msgstr "[obrázek]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo index c1d9c69b1744c16df6047dad0db5979bf55fb430..1132a9ea32fd94bce5c26448948f17f325911adc 100644 GIT binary patch delta 11344 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 QDsXGq^(KML;cCeL08rffZvX%Q delta 11166 zcmYM)33!c1`^WJ)nnV)W1lb5j5Q!i{5|P+RV_#xlYKgt2R5iA8w3ZfaZEaO;MT?@^ zSE!|pUA1;zYi)m2X;Djy+TZUl^IX@zSKof-p7We%X70IXLaz79La)sWygU~|y*@Gg z^GzXRO5vmuivItfo0W|DjPMp##3>2<&t=S7oXK}ms_+^8KP4IyLI3({#@rx2m}E>Q z@#gBrgyV}E#*CpqJjIydI2#8W<1yZ;bkZ>#6M1kNP9@$_)0k%1IL(-SI0L(4*ILFf zw%LGzcnQ7nHZn(ZAM2ny-56eBdSDa$6zkzdjKMM)#`rP5X-LDDjuuz}JD^@P7WLxg zSPa)-QQVHj@fZf<H4MOqs0n%1Hl_%MqCPL}#8px6Nyjj3g&~Y@`q2o&Ty*1P)IiHo zFWQ8DxZC;s5Vj+}jSa97%hd}fJ1)Qw;yhGlcVi@;LrvfTMxlRQ@*hE?0u8O8F6x2i z$hMlEs4sqq?21`|W$*%)#OGKZqsZ%KtcNx55o+R9>KjuSYhf>JfXe7nq&&>Z`s81Y zU+Kug0G1Pq?U6b%15g8fhB>$%RiEJv?S!hJ;=bs{F{n(<cl-*K*>6!>ycL<V+3S4n z)5v2?933HzthKN-aSpNw^A75ZJ5YPO56j|dq#n&<RL#_AY**R^HKE>^j3d#FYf#@m zh}xR7s4ckZp;3lL;Y>SFMbutaL#-qWD_~p4kr++95GiEy1FFg&puSi2Wn0~u*phf4 zs+PV-AN(2p@h~d0o?o5D10=g9lznK5?XedwLRIk#^v2*O97!yJ{A;@MpXRs>RZF+A zF#7TmUkpKxx`{;9R%_Ij^g$-(F~eynm6K4lkdHBV+cC76G3AI;P%rL++JfGw3`|62 za4Wj;0{Y<#)WCk4or~>6WvG4&yA_?Vn9hGc8in{^G_sxM?Sc<D=jcUz9IN6P)Smj1 zR}D}H)t`mROfG8g-*%jh%G65K%5OQkS{c)gxCBNszIj6poPpY_Z?Fq)L#;HjwcUaY z<Tf?U(I3a7COj3DfrI!u-a^X3bZ=vi^->Hb{uXsCw>ka$(Nl$v(=_7Hr>%W)B5ES( zPTT_Zc_-8!Pe5g69(Kh=s0=*9%J>3xLsrhV)!qODiL+7P?}e(3(b?o*DSMX=t>`n< z9xcOCxCM1gPC4E~-DrXBtQAlfR2_`PPRP+V<8ct~!0MRL-WGKa)E2HpW$b)=@~_4- zI`rb`4%QSbM%)sEus4>#VHko_FaYPGQu`%_;(90Eiz?bvSRS9C-skRUzn6?Y#0@+& z^ui{n40J(Nd0*6C4R+#DsEJNM4fF--1$kH;x1gRsjGFLS<i~^g6LrojcCtm=2sKVi z)VQ9`G_)6kFad|7UbF~@;wsdY8P(Yi+y%9=!B`Y$VlFO4O+1py)r88T-kXYgt{y4_ zZIORXKmJ4Qc+55$mFS2fs)3o9h@(+O_cd0<V@RDE7iVV}W}`B)3w27apzaOt?l$Fd z=q7H7{qS|<73Mg$!o*j&<aGYW(`Zh|f3X6V>0w`-iM-SFL#=oRR>Z4L9N5#wNvH{Q z!8$k=YvN|qJ#iQ3;}h(Qb9+&!_!M(JG}`yJd$}K9B0h#XUMJCwXE6nzqB2xH$DWe@ zSdw@gYUT4#6ZjFe(#NO?bm(KZrYGu{4nQ5#A?Q&Nd`=@CS7Ql0fhw*WI1TTizA%pI zYrs{g&woPI%0blLpK;<#PJ9bh1NTuWe~#0!CHqlN&-Ww$x_~14+jE+QDxNVIjWbZy z{tarP+p!iN#V9N?z^*VBbsVdqQd<W#;ZIQKe<zX*b04#?^FTY!7X!(^R=j}@rD{K_ z22Nlve1e)t_d)j01!GV***w&_U*WhBRpon8899TocooZIz^nG6N<zJ_IcfoeJT$c8 zNmvHwVFTQZ+QTQP40U|XPGAz2B3_32-gYdDCol~kqV~AjV4IOtEKJ-8Rg}#!6(?c_ zdbZGLO5=gkQGba2vHCVPp?@PP<@(8@)TN_R`mW;!3?jac$@mb%urim2CfW!aVlUM9 zmSH5Gw4Zy-9U4kWAcr~v6R<Qk#&GO|s)4ai{1NK8<rs(Cunu0w5R84pZcR<BMx2FS zI0`lJI84O37^U;SmqsNzE~EA=aJa37WYo&*q9!;B-S{ag^&3%Ja{x8b$EcNuzG?p; z6OVdtH&l&HL0?>en%Gwu%lPIbjiUGrRRh5z?8*``n7A`4l>;3oql$DXa+1u?xCE=d zWw+o6YQ^5%%lf`QcEKpro{zw)_#Jwb>Wefqz;o0DN{+NY3o=kC9)QU>6ZQNaEQY_K z?t_1k>)#X~W&g@H1T}$8sEOvIKVHG&_!matOQXqu0*z9m?cOv&O&|yT@Lf#953nWf zK^A9<jj<V<ilM~w(FfO}Cbj{i@D~in-%zLODQY5h$J&K79ZUXG=@>|dPQhZ-gMXl2 zknpzMtCum1cqHl+e1xs=Bx+A9jI*h(ib`!=)SeH)K%D3}3+oUs#!`6RL!%;%$EZ}t zjJJ1vbF57K4wl8WSQ?LDNxY4kU=bFe7pjny$-b!Knu#58hhxM9o57)&O@BV>V)BH% zV=s&pRO&KND{GAbxCr&a)fkWGP%HC!*Pe<}sFkFnj#Vd&#P?7WUV_TpcGT%Qg=O)% zjXlOa(cVy5n8^pNQ3HR1IzCIWCLY8X^qyoh6^F`1Ta3mbPCOm;+zRx@eW)5Zf-1i2 zsG@v^89M*vCfnla>DV9jf+47x&cqhD&iVWWmLv9=Vkce+8xvQ@6dZ{vvTx7}H=!1k zk4d->Gw~@lWPH=`JzG?hu>$cyR0{t_4HWpky?ByPaW+=QTvP^@p)R6r7>Bn|6AGJZ zC(;e|z5b}rr#W#RdVJ_OMZ*^_U=UuzBKQFHg+kMus~L418>1V?VH;e8%GhmGQHD;p z&sV|L#4n>#|0$}*R-?w-Hl6&3(D<1St^5q?xV%73B=7^f(o(1tHbqUSBPxX+tb}_| zsl9`$m6#80X1bz3aW3kfcn4LyAEPF+>O=Ccj;(a)syyyI_#4I&KSUKz>5uGQrlM}b z4AhE-p(Z{VmC4oE2iKvtFl>hHuZBg4Yhp!ggz5O2hlZQRa;%Sgu`v41w8tt0HS;Q{ z3Dw7V9DrK+ET{iR>_mJ8>te<%n~5>VRbkelA12MV8O}h(o~AS^(`bi!;RLLPt5L`5 z9BPG+aW1;&ST`Z>G;Kb%8N7_$iT_0vWrt7fO5Z?ze;y{_Htc~nusY+LW}n()GY*xS zJk(0hqArj^jH*<YMIEOMOu_o7fpXCsXQKxA46ER7=kt50V;uCEwHlTn&Mt`A|A92Z z=$MA8$|b1dvI>=vLr(uA3?(i!&puxQ8xdE=wm1wm;hk6uFJT6j{M>F?C)C!ygL=<Y zjL`XCKtn6pfSTD+)RlS-^`O^$TZG|w$Hg^^%*D7D+Kg>R{Yv%{>Q}M@7u#RSK3c*6 z^j}+Qe<f?a<kS$~MEy#(`f~C=h8HzkVSgvP2L}_Ut+WGvh5D6jK5`Y9TVLCs?;}@n zixKa{uK3|<oBHb*NL+l4-I5qo2IH^}w!@k@3!C6CYuNvKG(x|z7f3d$D&In1^q`98 zebkHAqW1a>Dl-?cDBeRIN3XT^7)N3NaXbcMDi*=U&gX5MxYt_puZv(X9jbu|7=m*# z2v=fR+=v?J4C+NUP!oNKZghQXe<d4(4Ty75@7v^f81>%YF&rOaBnErFvlEENC_3t3 z1a?NP;0@>V@mPg;HtLJpF%^HsGFbFKwuX|hJaJ3hjKi@8R$gZ(-V0TPgRvKSM$k}7 zPhb+Bbqvh2Ka}cWDE;qYW&9j9z+TM3o2ZGmUT-J#DyoQ=pc^-$GIbig@G=JBHRQ(h zm<Ken=y-;DFmr>w<6Aq9LLI9ms9M>MstxnK-E%+G7L~>{tdFXh(Wr$jMrHIXOvbI~ z#=kLu@lElKc7<gflTj(nLZxZ|>NpNXfBXP7z+A_Cj3&N<>FC;ItGqUb5s$zaoQ@rF zEfz&@_Q!|uO*jp`xHLv$JnBAZges<<*c6vwFT8=l*kX%aVRvjyoP#=6E3i4<!3eDV zgI!1mROVj66zq?lVl)=e(2Txw+=*$#$5AyA_@iAxJ;xl>4LKS0!mm+VunyDlI4Xm| z`8L&wsAJd$HE<6Mb@5|3pZrJBv0|&;f}N<8oj?`KP1F^87xi4qHv8kW4OS)Ygxb?7 zPX7;1|4t{qi+bO`SQ>-3+e}qO74@6jJ@)ubp`#lepJOyWa4f#VW~MrJp}#Te7%oDk z_5fDLtEerE*l8zR4$BY^z}N9T%)|$%t*gDu*+LHuo%8OFgHQwHVjO;n920X8i{o+B zKz}%&|AU%H^ln=Vso0gcwiC}q9ovPd@9)D9yy)n;Lqjic?Xi0qg-TgD)IjN20yD8B zc0+B&NQ}hUPP_*7y}eHV1=Nr6e^Co6^OOCRY)e$eHX=psF@Ms~9wzU#DI4TC6~pQO z+HnVJ&(5GOkejH9JwdIg=+8EjF{l(LqMonk#MxMmI0wt)6fF4t|7sd~;WqTaL#P*? zKxN=}^u@cVyZ<p3MxS5ogo986RYmnTKuxSEY9c*Rr)(&8z=>E2&!9i`XCA15u6_0k z0jQcNg$WpsI-VVHC=S57cnURe*nYdRc+_((F&BHHCVmpN_ZLwU{0H^iQ!F_DK?iJg z$DoSmZLEZ+um%=7X#Z}PigCpKQO9ovw!y7941*8Zj7-3?#9v?x?nI^hD!S4Cu>HkF z!eRDb1J0tO72d@5m~q73U^B4-@j29SDs<Ey(-_oVj>n3))QR^w@n5J3gdMYg@JPd& z#JL!VYjHmQc#Qn_rP2An_K(l`sMM7>ZfoHK$2sUl|L5q&#h8NIQ5kxGs{TqR>?vu0 zTKOwj2PdEwx)uE}@}%90avmDqbR=M9Ou_){f${hnmcUO?#km?k#&xLYvrgFoN1#5R ziA8WOYOj}}R=gTD@Mb68h03_+D2?ef+^6l2*ELv$_$F4zs57>BTB1^&gP}MLLvSJ1 z!nLS-;W}!dmwvSi3B*psQK$(IN4<A3=IHz%qme~N%2_+mIMj+~qh7QURRim=7oJ94 z(Y4OmJG~QXg}E4vlN>+BV#HsfCcFt_aX+dU?_nh4oAC4Yg-IC22d%L<zKSY34>rKX z*cC6KGF1D5oxrPDig+sOd&^P9_XDQkdDIq%U388$YHQ-LriVrnjZ_?j8TbV@#dA&^ z`+xSwY7RD`e<3R6zoRnezGPE6&~ZKn(SHb&@jQlM=w;`gz=p&v(WAYXNh1<>p;mGp zqwz6DV8j)>(j*KgZi7ncKqnrHdTtKteprKb@C2$xiv4D{raV?7PDU^6_Z#`wz^~Gg zh?7uTupV^*9Y*chV^l4ay=qsUfSO=GbmK%+>c2#7&1Td@uc21{0+TT8cl+KZs2Y3o zcaOayr_!OB&Bj>Vg+=jCEQ3!`D=T%)t|SwcsSb|Au>$c7?1vk036{KWw;&(Ai0`3_ z^dWY^!k$0up7+M8bS%WucmOrP4b%jD|Fk~~;xLZ5J!)^qp`Krds`jH;60c%sbltFj zW$TKXz*ne=u0ntG9HF7qoki{89ZW#Ko3<uWP!nj4emE4<a5T2Wb@&$Q{{*Cr<)Uii zee}WksEI8_ZSD7{tvQMfbpHRKp_wH7Wml4lIt?ALDSm)FXilPD5OLdXRSneM_Qfn5 zi>+`M>V2ViY^tNNDsdImo_EJU99|&%KY@m-^&?cu4`4<71C{EcckNxDj+KdrVOd;= zO8que$}gZM_!#xR68CH-+hH|g4|c@w91H(V1{vS<pplJhusps%rLO!xHgyT8mDR%l z{0Q~J`52D}P%C?YIu!x;?LsPHB5@Y#l#N79cor&i-=Qa##$Fm)(O;-I<bh3LP0S>2 zh^meEu@Wx9ns@-qq1Qv3sW?<7+M*^h#EGY44Dkx|#(fx$M;@~O#c5opLsj_<bpw|B z*FM-2m5F|+7Ys&CbOyG-|2UsNM@_{0k#n_TW8x%C!CX{LtU*m+BPx^mkH~)#jeT@z zrBAUTHhgT0YBFkK2Qd==Mhz7B#9ll}s5l!{8@X5#mths$hN_`ks0oEVwG-)v`d)tz z4LvZ;>BvJJvs0)UUczAf3ya`$)bsw&?3UEPG~yQM#>v<Qm!mTF5Th{axqUtbTNAfJ zW!|%hMll+BsDbxl2p&bP{4(me_`a||RKidzt$><fHflmWQ5k$6RU?N`nSF#cF~PVB zCejDB72`2f=YJ}V5_Bv;O=O)D|AbokIpjfe6IGlqP{kALauwWYbupQ^5o$%FP!s<U z3u7Mk!5=UJ%M@}IEHn*+8Q(Odq4S=N={N@6xB=_qNz{wNUvd@P4`omjs*RdZYt%8! zMXme`r++_oBEE-pv6+{vAQMw@Jn;_nV|-KJ+f|U_W~eRbj7o71>V-2<=Y0!C;|<gb z{d`;nzmiRK+>5j5?^)PYu!VQAJ8>ajS3yzsL@jhI>if&kqr3hW8a?nnR>$^!u7YFp z9_kDEsFhyD(iq_HDmV=Zs2?hssAJX)Rs9pt8yBG7zZ7*E4mqDcMIGaaA}&usBfW^N zf$pdehGQ6hjJ~)UbzIh?GIHAKe<{FjMF8sgGS~=Hu`P~4P51!T!W)=@6$0&+^$x6O z_jWoR+S56xB3X`F$u?ARp2bpl7xi3FkS)TpdGQJBVhfGvH)qH0oH+@5+U2dzE*hP8 z|MITDyido)1m@*Wt6$W=dX=O!ceSMSl<IQ|FL3)NCA*VS(`%&WB`z2rH)reaet8Ld U@}igBzg&{XN4oOfcriTqf3Gyw_W%F@ diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po index 1af63d14f..bc00d3b12 100644 --- a/sphinx/locale/cy/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" "MIME-Version: 1.0\n" @@ -123,7 +123,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -131,7 +131,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -139,7 +139,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -588,44 +588,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -644,19 +644,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Lefel modiwl" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -665,76 +665,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -753,7 +753,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -806,7 +806,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -923,7 +923,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -967,24 +967,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (yn " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1004,28 +1004,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1037,28 +1037,28 @@ msgstr "" msgid "Index" msgstr "Indecs" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Rhyddhad" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1121,8 +1121,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1499,13 +1499,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1513,29 +1513,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1543,26 +1543,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1572,131 +1572,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1768,17 +1768,17 @@ msgstr "Awdur:" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Paramedrau" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1808,12 +1808,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "ffwythiant" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "aelod" @@ -1821,7 +1821,7 @@ msgstr "aelod" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "" @@ -1844,106 +1844,106 @@ msgstr "Wedi newid yn fersiwn %s" msgid "Deprecated since version %s" msgstr "Dibrisiwyd ers fersiwn %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (newidyn byd-eang neu cysonyn)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "modiwl" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1965,7 +1965,7 @@ msgstr "gweithredydd" msgid "object" msgstr "gwrthrych" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "" @@ -1985,88 +1985,88 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2142,7 +2142,7 @@ msgstr "Tudalen Chwilio" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2202,21 +2202,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2236,6 +2236,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Symbolau" @@ -2261,22 +2262,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2420,38 +2421,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2469,7 +2470,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2479,14 +2480,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2496,23 +2497,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[graff: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[graff]" @@ -2531,31 +2532,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2575,26 +2576,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(yn %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2650,29 +2651,29 @@ msgstr "Trosolwg: cod y modiwl" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Holl fodiwlau lle mae'r cod ar gael</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2680,39 +2681,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2748,17 +2749,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2773,25 +2774,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2869,6 +2870,7 @@ msgid "Warning" msgstr "Rhybudd" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "wedi'i barhau o'r tudalen blaenorol" @@ -2876,13 +2878,29 @@ msgstr "wedi'i barhau o'r tudalen blaenorol" msgid "Continued on next page" msgstr "Yn parhau ar y tudalen nesaf" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Chwilio" @@ -3019,13 +3037,13 @@ msgstr "Pwnc nesaf" msgid "next chapter" msgstr "pennod nesaf" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Trwoch JavaScript ymlaen i alluogi'r chwilio." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3033,20 +3051,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "O'r fan hon gallwch chwilio'r dogfennau hyn. Rhowch eich geiriau chwilio yn y blwch isod a chliciwch \"chwilio\". Nodwch fod y ffwythiant chwilio yn chwilio am bob un o'r geiriau yn awtomatig. Ni fydd dudalennau sy'n cynnwys llai o eiriau yn ymddangos yn y rhestr canlyniadau." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "chwilio" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Canlyniadau chwilio" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3104,20 +3122,20 @@ msgstr "Permalink i'r diffiniad hwn" msgid "Hide Search Matches" msgstr "Cuddio Canlyniadau Chwilio" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Yn chwilio" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Paratoi chwilio..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Chwiliad wedi gorffen, wedi ffeindio %s tudalen(nau) yn cyfateb a'r ymholiad chwilio." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", yn " @@ -3134,18 +3152,18 @@ msgstr "Cyfangu'r bar ochr" msgid "Contents" msgstr "Cynnwys" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3216,7 +3234,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3277,15 +3295,15 @@ msgstr "Permalink i'r tabl hwn" msgid "Permalink to this code" msgstr "Permalink i'r cod hwn" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Permalink i'r ddelwedd hon" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "Permalink i'r toctree hwn" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3322,12 +3340,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3345,12 +3363,12 @@ msgstr "[delwedd]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index f5793a0b2f5fcca54e85efef77515aa3438b4581..d898116991aa20087f3d66a532e7f2e1dda688bb 100644 GIT binary patch delta 11419 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 delta 11204 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 RVL3Zyj`PTQ@nTfq{{c2h>23f3 diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 0d294f459..b7d6f2a4e 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: Jakob Lykke Andersen <jakob@caput.dk>\n" "Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -124,7 +124,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -132,7 +132,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -140,7 +140,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -589,44 +589,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -645,19 +645,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Indbyggede" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Modulniveau" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -666,76 +666,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "ugyldig css_file: %r, ignoreret" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Beskedkatalogerne er i %(outdir)s." -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "læser skabeloner ..." -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "skriver beskedkataloger ..." @@ -754,7 +754,7 @@ msgstr "HTML-siderne er i %(outdir)s." msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -807,7 +807,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -924,7 +924,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -968,24 +968,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (i " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1005,28 +1005,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1038,28 +1038,28 @@ msgstr "" msgid "Index" msgstr "Indeks" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Udgave" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1122,8 +1122,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1500,13 +1500,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1514,29 +1514,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1544,26 +1544,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1573,131 +1573,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1769,17 +1769,17 @@ msgstr "Forfatter: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametre" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Returnerer" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Returtype" @@ -1809,12 +1809,12 @@ msgstr "%s (C-type)" msgid "%s (C variable)" msgstr "%s (C-variabel)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "funktion" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "medlem" @@ -1822,7 +1822,7 @@ msgstr "medlem" msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "type" @@ -1845,106 +1845,106 @@ msgstr "Ændret i version %s" msgid "Deprecated since version %s" msgstr "Forældet siden version %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "Template-parametre" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Kaster" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "optæl" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "optælling" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (indbygget funktion)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (metode i %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (klasse)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut i %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Parametre" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "metode" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1966,7 +1966,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "undtagelse" @@ -1986,88 +1986,88 @@ msgstr "Variable" msgid "Raises" msgstr "Rejser" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modulet %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (indbygget variabel)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (i modulet %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (indbygget klasse)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (metode i %s.%s)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statisk metode i %s.%s)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statisk metode i %s)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (klassemetode i %s.%s)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassemetode i %s)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (attribut i %s.%s)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Python-modulindeks" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Forældet" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (forældet)" @@ -2143,7 +2143,7 @@ msgstr "Søgeside" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2203,21 +2203,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2237,6 +2237,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Symboler" @@ -2262,22 +2263,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2421,38 +2422,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2470,7 +2471,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2480,14 +2481,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2497,23 +2498,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[graf: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[graf]" @@ -2532,31 +2533,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Permalink til denne ligning" @@ -2576,26 +2577,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(i %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2651,29 +2652,29 @@ msgstr "Oversigt: modulkode" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Alle moduler, der er kode tilgængelig for</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2681,39 +2682,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "alias for :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2749,17 +2750,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2774,25 +2775,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2870,6 +2871,7 @@ msgid "Warning" msgstr "Advarsel" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "fortsat fra forrige side" @@ -2877,13 +2879,29 @@ msgstr "fortsat fra forrige side" msgid "Continued on next page" msgstr "Fortsættes på næste side" +#: 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 "side" + #: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Søg" @@ -3020,13 +3038,13 @@ msgstr "Næste emne" msgid "next chapter" msgstr "næste kapitel" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Aktivér venligst JavaScript for at aktivere\n søgefunktionalitet." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3034,20 +3052,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Her fra kan du søge i disse dokumenter. Indtast dine søgeord\n i boksen nedenfor og klik på \"søg\". Bemærk at søgefunktionen\n automatisk vil søge på alle ordene. Sider, der indeholder\n færre ord, vil ikke indgå i resultaterne." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "søg" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Søgeresultater" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3105,20 +3123,20 @@ msgstr "Permalink til denne definition" msgid "Hide Search Matches" msgstr "Skjul søgeresultater" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Søger" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Forbereder søgning..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Søgning færdig, fandt %s sider der matcher søgeforespørgslen." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", i" @@ -3135,18 +3153,18 @@ msgstr "Sammenfold sidebjælke" msgid "Contents" msgstr "Indhold" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3217,7 +3235,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3278,15 +3296,15 @@ msgstr "Permahenvisning til denne tabel" msgid "Permalink to this code" msgstr "Permahenvisning til denne kode" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Permahenvisning til dette billede" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "Permahenvisning til dette toctree" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3323,12 +3341,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3346,12 +3364,12 @@ msgstr "[billede]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index e66c81a9a2c05bab8935d5baf6c89b31964d4a31..4843d382103ca14309a677fc882c36f4be4dae29 100644 GIT binary patch delta 11400 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 YSh=&#_Qap+#`ttEE*V?Q6pE|-4-3}?8UO$Q delta 11203 zcmYM&2YilK|HtujBatCP%tUZoNr*&(BqT)$wfCmBASL!=mRo8(Ew!H-wTeCzH7ZoK z_9)dVRkfl#R!h~MMfrceIoIp;?@PVU@4Bx0T<84G@0`Sa>(hK+uE^)P6q4^_!+#s| z7!!_DiYWU3|Ng3E%p$@&7>U!O`QK&CCY-}(5@NW=_3x?}Q=IGD;*7aXd_3Nm2E;q7 z8dD74R5NBA*NY_>GaTpPAY(knE0K#_7>-qVa5{cS{7sTEO|X6qV~*i$?1Eit8pFHI zb_~EP=!N%?F`6e>3*E`a(1q!ajc@_h!OK_{OQ#s)%ll0|8a`ZTh83_qs-y9!j@Muz z`~nN&J}iu<FbMy^0{9FypnPu`<BuVz`=y*X7S&HO7R44A%==9`jX)fQZk&pG(Hc}o zU!yM`a_;|xZHez;T})%T>Ts&#QVb@}MrHO8hT=uk0G?tP`qd`?#c5Qap&8UhJ<t?c zR?`FZ!I{Xan6+3MFJTFMjpZ?nyzaz0SPlP14Ll~*nEY51dtzNwMpq%_VLneK|7u*| zLPIRTbV9HlQb(pg>P3sNH*Q1KXR&&AKryJeFS>CYDpN}w|BK4(X4DezLB?#3IQPBN zJjO(EAvn!i6H5{IMkZmhP#@fnTH9k-2G1e&XkMUdrdoYF)6S>?^}^~n8r}E>>hs4@ zOOu0Ig1<a8O4G>Sz`iIFwU%+HnKZ--*xGS4mLy(=6tejiRpn1npNoClR(AtzPCNir zOJAWk9z{Pqfy%7sg41}4WY>hS4vn!L_Qd6=Dt?1r7}SU@iA9h<rVD>H#nq@<x`+AE zhfaJj7}@G36jfU-QA^SX8JNcmr=e6%LDj-;EQ|LXLz);<jyM6;ac9&L^g?A|GAe_6 z(2bYS7vG>>?5okaSWZ-iQk&VO=!k{1|I=yY;l@~GIn8^yH`wQxkN7mk;(64X`jA(> zpcd+SLsVu)q1OIA$9bqseU6&>9Y<FSW4aO-!IHe+3{wMVqt<F8cE-J^nTEEsOOS$` zrlu+S;Y8GcKSX8VI1a`;NI95yTG?&A3WJC@qqgN<=lT!miQ&RI8d2!o+ICz8HIQT{ zZic$w5w*sXP?=ebU2r)n1Ak*>e1ke6E4Q)LUKaz1+n_$*6IB~y+mL^y?0qh1MvG8u zv>L<l8`L&A>-Z3Lq6M_IRzMw4wJ-uZB3s)`#0=bzRWZ7qE$Z&5CHx$fvESN}e>MK$ zf;ukQ-kN}gh?`>|_QE1K6oYXZ7Qlt5)P9B`xXp==po;b^mdBT<{@fkx=c=POaa|7$ zb=U}%fzGHZ?~7WiK~6jdHPA_@7k!HAAR7zgH>l@Npaz_S{CF^bqV{=YM_aUMsP{BS zz1P!;hSnkjqj5N@qvbdR*Q1Wiuuk^Hol!FzgavU9j>1)_frnDL8c-Qjzlo^l>Yy^v z8u??=`HR}|n7uSAaUqPT8aBWxI2KiO>o68iA$4k8?46<529=S6s9kamb#8dQV^bc5 zZsO*cj)Rdd%xP?aRl0G=Y5z~8(Uc3nU<EAQ-FDmn>C>d6X1pIG@rDxz^ssR}Y5<+F z7LLax+=)6T9^evuiG6WlPYM-Z;V2J{cD?Lc{(yOjPocKg8FXU~Cg3YnhN||qyQCkM zAfAAl`C`-ncA;ka0yTj4eeBZoKyB0hsBM~w9u>hSG%Df-EP}tHit9E`$A_p7OkntW z;d<2l?@+aJ9JTi6o%o6q-$B*D6I9Ay;|y%hdeqVL>EvGrP-s89PaC3&XB?Kq*{EvY zh#KfVtcgEk82b0OGmJoO$2e4KYoP}GF>3!GK$2meU_<OQz`p0x0pwpZ-p&Q3>IYN} z{E9vCC2An=WZ2&e#-UEK#i)J1)^P`_%8#Hjavme_2A0PH@7jYZ9@Sq{)C4j-G&JKW zSQ-~&UEGOU!<VQGbr@&|Fa^VjSED|+56j@MSOcG-);MmE%}65VCr(2ZWm8PV$(Vwk zZ)h~8@zlAHnrVNmzK4ytz5|tV{bW(<l2Ivr-*Gzz65qt?_za6;WeyJwG!5%vPt@mD zV<?`n_dVu54W%T2O<f$Lu@u(FV%P^&1LK`|7V5b*7=?SW7T&~Qj2LE@CJEz+8)7~j zgL?4<tbz+MO#A-`jY?d&idwUP;kFj4qh?+kHNY|G#s#R<??5fhkEnsZK+Qa4g#AUP zBC6l6s2ZDwKDZP$u>WEN?>A>?6vTf}H4rq?&a4Us5qCnRa)9GhRFSSic9J=YD>3$8 zb_q_RX6(hetk3&lXADEF`ACe#E$C6IFVoNqUZVz3Vzm8Pkb+8af2@vkP|qL6LU<i@ z9y~{me^Ypj{U=){Y5-rO2D%&l@ER7zyI36ajwS!mG{VQ)wP}PJKyUQL_pt_kgw63V zGC5OdoXyyW7(%=Ry>Sz2VB0YazsF*D9kr`op$1ZWyq!qn@#H^|3j?^IU9bZ6;4M@K z(eK%{dK-%pk4Ei+S=a*4pw_g)1e@wuRBCIZ);tpfaI)iEtVO&6!|^u{jYt|VP^m6E z(Vq29u`+QMmcdO}3QuAQyoVZ~KNC=gDkNpHFRHlaU<cgqSbUPr;1F!X_1&n0$rGGq z4~zs<>QYcMYl#JLIjX}ASP?IxX6F6A-4)@enIxmORYwfPf1?Jx5|z1qsNHoI%iwDp zdyIRsJ)s(618%fLz4&9)_F08VcpS^3*A$znC{!j|V@b?(;u)yt)}j|4L)E}ZRPo(J z73DveqWxcPsx6)#j{Q&_WTHko2b<wm=l&ZkN9;Y#4!jc9C$5SKI2u)C8!;b#jhfJI zjK^cx0AFD}-f!yt+ZNSStU!DmmBL4;7X^G^51x2b+y*P-C{zYkqYk3I7=?FG11kEV z9Y|Ny=lY@UPj}*M^mudOEDayLgn{@6`r}j72l7mJj%L($tdDM-fUR&jDr5IhMHw=~ zJ|BZEiQh)0egUe+HlW_OcLw<nrg4-Dn)!Luc6oyuNWe#Srs1d*HbxDo11g0ctb~VA zslAV?m9jH!X1bss@hH?ek%cPW|DXo4ekS?Xg*{x*QF+>V@H$2iKSLEysabX{6HzB& z3Tj3}Q3Icf%H#&@gIiHcSai0%9*6$KNf?P~n2ZBGG~6`SU@9KL{OB{sZmVF_$YW3g zO2vxUA2sv2&h=f`k@y<c#+11>6XTGh!fZufjGt#SoPvryjcHV-(H7O=B#grisBLu- zHNzLU5Z&{wUn6~*R{yaXyo&D-KSvd1`;YBRhoL^d7^877cE{UTmG_$_3+%R;fJ#j^ zYNk1;10)Y`RVvG%wo?iwU@GcGqtFZIp<b{EWAKo3{~>A{2QIS4VG-gsxiRZMfJRX+ zOh;AaO4N2)kIKkT&h@`BggDP)`+N~hBd(0CaVToQ2e2ky!4xd<iCwaesHM$9_46SX z*ZyBhLo?Zq8rjdNBlQo|gZY-&A}of7TpY8=Sj^+4He)lF*{@``qrQ@TYlZzv_V`L( z!1Ld(vR}!bUd^r{-uD^(q4yf{KaP${t+n6DF2+H`1wOYg9E<u&b}n)hnEmVQ&-bS5 zImL(<U>EGQ!KQu}`V-$oEy-h4247$;tnh^`%0AeLc*z&6e;pdvxu652{6@P34INvd zil;NGBM++M^{D;31+@(iVKF?9LHGa*plg$@_CWL_4oBUOL=7})6Zuz1X<SeZbi{%< z7z1$<mdDu`jN4Eh9d<m4ZsHtli?6UQw%Tm_n}=G;b*QEN4ol-j$5$R2#kml^#bzJ@ z6?eh_9EPd^560j;48whxh&iYZL%y^%R24Pg7Pu2fU=qe`wKGmf72z=KiJq}El+p_r zkN<NF$+ka~>Z4xx5vrrLPJ9`A6Td*stlKs_pb@BeJ-Trp>Y%xTdhu-x#78#vm^|C< zHu6I~*aD-llVcWYTdhac%J=AlzF*m;3c*O?@>m0#p=xF->bVW5+SrEG@kex{YljBP z`j@4l2Wns$Y=!DzIO<GaggOsapayu*xqsa85$dE2{o0=CNti@D9E;+5RB`XeW_TS7 zVm#~P&HGIn4UM!3>H}?2=fS(EVw#4H@hJAhkZ)`ik3bD@GS<iG*a%NxQ!M_i?WZp) z^^;KV`2Z7eE_w>lI6|Ws=AcIQ2y39%E?X0|Q8O6oI3JafuTULdKxOVKCS$(cwkYeM zo45xmbCXano{ljtYGXI~S5@ELWA}0RUb`LRF)!B}U>Y{YP@IW+;aZHv&8RiK<XkVb z&t5Nqg}L4YwHtb%&W|amOl`&z_;{bkzA$*d{jR4xmgL4H$K|Mu?846Y6IR5i12$uA zuqyGpr~_viYQXEUG~UI*7<kbB!ZHDMejLOQ{K-Qjh{hG?#sgGFUSSkgI%Gf47B!IW zsON{GQaK4Vv#(GozJguwHfmeHec1kZZ-&a?SPaJbr~!CBqfwm34%Em_qEeHC>hPI! z-}RmCAPmE}ULEyZOH>UFL=~?GHGu^ffrqd$-o^|}IASxl0=e!nr)X#m!;jjOwRRka zD$2Qz>rgY;kD5Ua7Qw%qIM4TX2@0Vy<VMXf&WY2oJaJpcF<4Ohe;Ey}-DXq<cA;Ky z#EH+LitZZfx!dTA&rxff=a|i4S@a@KL1m(@6L&(Lc-^r+W;*w`V($L`o`yO;>D>4Y z{fHl9G`>O2B>D&Ym27RSOS}nn{XUk%yg%9+iNsOFH8B9UpmxI^)I@$keJ%$*YTTuv z>UJHs#nTll5r2i%@CsJJB0t%pY=E)EgRvDZ!=ZQ=m60AN?0Mk9vcxM<sXv5nyoKrL zcar?8T8Eyr|LFVy+YyKTY)`NuSb_LkRL57aE4ohE8F#}-;w&d#=fuac4A-AvEiCqn zJ(Am_Kk-alf{TA){rl2LIBj422`Y8>P;1%mSNlunAoM04hHe~#3Ah-Qp%bWGk@t+< z6{S!!Peu)(8)~9UP_^?EwG_s4*1pIGD-#D|VNAh_*b0l_IMe{<;A~uodOq@;ePKJ) z{h=6$qfs?9&2g@Ce<>;htFZ-oHq)3v<2Ba7>F4eKJ%&|@pQ8p4eZkJCE`|{I#b6wb zHSq%s!vpApzhMFV9XsM9)PS4j*nY=gZ|(mLG#YXv@S>f02h<A(qEeNGs(~5U6Td_q z(ILOt-wWa}fVd?FVK>K2)Bq<q@hprWUXCip!x*al|0j)-T*!CH&Y&!632LE=t_^Ct z4aY9H4P!9qvK>Gz3@3gE^|`UA;+usva0_Z_ZlRXuK5FgXV3LPM{{Puuo$6qUp#ZTl zZgt{Um`q&biv9UM0+sSzsLVY@EmiHS)?ug@eTM2U8;jySbffn*`;}}Ydi23}X@uf3 z)J%4uGIAP=<3lWk{@3l1TnSYJ^_;jp>bXpe!f99wH=~x|4r*y$V;lzFu)C_x4f3xS z*XKeN?2chL3v~dkL#^3qR4u$j&D`sEJHR^VChmqx{Y2E#%*SH5A2svy7?1Z+{g(a1 z)>!jD$iJ$!4;M7DK^TF{upl17(s%|nv!|$;l)h;*RmHIxR^WODrsHf}iBGUPF1%&m z^CRl>zhY;+;h~{5s`IBkQpclGy&km`-=hZbJ4U1TZ99;vsE)g$o}Yt-a5I*`gV+f# zV-u|Lm)-Z1Q3IWge(2dwLo?ln+IFWf8gHVOrtlp*fLQb;Zh<wh6E?@W_%FPS>Zko( zTO0k+n|K^*U|Fc8{TQ`0Td=P7|4|w$Cck@jCM7YE_$_RVBajEpZd3<vP)ikd-wwDb zHYDzaEpQ$B;ByQ@*8`i`f~X0mVjy<FAnpHj8miWRp;DfWk$4iL@Hr-6nTPfS>xgBD zr=U{529@%|r~zI<_4f*u$>c|N!2PfT@j}PD*qry929ND`vh%S#@$cw`{!eV`3ZiCK z0Sn+rjKeIfh+DA;UPNu%hp34JKef9h2DOy^Q3KAxqWCF#RP8%xXhxS%v3X`w6p0N8 z6R|M9hm~+HCgCpBfFGkW75dy}qMl=S$8lJe`wLJL+lj?+?{o66j?Z#IRrwccH-!9c zi>C$VCvK1Gpc`tSldu`CLUni#%i$AL(S^RSziPQLfjAvi?MqPi*I+^1_=5b$)7Z-e z&GZ4*!=#tCsK%iNb^t^1ChA3bUfF{u0u?vJ$~X{9;3AB{ZK%v##ro*~j~z%WtU}z? zLqiYDKy|bYHNtb~gO^cjbrb#Z4eELS*Y?P*jx~szqZ_ATD_o1p*mDfS5^wDDiP)03 zB`Wit6*LOb*oI2=Q4GP8SQW2f02Vc_+-*}HHPdRSV(f_;P$nva3s5z35tZ5eE>~`? z)I=@aFw|1aN8aNx%W0^3zeEk>h!f|a_UQxEfJ`1&ZgCbu6;Cp1?b~2=?1Y-pOw^LC zLS^zO_Q4Za3ajOH<z}`G25A3xrJ?<vfyp=*-S{J>;vH0GV)MCjw^br)Ky5Js`=Pes zOw`PGIM=UYM`B+uSMFD`y)cRRQ=EwB(3kg{j^3`^YV3td^$1jovrrvwLhbkSSQ7p6 z+ZjgTUg8#b5CeT&xnIeiLe)%PUsvu|vg1)jc@8zv$EXa2`?-uqCsaKe-ElB#&5xtD zjq$f1NJP!FJ1T`!QM=(Y%!_+a&mTa&=s9X>3KwwYo`7Mf-S9T*{zz0U%qigV<Tkc) zK{asNx$!4z1_c7_T9w0c#FbGQY2{oWk6MZ;sOJ}A8g9bY_z*SV`hl+8-y8a13h^@3 zlARAswQHL<$adt9#ko-mHPR&1z}jLsW}sd;4ON7TgR(0{e;JWyWcvJ}hkMVza5yG= zYMZ2z*}n|A5thAsdTK$xsxk33+;Q>A303FkU+VUWukMadOs<wVzsk~L<=XWcm_A}a zhP!FY=8Zeob-$GnJ96NV%#5+UQu}B2$`};eXGmst#?m`c^ZOqjn0?`JPRZ=^*CI+} P@0>o~wSAK7R?z<e^MvEA diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index 343a993ff..96b24539d 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: Lukas Prokop <admin@lukas-prokop.at>\n" "Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -125,7 +125,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -133,7 +133,7 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenlesen fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -141,7 +141,7 @@ msgid "" "explicit" msgstr "Die Erweiterung %s gibt nicht an ob paralleles Datenschreiben fehlerfrei möglich ist, es wird daher nicht davon ausgegangen - bitte kontaktiere den Erweiterungsautor zur Überprüfung und Angabe" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -590,44 +590,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -646,19 +646,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Builtins" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Modulebene" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -667,76 +667,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -755,7 +755,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -808,7 +808,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -925,7 +925,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -969,24 +969,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (in " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1006,28 +1006,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1039,28 +1039,28 @@ msgstr "" msgid "Index" msgstr "Stichwortverzeichnis" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Release" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1123,8 +1123,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1501,13 +1501,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1515,29 +1515,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1545,26 +1545,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1574,131 +1574,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1770,17 +1770,17 @@ msgstr "Autor: " msgid "%s %s" msgstr "%s-%s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parameter" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Rückgabe" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Rückgabetyp" @@ -1810,12 +1810,12 @@ msgstr "%s (C-Typ)" msgid "%s (C variable)" msgstr "%s (C-Variable)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "Funktion" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "Member" @@ -1823,7 +1823,7 @@ msgstr "Member" msgid "macro" msgstr "Makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "Typ" @@ -1846,106 +1846,106 @@ msgstr "Geändert in Version %s" msgid "Deprecated since version %s" msgstr "Veraltet ab Version %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "Template Parameter" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Wirft" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "Klasse" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "Aufzählung" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "Enumerator" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (Standard-Funktion)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (Methode von %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (Klasse)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globale Variable oder Konstante)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (Attribut von %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Parameter" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (Modul)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "Methode" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "Wert" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "Attribut" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "Modul" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1967,7 +1967,7 @@ msgstr "Operator" msgid "object" msgstr "Objekt" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "Exception" @@ -1987,88 +1987,88 @@ msgstr "Variablen" msgid "Raises" msgstr "Verursacht" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (im Modul %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (Standard-Variable)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (in Modul %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (Builtin-Klasse)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (Klasse in %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (Methode von %s.%s)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statische Methode von %s.%s)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische Methode von %s)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (Klassenmethode von %s.%s)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (Klassenmethode von %s)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (Attribut von %s.%s)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Python-Modulindex" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "Module" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Veraltet" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "Klassenmethode" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "statische Methode" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (veraltet)" @@ -2144,7 +2144,7 @@ msgstr "Suche" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2204,21 +2204,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2238,6 +2238,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Sonderzeichen" @@ -2263,22 +2264,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2422,38 +2423,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2471,7 +2472,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2481,14 +2482,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2498,23 +2499,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[Diagramm: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[Diagramm]" @@ -2533,31 +2534,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2577,26 +2578,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2652,29 +2653,29 @@ msgstr "Überblick: Modul-Quellcode" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Alle Module, für die Quellcode verfügbar ist</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2682,39 +2683,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "Alias von :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2750,17 +2751,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2775,25 +2776,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2871,6 +2872,7 @@ msgid "Warning" msgstr "Warnung" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "Fortsetzung der vorherigen Seite" @@ -2878,13 +2880,29 @@ msgstr "Fortsetzung der vorherigen Seite" msgid "Continued on next page" msgstr "Fortsetzung auf der nächsten Seite" +#: sphinx/templates/latex/sphinxmessages.sty_t:9 +msgid "continues on next page" +msgstr "Fortsetzung auf der nächsten Seite" + +#: 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 "Seite" + #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 #: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Inhaltsverzeichnis" #: sphinx/themes/agogo/layout.html:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Suche" @@ -3021,13 +3039,13 @@ msgstr "Nächstes Thema" msgid "next chapter" msgstr "nächstes Kapitel" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Bitte aktivieren Sie JavaScript, wenn Sie die Suchfunktion nutzen wollen." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3035,20 +3053,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Von hier aus können Sie die Dokumentation durchsuchen. Geben Sie Ihre Suchbegriffe in das untenstehende Feld ein und klicken Sie auf \"Suchen\". Bitte beachten Sie, dass die Suchfunktion automatisch nach allen Worten sucht. Seiten, die nicht alle Worte enthalten, erscheinen nicht in der Ergebnisliste." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "suchen" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Suchergebnisse" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3106,20 +3124,20 @@ msgstr "Link zu dieser Definition" msgid "Hide Search Matches" msgstr "Suchergebnisse ausblenden" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Suchen" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Suche wird vorbereitet..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Die Suche ist fertig, es wurde(n) %s Seite(n) mit Treffern gefunden." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", in " @@ -3136,18 +3154,18 @@ msgstr "Seitenleiste einklappen" msgid "Contents" msgstr "Inhalt" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3218,7 +3236,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3279,15 +3297,15 @@ msgstr "Link zu dieser Tabelle" msgid "Permalink to this code" msgstr "Link zu diesem Quellcode" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Link zu diesem Bild" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "Permanenter Link zu diesem Inhaltsverzeichnis" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3324,12 +3342,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3347,12 +3365,12 @@ msgstr "[Bild]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo index 46face3ca4a8d175af5eb5944ecab62ae608aa6d..dac112ab597d301cdc5a8662ee67d397f3f024e1 100644 GIT binary patch delta 11340 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 delta 11172 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 diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po index 6275eb494..2586e7e27 100644 --- a/sphinx/locale/el/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -130,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -587,44 +587,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -643,19 +643,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Ενσωματωμένες λειτουργίες" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Επίπεδο μονάδας λειτουργίας" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -664,76 +664,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -752,7 +752,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -805,7 +805,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -966,24 +966,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (σε " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1003,28 +1003,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1036,28 +1036,28 @@ msgstr "" msgid "Index" msgstr "Ευρετήριο" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Δημοσίευση" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1120,8 +1120,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1498,13 +1498,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1512,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1542,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1571,131 +1571,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1767,17 +1767,17 @@ msgstr "Συντάκτης: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Παράμετροι" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Επιστρέφει" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Επιστρεφόμενος τύπος" @@ -1807,12 +1807,12 @@ msgstr "%s (τύπος C)" msgid "%s (C variable)" msgstr "%s (μεταβλητή C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "συνάρτηση" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "μέλος" @@ -1820,7 +1820,7 @@ msgstr "μέλος" msgid "macro" msgstr "μακροεντολή" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "τύπος" @@ -1843,106 +1843,106 @@ msgstr "Άλλαξε στην έκδοση %s" msgid "Deprecated since version %s" msgstr "Αποσύρθηκε στην έκδοση %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Προκαλεί" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "κλάση" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (ενσωματωμένη συνάρτηση)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (μέθοδος της %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (κλάση)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (καθολική μεταβλητή ή σταθερά)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (ιδιότητα της %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Παράμετροι" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (μονάδα)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "μέθοδος" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "δεδομένα" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "ιδιότητα" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "μονάδα" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "τελεστής" msgid "object" msgstr "αντικείμενο" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "εξαίρεση" @@ -1984,88 +1984,88 @@ msgstr "Μεταβλητές" msgid "Raises" msgstr "Προκαλεί" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (στη μονάδα %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (ενσωματωμένη μεταβλητή)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (στη μονάδα %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (ενσωματωμένη κλάση)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (κλάση σε %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (μέθοδος %s.%s)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (στατική μέθοδος %s.%s)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (στατική μέθοδος της %s)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (μέθοδος κλάσης %s.%s)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (μέθοδος κλάσης της %s)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (ιδιότητα της %s.%s)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Ευρετήριο Μονάδων της Python" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "μονάδες" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Αποσύρθηκε" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "μέθοδος της κλάσης" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "στατική μέθοδος" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (αποσύρθηκε)" @@ -2141,7 +2141,7 @@ msgstr "Σελίδα αναζήτησης" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2201,21 +2201,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2235,6 +2235,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Σύμβολα" @@ -2260,22 +2261,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2419,38 +2420,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2468,7 +2469,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2478,14 +2479,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2495,23 +2496,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[γράφημα: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[γράφημα]" @@ -2530,31 +2531,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2574,26 +2575,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(στη %s έκδοση %s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2649,29 +2650,29 @@ msgstr "Επισκόπηση: κώδικας της μονάδας" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Όλες οι μονάδες για τις οποίες υπάρχει διαθέσιμος κώδικας</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2679,39 +2680,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "ψευδώνυμο της :κλάσης:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2747,17 +2748,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2772,25 +2773,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2868,6 +2869,7 @@ msgid "Warning" msgstr "Προειδοποίηση" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "συνεχίζεται από την προηγούμενη σελίδα" @@ -2875,13 +2877,29 @@ msgstr "συνεχίζεται από την προηγούμενη σελίδα msgid "Continued on next page" msgstr "Συνεχίζεται στην επόμενη σελίδα" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Αναζήτηση" @@ -3018,13 +3036,13 @@ msgstr "Επόμενο θέμα" msgid "next chapter" msgstr "επόμενο κεφάλαιο" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Παρακαλώ, ενεργοποιήστε τη JavaScript για να είναι δυνατή η λειτουργία\n αναζήτησης." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3032,20 +3050,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Από εδώ μπορείτε να αναζητήσετε σε αυτά τα κείμενα. Εισάγετε τις λέξεις\n αναζήτησης στο παρακάτω πλαίσιο και πατήστε \"αναζήτηση\". Σημειώστε ότι η λειτουργία \n αναζήτησης θα αναζητήσει αυτόματα για όλες τις λέξεις. Σελίδες\n που περιέχουν λιγότερες λέξεις δε θα εμφανιστούν στη λίστα αποτελεσμάτων." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "αναζήτηση" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Αποτελέσματα Αναζήτησης" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3103,20 +3121,20 @@ msgstr "Μόνιμος σύνδεσμος σε αυτόν τον ορισμό" msgid "Hide Search Matches" msgstr "Απόκρυψη Ευρεθέντων Αναζητήσεων" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Εκτελείται η αναζήτηση" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Προετοιμασία αναζήτησης..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Η αναζήτηση ολοκληρώθηκε, βρέθηκε/αν %s σελίδα/ες με βάση τους όρους αναζήτησης." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", στο " @@ -3133,18 +3151,18 @@ msgstr "Κλείσιμο πλαϊνής μπάρας" msgid "Contents" msgstr "Περιεχόμενα" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3215,7 +3233,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3276,15 +3294,15 @@ msgstr "Απευθείας σύνδεσμος σε αυτόν τον πίνακ msgid "Permalink to this code" msgstr "Απευθείας σύνδεσμος σε αυτόν τον κώδικα" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Απευθείας σύνδεσμος σε αυτήν την εικόνα" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "Απευθείας σύνδεσμος σε αυτόν τον πίνακα περιεχομένων" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3321,12 +3339,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3344,12 +3362,12 @@ msgstr "[εικόνα]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo index 5425f46dfbda1a2eb92f3b6515f223956236a996..67f3c800b64768c15985e31e9a33173f0f36db72 100644 GIT binary patch delta 11329 zcmZ|UcXU<Nw#V@uNGFYigj8|@gak-PA*4}53!Q*KD2kzk;)Q_pA{?Yh2?$)OfFMXw z5u{h8h$w=JAWabzq^gKgrN8elYmf2%c;nsS@U!MV`>Zn8Tq`m6*b>+KOI@8816>zb z{BLt9%ZkL+!HWL(e+ktsYcXLW#^IOvmWyTmg>(4M@I=eH#dG&$%L?WBJ^X{%H`TJ5 z5I@55SU=6O#_&A9mSqjWlQ_V#oK}-`Uf{tNOyb3(IGy-$hGn(D$(cOE<Jc9KWLXwt zTldiyW3nyF4U@1M*2212fOKIk$7Xm2>tl3n%c_X4q8H;^6KQzzU?#@m0#rwPQ5|2y zAp8@{qE*MT%0VFdV;uTm25Lf$u?)7iKkshGMW}wpU<kgA0gP|0q2Y%+(1C|h16@OP z^e=j$E6Z}AAHIZ1n1hp09Uiv*83Ty#qB84R&$7ZW5;cKz496De45d*>Ln|0>zfg>9 ztF;34#cz>av94n@Rv?cNSPv^>SKN(Gtch6-%)|$x2k~euz&BADy^JY%qXGF>Bb;UA zVk->9`A8jE>rexo!=88#RiF6{&4dP`;??NDJ*Z5bx4nwW>}}K*KS$PJc{DQbHEray ztau*e@j#Bo3b+bcjCBz8MVH2AZ@n>wI25TzD;rfaLs2Vz2Q{IUNWoh>(Sd)WYQwjQ z*_sH{79==nMAOJc4b&I4mxEC&nToME*LEjH5nn(G+IoVj^7N+Wdqr50cnY@04^XxA z0Nv4(G<%~zDznaTyOEA$*J_W=aXuE{MO2m7Z)WzcEwUJ^Bl3^6gnzZf-%z!b#Fss= z8G2$Ka@4IZsN$QA+LHH?i8-w;G?dCOP_^(3wSuG;#`ai=csQ!#cTiif5|x2Ns0=<w z2UcJ<URWPBaC6Phg^^I1ozTi`#Uc#S`Cmh$6d&wHw%hu&<O3Sy&lSpH4Gcr=X*1LS z<Lu{C(T#WqYVSX_J&DTH4b;jL+Zc1O8*xXBVti|}8h9MFSGTYWzCf+COIx!AW0Bj` zDn@VIhnn!$s0{e#SymAyB4uGMLm#}1{&*Y9;0ybCnRa9)kq4nP;;|{J<3U&!$Jp^q z)aQ#(dwc)`@JCdJe#fqO8<mL`?afx@VFGby)Qvd>^}QwNi|gBye|5N<2P&46s1%+@ zP2?Zco;}4#40_2Nn`GOTs2i@2?ReCMwGgY|CgjLlXR$wqcQ6^8jFg$Rvjh3pp1O22 zDNMKRgz9*N?b{ecycYd%4+i7cs1^N!O7-8UR6oN&^zCF~2dapZu`+f*^*7o{LtmVQ zI-g5W9j-)WU<<11KSS-^VLLv7+VdY#13f~0-zVRsItcZCJZi#e$d3`L5$fDeKozlb z84V4z7B%o@)K+|s)$tgrqlY*MOLsO`=up(aTTm-IjAijAj=(3Vi4UQYwfAFC{mw?c zw;0KQ)B1=8|5*F@mx?Hqe^tYwSQD3H5}rgAVJXf|4XloN*cAukdQ?UtUpA+v4(cB1 zj!OBP=)kpDh+kn>o&UsFEUOI<rXh7<oyC@z(A`|Uqfi|$N5-)Bp;jFJs`-tm9xCo* z$1_mJb_>?UQ<#B)1t#S!a4B&I?CqrSHx06Db?jkMw*j@6m3xwItd2TnN$9{dtc4v> z87jsQ+>a4>1}own)C7WinasX~+VhR5t=WZ6o!0|2bWXoS)xce>imts)mDfN`s4>pK zmZ<m7pav{WKJ|Gts#dC?21vEzY&&j>s)07BjOQ1U|6&?zc~D<p=wp8I7=o$9@1ct4 z2aLiSsG@W4YbF|oS;W;a9D8F)RijSTbW~;+q9*(os^5ry=J$y<{m6eV4>t2a13kiE z^y_ars*JJ3HLw6XpeC{%E8q{Po9qti+*_|115j1&KxHHqt6)8>jD;A6Gn_Qk;cC<h zK1WUD0!HH<%)!9_m_6)(y0Sk(P2d7X;#1W3!UmY)tAUxsdFY1I(FbRv2QEVurE@in zbQ(WnZ44S{uEw^g_#Mo~)7T6HicHG8pfWcPmD2OJeq0iM#5tITd8p!?f|}?uJKl{A zb^gDnp$>vL#7aq1)QbhE%#6cOT#8!pHY|@nplaa{JARIOFXVM|Pb6Vo;?5X=3(+6f zVKVMSSDpVGG&JxnOhS(#W-BtV8gYBn-i<>qT#YKaji?FUKnJ=HHCqseiNtkK6MYSp zfr*%c@1XiUhQW+)J)q%<KEuq+f>8rD#j-dMRSQmx#}%lR96@F3ob7#7u?7w|H(VyJ zBwmhb*kFXYM~0)mKL(v$Xw0CYy}p7q&@s}ax-DveBGd$mu{y3tP2?=9V{4RozZM1& zc0k<={jf7m#uj)1T`_*NnP}o@^6$-qmv~SPyJIL0MGZ6)!*CaB0w+;ha0fH-DYnL1 zWBC0LC!sR-2m`UqSaUH|Kus(b!!ZlXV~4TiU&m_z4>XaDs3O~q>39yCqyHP`y)LK@ zmZFMi2ZrEv)M<E*ZLsM$v!x4Asa}rC>_!a63+Rh?op!@zys1`yjO2sX7>BQ+QvF}7 zg?ljp|G^lnzyc~@1B}2|Q4`d{>f%CFCQqRzY)!DNPLN{joJK<_`~}-%;+y7%nt-}E z)}T_i9<{Rl=!1R}O@|R!mADmZWg{>OXQCGJ5$aTZg<<#*HQ}<8N;2oPl4+>gb1?>s z?0639rrL>3a6f8bx5?)C1Y!npU95=1QJGqd%EUp`L@wCz6V!X<r<jFhV|ktb1~gQB zoiP>%Vr`s<?s(kx461_*sEJx{v1+J@dT$U`!V##6FTuvR3bl3DQ8gAd)jkF2!}wMr z4P6Y`*aQb)L)?P7cpqc2?lhCaUZ{b_p#xXi@#mO8d<~U>py}o!O2T;JS5Omr3pJ5r z=u}5%>=z!R;z~2jigMADxDEPYK9<2gs1Apqj_Xo%#cil#xf>mL2lFtf*krCZsyL^j zzPGBF{I{jCmj~K{GBZuFIZy+qVF1=eWuOh}*bGBWXd))yT=c<xsEHjzW%3?Y!|Yim z!-c4tS%k{a@mb{Go5mkJ(1q~;RmEO!n~6lD;+m*)+#K~@7p#H<P#4KOR0h_gZp2Nf z1zkl={4u(tW42}W!Z_4vD0b4&2WzklevEOr3$yW8bYR3B3Ki?12aZD>uPLYrtwK#` zJ66S?Q7d<!Yo4cIK5=KPhnrBDaNefDU1G)k*Icb@(N{0n@jgr-K7#7-J|?4Mo;hCa zP%9jSi*SK$;(WG+_%JGi`3o%TWgLh~{ZVA0PU{*Cb>O$q+*E1Uowxu~aX;3=JE+XW zGm2K4hq_2cqEfjKwFR3{?{7y9^ar}3$70jJFD4RaVT8_qUm7~klWf;uF!5J*d;vp< zU!aOI<Q;QLqEQ)XgnC|tfjAQN{tRq{E3qA3MNK$kiTVAZ6V}%GpF=}?_6=%pAD}vV zj-gm~saZ)i)Wn*i_Wotmd!w;D&cv@=_yq--t2N+VlQFmD=1;bXs6W|mTVeiW+hi5_ z*WYYwzHk0!+iEq(hB$K#9pd=4{E|RN3)h*y*_Qo)PKhU@2K)#0CtI%%&7W+uJ~BV& z58+Wh_gim%Y5fta6Q_M_YO4UXB}E^Tf2D935A@S&1!mv{Y=*%b%zqbj$BM+u(F+fv zCmuu9&M8zsk5L`RZZy9KRJW~*I*x78AA6$@4%<lneQCVO10BEF_6tkxcs&O3d?#v8 zk6{2_MnAlZ4lMPF8L$$npIWGi=Ab@ri7(**%)tYw{z^GFnMN3@<78B7b1)3Mpe8UB z!*MFACRU+Vu-E?l2qqH$jQXDUX7dY7WsD~7h7mXxE8`;Ejm}SL)TA+Di<$XHs3P2f z1-K8D(&(+`3XQeR$6TII$3Q%R$#?}dQ1CYMpI9lVqMeWF_>mo7LWj=(LmEm|=yqd8 zRB97Ydt4jqVPpIANf=K&%XSCqSp9<a@j2>y^>&!8&BYkvj+lufQ8lv(J#_xh&<N(i zMNGqc=)kHwO$RM7fVeYi3;Lr{IvF+4Y7D^*s9O30HNZ*Re^I}PRM=&%^g5V9JQ70~ z-};1xs{2c9jW@9@X0So}+0Y!lF%Om6Znh&)#WW9_<7q6w=sl*&C!n@&4mQSx*bL8O zORT(C=by%48rt*es1?n{TDSy*@O#vjTtQ9jE@q<Jr=}+Ap%yUMb{<wD-ht}(C)5^P z#%y%`%w(|sXXM|(gI9T=8km3@cm`T791~P(5AHJqpTqLRzhfyZwclK^Zm5YiNBs<V z1#4hW)RxXg_5Y>){CiYpUhH?80o)Fl8i+)tDizh?NZVrUM!W)}@QH2ML3^vP3(uQl z48D*4co<XhG-?YyKQ|K&!f4`rCygQ+Be4lyL!Ik{L#Bf))P>R<^}HkMocF|doP+9k zH)?CXu;VlK=a*1h?EQr);!3CtrD0ceX3<b8=A-s%2`1nwEQiNY)qe$5-S<%)mOgB1 zB@%UdVo?*RjoPxN7>Tc7IF7MhfZD=MMyGXzMi>u%Mg3fVj14j7OY=9|-l!CQhpKXy zugspdM5S<o?R%(>57?eVZQ<Xj%()&h6D^BcP#pT`{Abe8UNu48WF76eA66nBg_Us` zs>6e*4o{;yUPg6z6P1C-=z(ruo2~Oj#bKxk$Dqc^L3hTtI?zz6yP@`aFzUFyfpxGL zBk%}%;T6<Cf1w6`gr4Yq)clwYLiJN02VqOBhkH>2KSnLg_Za)HqDi4K0vn+^+Jl<V zAv->YdhZe{19wr??(vN&q8?a{_*1Nj*D(nrzBNVK5_KGhVIIDZgYn+C<X<T%{LUPk zDOizs9V+EV(Sf(I5Ce{z0Y_jP;uF{b9p9T9Z8*jfA4K(g9d&FyPM8(<!Z_locKpc+ z@~;O!@E``CU|ozlY3}H5sFcscrT8xP#;hOAuhYv>nR|e$g@LEcpKOPrEAc3F;5gL9 zwj7nAQ>ato={#-rHX60^+NcS1N1e}Qs0lno6_Lvsb6mYJf!H4duntzm))<T<Q4^Yl zGjKlY{pho1yjG~so&9K(p)m+Gz*sw;WXH2nHL(bl^7pV9Z)1JEf6iP;doh*xCYHm< zAI(jff`P<sQ4{TnSvVBA7o64x8XDjT`rrx7$BU>Lr~hO+?u9*x7h*0xLJgF2-mJJ2 zDpLbcH827Ta2e{#eufn=;%9S_Wuw2&f3uPXKi{z|FZ4rYWDHipw@}5n0mJYls>44q z9KA1?iNvCcE*o>OD|W?Yn1~Ni6NtTNZpOw~j`6J?G*o;eFcTM}8=gRA<Sc4yu3!fK ziRoDR7wQGOVRKw$$CoghIO<pP^S(1?5wApL?mTL%DqSM~YILIEhtn|)7h?#1i;;N6 zj$JOBt2q?)y>6(Cyp4MA1B}AM7>d7P1$>I-G2%B<3pG)3)8ELyUhK|;cpQm!@jX<r zTtt7ojmh`|m5JmlX5dUrB5se`iixO;=v~y-9YNK^ZBzyxp(a@KsyUYJt~$-$4dH?I zXew%E+p#1Am_mF7)p5u*Q*1e?qRmH5tN^RvTvQG1!e~5-TG;QXg#=wUnW|*lz)2&P z4_?7SoP;a!CTc5+Z<veZ0IGw-*ac6c_CD#Rxmy2&O7#-dR_sPi;0#vB2N;hPf46^n zqTY8-pb<o41xDaj?2N~;1;+njCNLB=(NXA)%TdSgL(~@T!|HezRTHKEG!uwI58}F* ziA}IIj>q9T|KHG1${OA>#nA!XiTk1^R)i&ci`trZF$cG!Ch`!ql2U(}QxSvBi94g- zTZQ`m6)dSC)Yc~7)@fk>b7{2U!EDq_FQPwQ!y5Pib*0AsZ7z=5w#`w+nvY8P0*u2g zs8s)iwXpO*<|50&7~(#t2~Wca#<$kd&<qcuI=qNVW#k<*<7U{2c(m>J*qS)*uKAPg zaI8#x1eLj47=-sw3-i2Z?vZ><Chm<@aREBDvi&r4EKZ|Vau<^@;J(?*2B;Z#MWt>u zR>3)_745X+A5j^!9++QdJ<*4-4OYW$n1OF$Mcns*{3}(Lc%b6*erP6A1r;|&y;y+i zcoLS!Vl0R6ql$7D>NH$LWgz@tV+`v1@u-Qm#8x=a{(R5B<i8RR4)Q<)T*bzC3u|HO zBU5Dk(2aN~`r&9y!D-k8_h3V`9-Aw+5o%(^7>1is;~YZ=-nQca=Mz&LX{Z(Vz(gE} z%FKGygifKVJ?yFJs50vFW_J8KYUK;i6PKYTx(3VOHq`qEFcfd1D>_R(Gw0F+9Xx1& zdDsJ$x-A%vr%_-08{4ASbF&3qP{me+%HTu{z!|6vEJa^Dh?>xGOu&msZ8)tmFU-tB zQK`&970Xmqinm|}Ucm^Av|LIuk%@uCjW8HHp(ZlGjwhf$@j}#lYf(kJ8_VObSn~h> z{YxW_2hUJNmFnVBGV@$iN(W*u9ERG<bEuWxL9OU9#-Ud!my#d5Dd->`fDLdK>izF9 z63?I}bQh~QX}FhmDLIdcsFmlVW;zk`@k6YKF0L*mnP`CHiASLqK18M1#m&V2s1%2x z`fG|h_pf6Vu0n0i0dy{+agBx?@9t9aH`@>olhP0HWuEUtr9Q&btTY4F!K<i?Y6^D8 z&6tV-UM?l4rx7YMqfrZ5i52h&DwEf}T%09U=;Cd@;Eo!o4!U7y)BxR4r(%Zv`7YFX zK4tp=RRf`A%<~!;LY#*>4Si9^Z!jt&^X=#R%Q($m9N~e!a2^}s9c+i`K4!+#FpGE{ z*2YVyD>Ta2>}@V;PurqSNl(;5#-b*+2(|YcQ12Z@72$=gH>+)_;#ZW|W5D2kJ$e=n z>))%#fO#7Z^>uGEd|=PQAzPod>l5WStbft)!l8~qMUJAvQNy+lycAPv>)6-74c+?k z(>GkU?l1n@Kec9JYL+88B|EuR_2jJNWbeGTiR}wV^dH)PP*Gyz9>WT=9jVDFS&7NK om+44J&rZ(Vx@YNwxc`6TdC%Id+PdwF&m;fu==Z`I_;$em02T=Q9RL6T delta 11164 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 J<QF4@{twn>-~#{v diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po index 4253bd410..62b11e910 100644 --- a/sphinx/locale/eo/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -130,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -587,44 +587,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -643,19 +643,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -664,76 +664,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -752,7 +752,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -805,7 +805,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -966,24 +966,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1003,28 +1003,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1036,28 +1036,28 @@ msgstr "" msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1120,8 +1120,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1498,13 +1498,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1512,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1542,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1571,131 +1571,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1767,17 +1767,17 @@ msgstr "Aŭtoro:" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametroj" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1807,12 +1807,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "funkcio" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "membro" @@ -1820,7 +1820,7 @@ msgstr "membro" msgid "macro" msgstr "nomaĵo" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "tipo" @@ -1843,106 +1843,106 @@ msgstr "" msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "klaso" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (klaso)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "datenoj" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "escepto" @@ -1984,88 +1984,88 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2141,7 +2141,7 @@ msgstr "" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2201,21 +2201,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2235,6 +2235,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Simboloj" @@ -2260,22 +2261,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2419,38 +2420,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2468,7 +2469,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2478,14 +2479,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2495,23 +2496,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2530,31 +2531,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2574,26 +2575,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2649,29 +2650,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2679,39 +2680,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2747,17 +2748,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2772,25 +2773,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2868,6 +2869,7 @@ msgid "Warning" msgstr "" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "" @@ -2875,13 +2877,29 @@ msgstr "" msgid "Continued on next page" msgstr "" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "" @@ -3018,13 +3036,13 @@ msgstr "Sekva temo" msgid "next chapter" msgstr "sekvo ĉapitro" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3032,20 +3050,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "serĉu" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3103,20 +3121,20 @@ msgstr "" msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3133,18 +3151,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3215,7 +3233,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3276,15 +3294,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3321,12 +3339,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3344,12 +3362,12 @@ msgstr "" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index d4549e48625f9b7ff67fde6d730c3f8639904731..03c6a6c3f47527ca9e449dee823cdf782200d0f1 100644 GIT binary patch delta 11424 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 Eze_jn*Z=?k delta 11191 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 Xf}(PJ-wrCXV9(6dow?qw-$MQmy0@{L diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index fa2f761d1..1b877fdd1 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -14,9 +14,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: Leonardo J. Caballero G. <leonardocaballero@gmail.com>\n" "Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -128,7 +128,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -136,7 +136,7 @@ msgid "" "explicit" msgstr "la extensión de %s no declara si es seguro para la lectura en paralelo, asumiendo que no es - consulte con el autor de la extensión para comprobar y hacer explícito" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -144,7 +144,7 @@ msgid "" "explicit" msgstr "la extensión %s no declara si es seguro para la escritura paralela, suponiendo que no lo sea - solicite al autor de la extensión que lo verifique y haga explicito" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "realizando serialmente %s" @@ -593,44 +593,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "copiando imágenes..." -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "no se puede copiar archivo de imagen %r: %s" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "no se puede escribir archivo de imagen %r: %s" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "escribiendo archivo %s..." -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "mimetype desconocido para %s, ignorando" @@ -649,19 +649,19 @@ msgstr "no hay cambios en versión %s." msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Funciones incorporadas" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Nivel de módulo" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "copiando archivos fuente" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -670,76 +670,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "El archivo ePub está en %(outdir)s." -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file inválido: %r, ignorado" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Los catálogos de mensajes están en %(outdir)s." -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "compilando [%s]:" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "objetivos para los archivos de plantillas %d" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "leyendo plantillas..." -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "escribiendo catálogos de mensajes..." @@ -758,7 +758,7 @@ msgstr "Las páginas HTML están en %(outdir)s." msgid "Failed to read build info file: %r" msgstr "Error al leer la información de compilación del fichero: %r" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -811,7 +811,7 @@ msgstr "copiando archivos estáticos..." msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "archivo de logo %r no existe" @@ -928,7 +928,7 @@ msgstr "Las páginas del manual están en %(outdir)s." msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -972,24 +972,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "resolviendo referencias..." -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (en " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1009,28 +1009,28 @@ msgstr "Los archivos XML están en %(outdir)s." msgid "The pseudo-XML files are in %(outdir)s." msgstr "Los archivos pseudo-XML están en %(outdir)s." -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Los archivos LaTeX están en %(outdir)s." -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\nEjecuta el comando 'make' en este directorio para compilarlos usando (pdf)latex\n(usa el comando 'make latexpdf' aquí para hacer esto automáticamente)." -#: sphinx/builders/latex/__init__.py:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1042,28 +1042,28 @@ msgstr "" msgid "Index" msgstr "Índice" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Versión" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "copiando archivos de soporte TeX..." -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1126,8 +1126,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "número de trabajo debe ser un número positivo" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "Para más información, visita <http://sphinx-doc.org/>." @@ -1504,13 +1504,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1518,29 +1518,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "Crear Makefile? (y/n)" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "¿Crear archivo de comandos para Windows? (y/n)" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "Creando archivo %s." -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "El archivo %s ya existe, omitiendo." -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1548,26 +1548,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1577,131 +1577,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "modo silencioso" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "ruta de salida" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "Opciones básicas del proyecto" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "nombre del proyecto" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "autores" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "versión del proyecto" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "lenguaje del documento" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "sufijo de archivo fuente" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "nombre de documento maestro" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "usar epub" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "Opciones de extensión" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "habilitada extensión %s" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "habilitar extensiones arbitrarias" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "creación del Makefile y Batchfile" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "crear makefile" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "no crear makefile" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "crear batchfile" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "no crear batchfile" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "definir una variable de proyceto" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "Variable de plantilla inválida: %s" @@ -1773,17 +1773,17 @@ msgstr "Autor: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parámetros" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Devuelve" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Tipo del valor devuelto" @@ -1813,12 +1813,12 @@ msgstr "%s (tipo C)" msgid "%s (C variable)" msgstr "%s (variable C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "función" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "miembro" @@ -1826,7 +1826,7 @@ msgstr "miembro" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "tipo" @@ -1849,106 +1849,106 @@ msgstr "Distinto en la versión %s" msgid "Deprecated since version %s" msgstr "Obsoleto desde la versión %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "Declaración duplicada, también definida en '%s'.\nDeclaración es '%s'." -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "Parametros de Plantilla" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Lanzamientos" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "clase" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "unión" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "concepto" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "enumeración" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "Definición duplicada, también definida en '%s'.\nEl nombre de la definición es '%s'." -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (función incorporada)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (método de %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (clase)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variable global o constante)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo de %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Argumentos" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "dato" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "módulo" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1970,7 +1970,7 @@ msgstr "operador" msgid "object" msgstr "objeto" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "excepción" @@ -1990,88 +1990,88 @@ msgstr "Variables" msgid "Raises" msgstr "Muestra" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (en el módulo %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable incorporada)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (en el módulo %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (clase incorporada)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (clase en %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (método de %s.%s)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (método estático de %s.%s)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático de %s)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (método de clase de %s.%s)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de clase de %s)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atributo de %s.%s)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "método de la clase" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2147,7 +2147,7 @@ msgstr "Página de Búsqueda" msgid "duplicate citation %s, other instance in %s" msgstr "citación duplicada %s, otra instancia en %s" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "etiqueta duplicada %s, otra instancia en %s" @@ -2207,21 +2207,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "Error al escanear los documentos en %s: %r" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "Dominio %r no está registrado" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2241,6 +2241,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Símbolos" @@ -2266,22 +2267,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2425,38 +2426,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "falta '+' o '-' en la opción '%s'." -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' no es una opción válida." -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' no es una opción pyversion válida" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "tipo de TestCode inválido" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2474,7 +2475,7 @@ msgstr "Archivo externo Graphviz %r no encontrado o la lectura del mismo fallo" msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignorando la directiva \"graphviz\" sin contenido." -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2484,14 +2485,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "comando dot %r no se puede ejecutar (necesarios para la salida de graphviz), Compruebe la configuración de graphviz_dot" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2501,23 +2502,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "el valor del parámetro graphviz_output_format debe ser uno de 'png', 'svg', pero es %r" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[gráfica: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[gráfica]" @@ -2536,31 +2537,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Enlace permanente a esta ecuación" @@ -2580,26 +2581,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(en %s versión %s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "(en %s)" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2655,29 +2656,29 @@ msgstr "Resumen: código de modulo" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Todos los módulos para los cuales disponen código</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2685,39 +2686,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "Bases: %s" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "alias de :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2753,17 +2754,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2778,25 +2779,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2874,6 +2875,7 @@ msgid "Warning" msgstr "Advertencia" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "proviene de la página anterior" @@ -2881,13 +2883,29 @@ msgstr "proviene de la página anterior" msgid "Continued on next page" msgstr "Continúa en la página siguiente" +#: sphinx/templates/latex/sphinxmessages.sty_t:9 +msgid "continues on next page" +msgstr "continué en la próxima página" + +#: sphinx/templates/latex/sphinxmessages.sty_t:10 +msgid "Non-alphabetical" +msgstr "No alfabético" + +#: sphinx/templates/latex/sphinxmessages.sty_t:12 +msgid "Numbers" +msgstr "Números" + +#: sphinx/templates/latex/sphinxmessages.sty_t:13 +msgid "page" +msgstr "página" + #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 #: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Tabla de contenido" #: sphinx/themes/agogo/layout.html:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Búsqueda" @@ -3024,13 +3042,13 @@ msgstr "Próximo tema" msgid "next chapter" msgstr "próximo capítulo" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Por favor, active JavaScript para habilitar la funcionalidad\n de búsqueda." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3038,20 +3056,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Este es el diálogo de búsqueda. Introduce los términos en el\n diálogo siguiente y pulsa \"buscar\". Note que el asistente buscará \n automáticamente todas las palabras. Las páginas que contengan \n menos palabras no aparecerán en la lista de resultados." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "buscar" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Resultados de la búsqueda" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3109,20 +3127,20 @@ msgstr "Enlazar permanentemente con esta definición" msgid "Hide Search Matches" msgstr "Ocultar coincidencias de la búsqueda" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Buscando" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Preparando búsqueda..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Búsqueda finalizada, encontró %s página(s) acorde con la consulta de búsqueda." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", en " @@ -3139,18 +3157,18 @@ msgstr "Contraer barra lateral" msgid "Contents" msgstr "Contenidos" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Pie de página [%s] no está referenciado." -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "Pie de página [#] no está referenciado." @@ -3221,7 +3239,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "al agregar clases de directiva, no pueden administrarse argumentos adicionales" @@ -3282,15 +3300,15 @@ msgstr "Enlace permanente a esta tabla" msgid "Permalink to this code" msgstr "Enlace permanente a este código fuente" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Enlace permanente a esta imagen" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "Enlace permanente a la tabla de contenidos" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3327,12 +3345,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Clave de configuración desconocida: latex_elements[%r] se ignoran." @@ -3350,12 +3368,12 @@ msgstr "[imagen]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "tipo de nodo no implementado: %r" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "tipo de nodo desconocido: %r" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index b84d6219bc667d2677854a06142547f2f5a20228..c748f12bd42345be9cc8bd1e5ed1e1408fafa95b 100644 GIT binary patch delta 11424 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 Lh@Efx6omg53i<{Z delta 11196 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 RrzH2LYprd)TwJ>P{twcO%E$l! diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index 0d73a44a7..2237960ae 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: Ivar Smolin <okul@linux.ee>\n" "Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -125,7 +125,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -133,7 +133,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -141,7 +141,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -590,44 +590,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "kujutiste kopeerimine... " -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -646,19 +646,19 @@ msgstr "versioonis %s pole muutusi." msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Sisseehitatud" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Mooduli tase" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "lähtefailide kopeerimine..." -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -667,76 +667,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Sõnumikataloogid asuvad kataloogis %(outdir)s." -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "ehitamine [%s]: " -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "mallide lugemine... " -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "sõnumikataloogide kirjutamine... " @@ -755,7 +755,7 @@ msgstr "HTML-lehed asuvad kataloogis %(outdir)s." msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -808,7 +808,7 @@ msgstr "staatiliste failide kopeerimine... " msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "logofaili %r pole olemas" @@ -925,7 +925,7 @@ msgstr "Juhendi lehed asuvad kataloogis %(outdir)s." msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "seadistusparameetrit \"man_pages\" ei leitud, juhendi lehti ei kirjutata" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -969,24 +969,24 @@ msgstr "seadistusparameetrit \"texinfo_documents\" ei leitud, dokumente ei kirju msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "viidete lahendamine..." -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (pealkirjas " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1006,28 +1006,28 @@ msgstr "XML-failid asuvad kataloogis %(outdir)s." msgid "The pseudo-XML files are in %(outdir)s." msgstr "PseudoXML-failid asuvad kataloogis %(outdir)s." -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "LaTeX-failid asuvad kataloogis %(outdir)s." -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\nNende jooksutamiseks läbi (pdf)latex programmi käivita selles kataloogis\n'make' (selle automaatseks tegemiseks kasuta `make latexpdf')." -#: sphinx/builders/latex/__init__.py:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "seadistusparameetrit \"latex_documents\" ei leitud, dokumente ei kirjutata" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "seadistusparameeter \"latex_documents\" viitab tundmatule dokumendile %s" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1039,28 +1039,28 @@ msgstr "seadistusparameeter \"latex_documents\" viitab tundmatule dokumendile %s msgid "Index" msgstr "Indeks" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Redaktsioon" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "TeX-i tugifailide kopeerimine..." -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1123,8 +1123,8 @@ msgstr "Vearaportit on võimalik esitada jälguris aadressil <https://github.com msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "Lisateabe jaoks külasta <http://sphinx-doc.org/>." @@ -1501,13 +1501,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "Märkus: imgmath ja mathjax ei saa korraga lubatud olla. imgmath eemaldati valikust." -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1515,29 +1515,29 @@ msgid "" "directly." msgstr "\nSulle on võimalik genereerida Makefile ja Windowsi käsufail. Nii saad sa\nsphinx-build täieliku käsu asemel käivitada lihtsalt näiteks `make html'." -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "Kas luua Makefile? (y/n)" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "Kas luua Windowsi käsufail? (y/n)" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "Faili %s loomine." -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "Fail %s on juba olemas ja jäetakse vahele." -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "Lõpetamine: Algne kataloogistruktuur on loodud." -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1545,26 +1545,26 @@ msgid "" "source files. " msgstr "\nSa peaks nüüd asustama oma põhidokumendi %s ja looma ülejäänud\ndokumentatsiooni lähtefailid. " -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "Kasuta Makefile'i dokumentide ehitamiseks, näiteks:\n make ehitaja\n" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "kus \"ehitaja\" on mõni toetatud ehitaja, näiteks html, latex või linkcheck.\n" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1574,131 +1574,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nSphinx-projekti jaoks vajalike failide genereerimine.\n\nsphinx-quickstart on interaktiivne tööriist, mis küsib mõned küsimused Sinu\nprojekti kohta ja seepeale genereerib täieliku dokumentatsioonikataloogi ning\nnäidis-Makefile kasutamiseks koos sphinx-buildiga.\n" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "vaikne režiim" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "väljundi rada" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "Struktuuri suvandid" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "kasutamise korral eraldatakse lähtefailide ja ehitamise kataloogid" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "Projekti põhisuvandid" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "projekti nimi" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "autorite nimed" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "projekti versioon" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "projekti väljalase" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "dokumendi keel" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "lähtefaili järelliide" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "põhidokumendi nimi" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "Laienduste suvandid" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "laienduse %s lubamine" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "suvaliste laienduste määramine" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "Makefile ja Batchfile loomine" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "makefile loomine" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "makefile loomata jätmine" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "batchfile loomine" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "batchfile loomata jätmine" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "Projekti loomine mallist" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "mallifailide kataloog" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "malli muutuja kirjeldamine" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1770,17 +1770,17 @@ msgstr "Autor: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parameetrid" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Tagastab" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Tagastustüüp" @@ -1810,12 +1810,12 @@ msgstr "%s (C tüüp)" msgid "%s (C variable)" msgstr "%s (C muutuja)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "funktsioon" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "liige" @@ -1823,7 +1823,7 @@ msgstr "liige" msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "tüüp" @@ -1846,106 +1846,106 @@ msgstr "Muudetud versioonis %s" msgid "Deprecated since version %s" msgstr "Iganenud alates versioonist %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "Malli parameetrid" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "klass" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "loend" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (sisseehitatud funktsioon)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s meetod)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (klass)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globaalmuutuja või konstant)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribuut)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Argumendid" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (moodul)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "meetod" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "andmed" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "atribuut" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "moodul" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1967,7 +1967,7 @@ msgstr "operaator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "erind" @@ -1987,88 +1987,88 @@ msgstr "Muutujad" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moodulis %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (sisseehitatud muutuja)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (moodulis %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (sisseehitatud klass)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (klass moodulis %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s meetod)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s staatiline meetod)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s staatiline meetod)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (klassi %s.%s meetod)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassi %s meetod)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atribuut)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Pythoni moodulite indeks" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "moodulid" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Iganenud" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "klassi meetod" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "staatiline meetod" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (iganenud)" @@ -2144,7 +2144,7 @@ msgstr "Otsinguleht" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2204,21 +2204,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "dokument pole ühegi sisukorrapuu osa" @@ -2238,6 +2238,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Sümbolid" @@ -2263,22 +2264,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "kujutise fail pole loetav: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "kujutise fail %s pole loetav: %s" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2422,38 +2423,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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 "Lähtefailide doctest-testimine lõpetas, vaata tulemusi failist %(outdir)s/output.txt." -#: sphinx/ext/doctest.py:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2471,7 +2472,7 @@ msgstr "Välist Graphviz-faili %r ei leitud või esines tõrge selle lugemisel" msgid "Ignoring \"graphviz\" directive without content." msgstr "Ilma sisuta \"graphviz\" direktiivi eiramine." -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2481,14 +2482,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "dot käsku %r pole võimalik käivitada (vajalik graphvizi väljundi jaoks), kontrolli graphviz_dot sätteid" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2498,23 +2499,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format peab olema kas 'png' või 'svg', kuid mitte %r" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[joonis: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[joonis]" @@ -2533,31 +2534,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Püsiviit sellele võrrandile" @@ -2577,26 +2578,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(projektis %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2652,29 +2653,29 @@ msgstr "Ülevaade: mooduli kood" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Kõik lähtekoodiga moodulid</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2682,39 +2683,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "Põlvnemine: %s" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "klassi :class:`%s` sünonüüm" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2750,17 +2751,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] automaatkokkuvõtte genereerimine failile: %s" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] kirjutamine kataloogi %s" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2775,25 +2776,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "lähtefailid, mille kohta rST-faile genereerida" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "väljundfailide kataloog" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "failide vaikimisi järelliide (vaikimisi: %(default)s)" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "kohandatud mallide kataloog (vaikimisi: %(default)s)" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "imporditud liikmete dokumenteerimine (vaikimisi: %(default)s)" @@ -2871,6 +2872,7 @@ msgid "Warning" msgstr "Hoiatus" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "jätk eelmisele leheküljele" @@ -2878,13 +2880,29 @@ msgstr "jätk eelmisele leheküljele" msgid "Continued on next page" msgstr "Jätkub järgmisel lehel" +#: sphinx/templates/latex/sphinxmessages.sty_t:9 +msgid "continues on next page" +msgstr "jätkub järgmisel leheküljel" + +#: 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 "lehekülg" + #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 #: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Sisukorratabel" #: sphinx/themes/agogo/layout.html:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Otsing" @@ -3021,13 +3039,13 @@ msgstr "Järgmine teema" msgid "next chapter" msgstr "järgmine jaotis" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Otsingu võimaldamiseks tuleb aktiveerida JavaScript." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3035,20 +3053,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Selle vormi abil saab otsida käesolevast dokumentatsioonist. Sisesta allolevasse lahtrisse otsisõnad ning klõpsa \"Otsi\". Pane tähele, et otsimisfunktsioon otsib automaatselt lehti, mis sisaldavad kõiki sisestatud sõnu. Vähemate sõnadega lehed otsingutulemustesse ei ilmu." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "otsi" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Otsingu tulemused" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3106,20 +3124,20 @@ msgstr "Püsiviit sellele definitsioonile" msgid "Hide Search Matches" msgstr "Varja otsingu tulemused" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Otsimine" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Otsingu ettevalmistamine..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Otsingu tulemusena leiti %s leht(e)." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3136,18 +3154,18 @@ msgstr "Varja külgriba" msgid "Contents" msgstr "Sisukord" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3218,7 +3236,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3279,15 +3297,15 @@ msgstr "Püsiviit sellele tabelile" msgid "Permalink to this code" msgstr "Püsiviit sellele programmikoodile" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Püsiviit sellele pildile" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "Püsiviit sellele sisukorrapuule" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3324,12 +3342,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Tundmatu seadistusvõti: latex_elements[%r] eiratakse." @@ -3347,12 +3365,12 @@ msgstr "[pilt]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 59a014da65836f88e3163bcd58af15cab6d38db7..27ddb7cb1604b51f340c7b1df054da822921be23 100644 GIT binary patch delta 11338 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 NJ$`-=#x#6_{tFyR_5T0> delta 11167 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 diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 5533e6c6d..6ad672fa5 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\n" "MIME-Version: 1.0\n" @@ -123,7 +123,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -131,7 +131,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -139,7 +139,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -588,44 +588,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -644,19 +644,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Modulu maila" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -665,76 +665,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -753,7 +753,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -806,7 +806,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -923,7 +923,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -967,24 +967,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (hemen: " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1004,28 +1004,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1037,28 +1037,28 @@ msgstr "" msgid "Index" msgstr "Indizea" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Argitalpena" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1121,8 +1121,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1499,13 +1499,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1513,29 +1513,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1543,26 +1543,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1572,131 +1572,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1768,17 +1768,17 @@ msgstr "Egilea:" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametroak" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Itzultzen du" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Itzulketa mota" @@ -1808,12 +1808,12 @@ msgstr "%s (C mota)" msgid "%s (C variable)" msgstr "%s (C aldagaia)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "funtzioa" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "partaidea" @@ -1821,7 +1821,7 @@ msgstr "partaidea" msgid "macro" msgstr "makroa" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "mota" @@ -1844,106 +1844,106 @@ msgstr "%s bertsioan aldatuta" msgid "Deprecated since version %s" msgstr "%s bertsiotik aurrera zaharkituta" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Jaurtitzen du" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "klasea" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodoa)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (klasea)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (aldagai globala edo konstantea)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributua)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Argumentuak" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (modulua)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "metodoa" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "datuak" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "atributua" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "modulua" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1965,7 +1965,7 @@ msgstr "eragiketa" msgid "object" msgstr "objetua" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "salbuespena" @@ -1985,88 +1985,88 @@ msgstr "Aldagaiak" msgid "Raises" msgstr "Goratzen du" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s moduluan)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (%s moduluan)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (klasea %s-(e)n)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metodoa)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s metodo estatikoa)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo estatikoa)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klaseko metodoa)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klaseko metodoa)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atributua)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Python moduluen indizea" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "moduluak" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Zaharkitua" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "klaseko metodoa" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "metodo estatikoa" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (zaharkitua)" @@ -2142,7 +2142,7 @@ msgstr "Bilaketa orria" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2202,21 +2202,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2236,6 +2236,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2261,22 +2262,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2420,38 +2421,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2469,7 +2470,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2479,14 +2480,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2496,23 +2497,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2531,31 +2532,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2575,26 +2576,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2650,29 +2651,29 @@ msgstr "Gainbegirada: moduluko kodea" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Kodea eskuragarri duten modulu guztiak</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2680,39 +2681,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2748,17 +2749,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2773,25 +2774,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2869,6 +2870,7 @@ msgid "Warning" msgstr "Kontuz" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "aurreko orritik jarraitzen du" @@ -2876,13 +2878,29 @@ msgstr "aurreko orritik jarraitzen du" msgid "Continued on next page" msgstr "Hurrengo orrian jarraitzen du" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Bilatu" @@ -3019,13 +3037,13 @@ msgstr "Hurrengo gaia" msgid "next chapter" msgstr "hurrengo kapitulua" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Mesedez, gaitu JavaScript-a bilaketa erabili ahal izateko." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3033,20 +3051,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Honekin dokumentu hauetan bilatu dezakezu. Sartu zure bilaketa hitzak\nondoko kutxan eta \"bilatu\" sakatu. Kontutan eduki bilaketa funtzioak\nhitz guztiak bilatuko dituela. Hitz gutxiago dituzten orriak ez dira \nemaitzen zerrendan agertuko." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "bilatu" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Bilaketa emaitzak" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3104,20 +3122,20 @@ msgstr "Definizio honetarako esteka iraunkorra" msgid "Hide Search Matches" msgstr "Bilaketa bat-etortzeak ezkutatu" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3134,18 +3152,18 @@ msgstr "Alboko barra tolestu" msgid "Contents" msgstr "Edukiak" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3216,7 +3234,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3277,15 +3295,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3322,12 +3340,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3345,12 +3363,12 @@ msgstr "[irudia]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index 4ffac4895ff3590e8521d7d38b99f635e71ad6ef..7473d91f078e9536053f0e098af3bba86de4e475 100644 GIT binary patch delta 11331 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%0A^&<Yj|aLa9%5aLxoV5$ z1uRaSgNgVi7Q*$Yfxo~6{28?s&rlap#5KEhO;9!Q3MvC5Q4?H`F8t{l`Pbgv=7FlX z;B`CGBvb}6FbT6z9nV44$k*tD$50bHj}_7XcY9wXV+?UKjKlt@h0H`{^aID89vT&R za0avSIWEWS8+I$aZ`u{tL3Pj&yJ0)j-mgVnt=CYg4*kOpkb;^(d#r-PP!m~($#?+u zzUL{8U>Z@k?8T6PU5Q&_3tWjx`5n|m?_*JnylpdA0bRstsDXN*wq_D)0?RP~_o9mX z2)0JwJNbXI^_VU+bjALJDvpa-1n;3H_87Id{(su7iNl7(4Nwyqk6OtL)T#IkGw?F% zJ@;Mv{UMl0JQcOIJ1|}6|0s<%Jczt!_jDi@Cmx1XaXf0zH=;ita6Ex3*2}0pE%TTC zSyB)4_Z(ArJ`>|{KbFCJs0o+6PsSPFRHva8wncULGAfmypk{m=J7eJo)}E*oZpQZL z_0V2W9Z?y{#bA6JwXlWghu2X3-N#B;;Su{ELZdAW9gA$#N+w_eeu&!3Bd8hQz)<x4 z+xdk9wW4$<9*7!v7B<C|sDW=_WqgD+u<T>I(C&}Pzf!f32T`~eHIY0geu8C*!~U^1 zVj6}KH^7qE6;+gjQKw-ps&)=Lo<w~=4>eKq#QBpgDpNzAkpFTtM)N>>z6_h-I!wX8 zoEIxSwY8Cqdao`fVQbV%J*b;;Kc=J4zjk7o7(qM=HO?$_;TKMP!b3yF@ff49;xl^@ zH9}=(C~88BP&2-O>gadpbN}ZyPDQP}JL<jO7=VMY7>+^pHwnXW1L|0NexOm4#?R<N zZ{wB!J6aqnb-5UcOHp6kif!=-Y71OmUio{Tf<D9<s0_77ZA~B4shNzL(0tT_S0T0G zF-K`=W*1SZ^eNz#Uo34<Db7U|&019TUPi63WI?a|`yvKa#MMy6*W8JFq9!s7gK#|R zik^q6p`Doj|NkAQk<5cLs1*eivNJD-8Ylz%Vn<XFZ9}E{EGo6XVJzOlGz=;1m7mE> zY(V@fdgCT6g<qj2bP6kaXxyNo^B7pfuDmvCrv0%C&cJ$j1(k{N-d_2Cvh9hQ;5k%^ zuc9yBN2T}~R>mqmHglb^H1Q<V)~rI$0vZQt$iBW_`G2#0f=cO(qF(ubv;7EFoTivv zX(?0(O;8ur%h(I&V>Nt$Iz4fI_WfR{1x>_g{2X;E4*7X`@~iMF5A=nbsDaA(d*%O@ zTNgDzV|3#X)aUP`wqm>EIn;#zb>iRvul$QD1yz)-P^YF7DkHhh^OXS}yBDAHKsVbS zY>cO{9Yz(mGaih!h^J$1{0_Bc1xnbxjYsWiGU}A1qb8b#n%Enty`O`6Z#{<LzRkZ^ z-c&Il$K89-&;h;sWRDowxA&mA3){U^q|L~|eX@sb{<mHK(g7m|=8Vi9?i!Ng%E^9x z#O6OPf9kurU~bdE&5frv4Xjq(U9FZYF)1xErAlJ0#KfYRZQbp&M-3c4a7d23N$(Na zX|8ICNwwUGyjRnel$w@UbMseA##D-E!{`5ZSaW*KnaQU=J2PqS`|bMt&-m}}?;8F8 O$FCE$x!iOA!2bePF!eG3 delta 11164 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 Tez73#NYAP~SwDh@yvzR|rK8Lp diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 129ad45af..c80f85f81 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -129,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -137,7 +137,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -586,44 +586,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -642,19 +642,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "درونی سازی" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "در سطح ماژول" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -663,76 +663,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -751,7 +751,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -804,7 +804,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -921,7 +921,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -965,24 +965,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1002,28 +1002,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1035,28 +1035,28 @@ msgstr "" msgid "Index" msgstr "فهرست" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "انتشار" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1119,8 +1119,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1497,13 +1497,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1511,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1541,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1570,131 +1570,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1766,17 +1766,17 @@ msgstr ":نویسنده" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "پارامترها" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "نوع برگشتی" @@ -1806,12 +1806,12 @@ msgstr "%s (C نوع)" msgid "%s (C variable)" msgstr "%s (C متغیر)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "" @@ -1819,7 +1819,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "" @@ -1842,106 +1842,106 @@ msgstr "تغییر داده شده در نسخه %s" msgid "Deprecated since version %s" msgstr "منسوخ شده از نسخه %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (توابع درونی)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s متد)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s مشخصه)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (ماژول)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "ماژول" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1963,7 +1963,7 @@ msgstr "عملگر" msgid "object" msgstr "شیء" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "استثناء" @@ -1983,88 +1983,88 @@ msgstr "" msgid "Raises" msgstr "برانگیختن" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (در ماژول %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (متغیر درونی)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (در ماژول %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (کلاس درونی)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (کلاس در %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s متد)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s متد استاتیک)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s متد استاتیک)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s مشخصه)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "ماژول ها" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "منسوخ شده" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2140,7 +2140,7 @@ msgstr "صفحه جستجو" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2200,21 +2200,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2234,6 +2234,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2259,22 +2260,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,38 +2419,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2467,7 +2468,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2477,14 +2478,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2494,23 +2495,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2529,31 +2530,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2573,26 +2574,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2648,29 +2649,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2678,39 +2679,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2746,17 +2747,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2771,25 +2772,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2867,6 +2868,7 @@ msgid "Warning" msgstr "هشدار" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "" @@ -2874,13 +2876,29 @@ msgstr "" msgid "Continued on next page" msgstr "" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "جستجو" @@ -3017,13 +3035,13 @@ msgstr "موضوع بعدی" msgid "next chapter" msgstr "فصل بعدی" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3031,20 +3049,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "جستجو" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "نتایج جستجو" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3102,20 +3120,20 @@ msgstr "لینک ثابت به این تعریف" msgid "Hide Search Matches" msgstr "عدم نمایش نتایج یافت شده" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3132,18 +3150,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3214,7 +3232,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3275,15 +3293,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3320,12 +3338,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3343,12 +3361,12 @@ msgstr "" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 233cdbe1a8508ad338145f3cdbfc76bf19a369b8..d6c74e0bf3dcf60b2098778ac28d8e7e7459495b 100644 GIT binary patch delta 11338 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 G;Qs(LDF8YE delta 11165 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 WL5E(8<fT)k3w!+;P?9%K1pg1RF5DOZ diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index d82b6bf72..ee28d41a7 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -130,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -587,44 +587,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -643,19 +643,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Moduulitaso" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -664,76 +664,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -752,7 +752,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -805,7 +805,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -966,24 +966,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1003,28 +1003,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1036,28 +1036,28 @@ msgstr "" msgid "Index" msgstr "Sisällysluettelo" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1120,8 +1120,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1498,13 +1498,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1512,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1542,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1571,131 +1571,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1767,17 +1767,17 @@ msgstr "Tekijä: " msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1807,12 +1807,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "" @@ -1820,7 +1820,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "" @@ -1843,106 +1843,106 @@ msgstr "Muutettu versiossa %s" msgid "Deprecated since version %s" msgstr "Poistettu versiosta %s alkaen" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (moduuli)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "moduuli" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "" @@ -1984,88 +1984,88 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "moduulit" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Poistettu" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (poistettu)" @@ -2141,7 +2141,7 @@ msgstr "Etsi sivu" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2201,21 +2201,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2235,6 +2235,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2260,22 +2261,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2419,38 +2420,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2468,7 +2469,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2478,14 +2479,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2495,23 +2496,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2530,31 +2531,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2574,26 +2575,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2649,29 +2650,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2679,39 +2680,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2747,17 +2748,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2772,25 +2773,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2868,6 +2869,7 @@ msgid "Warning" msgstr "Varoitus" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "" @@ -2875,13 +2877,29 @@ msgstr "" msgid "Continued on next page" msgstr "" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Etsi" @@ -3018,13 +3036,13 @@ msgstr ">>" msgid "next chapter" msgstr ">>" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Javascript pitää olla sallittu, jotta etsintä toimii." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3032,20 +3050,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Anna hakusanat kokonaan, osasanoilla ei haeta." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "etsi" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Etsinnän tulos" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3103,20 +3121,20 @@ msgstr "" msgid "Hide Search Matches" msgstr "Piilota löydetyt" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3133,18 +3151,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3215,7 +3233,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3276,15 +3294,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3321,12 +3339,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3344,12 +3362,12 @@ msgstr "" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index 303dbccbf200793c3abc5f7c8292419a856322e2..d25a867daa7dd2a66fa0bdbaaa658ad967e1f108 100644 GIT binary patch delta 11399 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 delta 11219 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 T<NC?JaNq1EJ5C3?63hP&epIjK diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index 8dc6116c4..6762dc21e 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -25,9 +25,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-27 16:29+0000\n" -"Last-Translator: Julien Malard <julien.malard@mail.mcgill.ca>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: LAURENT Raphaël <laurent@ined.fr>\n" "Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -139,7 +139,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -147,7 +147,7 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à la lecture en parallèle, on supposera qu’elle ne l'est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -155,7 +155,7 @@ msgid "" "explicit" msgstr "l’extension %s ne se déclare pas compatible à l’écriture en parallèle, on supposera qu’elle ne l’est pas - merci de demander à l'auteur de l’extension de vérifier ce qu’il en est et de le préciser explicitement" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -604,44 +604,44 @@ msgstr "" msgid "preparing documents" msgstr "document en préparation" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "copie des images..." -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format 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:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "impossible de copier le fichier image %r: %s" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "impossible d'écrire le fichier image %r: %s" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "Pillow non trouvé - copie des fichiers image" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "fichier %s en cours d'écriture" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "mimetype inconnu pour %s, il sera ignoré" @@ -660,19 +660,19 @@ msgstr "aucun changement dans la version %s" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Fonctions de base" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Module" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "copie du fichier source..." -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -681,76 +681,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "Le fichier ePub se trouve dans %(outdir)s ." -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "la variable de configuration \"epub_language\" (ou \"language\") ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "le paramètre de configuration \"epub_uid\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "le paramètre de configuration \"epub_title\" (ou \"html_title\") ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "le paramètre de configuration \"epub_author\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "le paramètre de configuration \"epub_contributor\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "le paramètre de configuration \"epub_description\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "le paramètre de configuration \"epub_publisher\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "le paramètre de configuration \"epub_copyright\" (ou \"copyright\") ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "le paramètre de configuration \"epub_identifier\" ne peut pas être vide pour EPUB3" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 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:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "fichier CSS invalide : %r, le fichier sera ignoré" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "La liste des messages se trouve dans %(outdir)s." -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "construction [%s]:" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "lecture de la template..." -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "écriture de la liste des messages..." @@ -769,7 +769,7 @@ msgstr "Les pages HTML sont dans %(outdir)s ." msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -822,7 +822,7 @@ msgstr "copie des fichiers statiques..." msgid "html_static_path entry %r does not exist" msgstr "l'entrée html_static_path %r n'existe pas" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "le fichier de logo %r n'existe pas" @@ -939,7 +939,7 @@ msgstr "Le manuel se trouve dans %(outdir)s." msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "aucun valeur de configuration \"man_pages\" trouvée; aucun page du manuel ne sera enregistrée" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -983,24 +983,24 @@ msgstr "aucun paramètre de configuration \"texinfo_documents\" trouvé: aucun d msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "La valeur du paramètre \"texinfo_documents\" référence un document inconnu %s" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "résolution des références..." -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "(dans" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1020,28 +1020,28 @@ msgstr "Les fichiers XML se trouvent dans %(outdir)s." msgid "The pseudo-XML files are in %(outdir)s." msgstr "Le fichier pseudo-XML se trouve dans %(outdir)s." -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Les fichiers LaTex se trouvent dans %(outdir)s." -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "aucune valeur de configuration \"latex_documents\" trouvée; aucun document de sera généré" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "La valeur du paramètre \"latex_documents\" référence un document inconnu %s" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1053,28 +1053,28 @@ msgstr "La valeur du paramètre \"latex_documents\" référence un document inco msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Version" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "copie des fichiers de support Tex..." -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "paramètre de configuration inconnu : latex_elements[%r]. il sera ignoré" @@ -1137,8 +1137,8 @@ msgstr "Un rapport d'erreur peut être déposé dans le système de tickets à < msgid "job number should be a positive number" msgstr "le numéro du job doit être positif" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "Pour plus d'information : <http://sphinx-doc.org/>." @@ -1283,7 +1283,7 @@ msgstr "impossible de combiner l'option -a avec le nom du fichier" #: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" -msgstr "impossible d'ouvrir le fichier des avertissements %r: %s" +msgstr "impossible d'ouvrir le fichier des avertissements : %s" #: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" @@ -1515,13 +1515,13 @@ msgstr "Merci de saisir un nouveau nom de fichier, ou de renommer le fichier exi msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "Indiquer quelles extensions Sphinx doivent être activées" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "Note : imgmath et mathjax ne peuvent pas être activés en même temps. imgmath a été désactivé." -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1529,29 +1529,29 @@ msgid "" "directly." msgstr "\nUn fichier Makefile et un fichier de commandes Windows peuvent être générés pour vous, afin que vous puissiez exécuter par exemple `make html' au lieu d'appeler directement sphinx-build." -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "Création du Makefile ? (y/n)" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "Création du fichier de commandes Windows ? (y/n)" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "fichier en cours de création %s." -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "Le fichier %s existe déjà, il ne sera pas remplacé" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "Terminé : la structure initiale a été créée." -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1559,26 +1559,26 @@ msgid "" "source files. " msgstr "\nVous devez maintenant remplir votre fichier principal %s et créer d'autres fichiers sources\nde documentation." -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "Utilisez le fichier Makefile pour construire la documentation, comme ceci :\n make builder\n" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "Utiliser sphinxdoc-build pour construire la documentation comme ceci : \nsphinx-build -b builder %s %s\n" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1588,131 +1588,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nGénération des fichiers requis pour un projet Sphinx\n\nsphinx-quickstart est un outil interactif qui vous pose des questions à propos de votre \nprojet et génère une structure complète de répertoires et un exemple\nde fichier Makefile qui peut être utilisé avec sphinx-build.\n" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "mode silencieux" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "répertoire de sortie" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "si spécifié, les répertoires source et build seront séparés" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "Options basiques du projet." -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "nom du projet" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "nom de l'auteur" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "version du projet" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "version du projet" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "langue du document" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "préfixe des fichiers source" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "nom du document principal" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "utilisé epub" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "autoriser l'extension %s" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "Création des fichiers Batchfile et Makefile" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "créer un fichier makefile" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "ne pas créer un fichier makefile" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "créer un fichier batch" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "ne pas créer un fichier batch" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "utiliser make-mode pour Makefile/make.bat" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "ne pas utiliser make-mode pour Makefile/make.bat" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "répertoire des templates" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "définissez une variable de template" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "vous avez spécifiez \"quit\" , mais \"project\" ou \"author\" ne sont pas spécifiés." -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "Erreur : le chemin spécifié n'est pas un répertoire, ou les fichiers Sphinx existent déjà." -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "sphinx-quickstart peut générer ces fichiers seulement dans un répertoire vide. Merci de spécifier un nouveau répertoire racine." -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "Variable de template invalide : %s" @@ -1784,17 +1784,17 @@ msgstr "Auteur : " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Paramètres" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Renvoie" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Type renvoyé" @@ -1824,12 +1824,12 @@ msgstr "%s (type C)" msgid "%s (C variable)" msgstr "%s (variable C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "fonction" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "membre" @@ -1837,7 +1837,7 @@ msgstr "membre" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "type" @@ -1860,106 +1860,106 @@ msgstr "Modifié dans la version %s" msgid "Deprecated since version %s" msgstr "Obsolète depuis la version %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "Déclaration dupliquée, également définie dans '%s'.\nLa déclaration est '%s'." -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "Paramètres du modèle" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Déclenche" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "énumération" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "énumérateur" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "déclaration dupliquée, également définie dans '%s'. Le nom de la déclaration est '%s'." -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (fonction de base)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (méthode %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (classe)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variable globale ou constante)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Arguments" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "méthode" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "données" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "module" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1981,7 +1981,7 @@ msgstr "opérateur" msgid "object" msgstr "objet" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "exception" @@ -2001,88 +2001,88 @@ msgstr "Variables" msgid "Raises" msgstr "Lève" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (dans le module %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable de base)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (dans le module %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (classe de base)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (classe dans %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (méthode %s.%s)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (méthode statique %s.%s)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (méthode statique %s)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (méthode de la classe %s.%s)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (méthode de la classe %s)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (attribut %s.%s)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Index des modules Python" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Obsolète" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "méthode de classe" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "méthode statique" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, 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:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (obsolète)" @@ -2158,7 +2158,7 @@ msgstr "Page de recherche" msgid "duplicate citation %s, other instance in %s" msgstr "citation dupliquée %s, une autre instance dans %s" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "libellé dupliqué %s, l'autre instance se trouve dans %s" @@ -2218,21 +2218,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "le domaine %r n'est pas enregistré." -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "une table des matières auto-référencée a été trouvé. Elle sera ignorée." -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "Le document n'est inclut dans aucune table des matières de l'arborescence." @@ -2252,6 +2252,7 @@ msgid "unknown index entry type %r" msgstr "type d'index saisie inconnu %r" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Symboles" @@ -2277,22 +2278,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "la table des matière contient des références à des documents inexistants %r" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "fichier image %s illisible " -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "fichier image %s illisible : %s" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2417,7 +2418,7 @@ msgstr "%s n'est pas un répertoire" #: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" -msgstr "invalid regex %r in %s" +msgstr "regex invalide dans %s" #: sphinx/ext/coverage.py:55 #, python-format @@ -2436,38 +2437,38 @@ msgstr "regex invalide %r dans coverage_c_regexes" msgid "module %s could not be imported: %s" msgstr "le module %s ne pas être importé : %s" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "option '+' ou '-' manquante dans %s." -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' n'est pas une option valide." -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "%s n'est pas une option pyversion valide" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "type TestCode invalide" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2485,7 +2486,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "Directive « graphviz » sans contenu ignorée." -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2495,14 +2496,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "la commande dot %r ne peut pas être exécutée (nécessaire pour le rendu graphviz). Vérifiez le paramètre graphviz_dot" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2512,23 +2513,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format doit être « png » ou « svg », mais est %r" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "dot code %r: %s" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[graphe: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[graphe]" @@ -2547,31 +2548,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "La commande LaTex %r ne peut pas être exécutée (nécessaire pour l'affichage math), vérifier le paramètre imgmath_latex" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Lien permanent vers cette équation" @@ -2591,26 +2592,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(disponible dans %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "(dans %s)" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "l'indentifiant intersphinx %r n'est pas une chaine, il sera ignoré" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2666,29 +2667,29 @@ msgstr "Vue d'ensemble : code du module" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Modules pour lesquels le code est disponible</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "erreur pendant la mise en forme de l 'argument %s:%s" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "attribut manquant %s dans l'objet %s" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2696,39 +2697,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "Bases : %s" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "alias de :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "option invalide dans autodoc_default_flags: %r, elle sera ignorée" @@ -2764,17 +2765,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2789,25 +2790,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "répertoire où placer toutes les sorties" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "extension par défaut pour les fichiers (par défaut : %(default)s)" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "répertoire des templates spécifiques (par défaut : %(default)s)" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2885,6 +2886,7 @@ msgid "Warning" msgstr "Avertissement" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "suite de la page précédente" @@ -2892,13 +2894,29 @@ msgstr "suite de la page précédente" msgid "Continued on next page" msgstr "Suite sur la page suivante" +#: sphinx/templates/latex/sphinxmessages.sty_t:9 +msgid "continues on next page" +msgstr "suite sur la page suivante" + +#: sphinx/templates/latex/sphinxmessages.sty_t:10 +msgid "Non-alphabetical" +msgstr "" + +#: sphinx/templates/latex/sphinxmessages.sty_t:12 +msgid "Numbers" +msgstr "Chiffres" + +#: sphinx/templates/latex/sphinxmessages.sty_t:13 +msgid "page" +msgstr "page" + #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 #: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Table des matières" #: sphinx/themes/agogo/layout.html:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Recherche" @@ -3035,13 +3053,13 @@ msgstr "Sujet suivant" msgid "next chapter" msgstr "Chapitre suivant" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Veuillez activer le JavaScript pour que la recherche fonctionne." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3049,20 +3067,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Vous pouvez effectuer une recherche au sein des documents. Saisissez les termes\nde votre recherche dans le champs ci-dessous et cliquez sur \"rechercher\". Notez que la fonctionnalité de recherche\nva automatiquement chercher l'ensemble des mots. Les pages\ncontenant moins de mots n'apparaîtront pas dans la liste des résultats." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "rechercher" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Résultats de la recherche" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3120,20 +3138,20 @@ msgstr "Lien permanent vers cette définition" msgid "Hide Search Matches" msgstr "Cacher les résultats de la recherche" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Recherche en cours" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Préparation de la recherche..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "La recherche est finie, %s page(s) trouvée(s) qui corresponde(nt) à la recherche." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", dans" @@ -3150,18 +3168,18 @@ msgstr "Réduire la barre latérale" msgid "Contents" msgstr "Contenu" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "La note de bas de page [%s] n'est pas référencée." -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "La note de bas de page [#] n'est pas référencée." @@ -3232,7 +3250,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3293,15 +3311,15 @@ msgstr "Lien permanent vers ce tableau" msgid "Permalink to this code" msgstr "Lien permanent vers ce code" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Lien permanent vers cette image" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "Lien permanent vers cette table des matières" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "impossible d'obtenir la taille de l'image. L'option :scale: est ignorée." @@ -3338,12 +3356,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Clé de configuration inconnue : latex_elements[%r] est ignoré." @@ -3361,12 +3379,12 @@ msgstr "[image]" msgid "caption not inside a figure." msgstr "la légende n'est pas à l'intérieur de la figure." -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index 7146efdc23a14a03671099170109775fe2cfddb1..b53fd1f60d2b4423cfaad4c3c73d333142199b0a 100644 GIT binary patch delta 11345 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 delta 11160 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 NRIGHtYcF33{Xd_`!iN9= diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index 41505ae42..2e222d711 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -130,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -587,44 +587,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -643,19 +643,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "רמת המודול" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -664,76 +664,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -752,7 +752,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -805,7 +805,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -966,24 +966,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "(בתוך" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1003,28 +1003,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1036,28 +1036,28 @@ msgstr "" msgid "Index" msgstr "אינדקס" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "מהדורה" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1120,8 +1120,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1498,13 +1498,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1512,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1542,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1571,131 +1571,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1767,17 +1767,17 @@ msgstr "מחבר:" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "פרמטרים" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1807,12 +1807,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "פונקציה" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "" @@ -1820,7 +1820,7 @@ msgstr "" msgid "macro" msgstr "מאקרו" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "" @@ -1843,106 +1843,106 @@ msgstr "השתנה בגרסה %s" msgid "Deprecated since version %s" msgstr " לא מומלץ לשימוש מגרסה %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "מחלקה" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "מודול" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "" @@ -1984,88 +1984,88 @@ msgstr "משתנים" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2141,7 +2141,7 @@ msgstr "דף חיפוש" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2201,21 +2201,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2235,6 +2235,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2260,22 +2261,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2419,38 +2420,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2468,7 +2469,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2478,14 +2479,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2495,23 +2496,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2530,31 +2531,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2574,26 +2575,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2649,29 +2650,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>כל המודולים שיש להם קוד זמין</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2679,39 +2680,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2747,17 +2748,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2772,25 +2773,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2868,6 +2869,7 @@ msgid "Warning" msgstr "אזהרה" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "המשך מעמוד קודם" @@ -2875,13 +2877,29 @@ msgstr "המשך מעמוד קודם" msgid "Continued on next page" msgstr "המשך בעמוד הבא" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "חיפוש" @@ -3018,13 +3036,13 @@ msgstr "נושא הבא" msgid "next chapter" msgstr "פרק הבא" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "אנא הפעל ג'אואסקריפט ע\"מ לאפשר את\n החיפוש." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3032,20 +3050,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "חיפוש" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "תוצאות החיפוש" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3103,20 +3121,20 @@ msgstr "קישור קבוע להגדרה זו" msgid "Hide Search Matches" msgstr "הסתר תוצאות חיפוש" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3133,18 +3151,18 @@ msgstr "כווץ סרגל צד" msgid "Contents" msgstr "תוכן" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3215,7 +3233,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3276,15 +3294,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3321,12 +3339,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3344,12 +3362,12 @@ msgstr "[תמונה]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo index f44e96e975295a4e2e442da0602a40483be6f270..43d8a0544b2a1068e0c64ef343342c915fdc342b 100644 GIT binary patch delta 11417 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 delta 11197 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 F{U5u=(4hbT diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po index d8a7564d0..6a95b6be4 100644 --- a/sphinx/locale/hi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-25 09:36+0000\n" -"Last-Translator: Ajay Singh <ajaysajay@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" +"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -123,7 +123,7 @@ msgstr "निर्देश %r पहले से पंजीकृत ह msgid "role %r is already registered, it will be overridden" msgstr "भूमिका %r पहले से पंजीकृत है, यह निरस्त हो जाएगी" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -131,7 +131,7 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर पाठन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -139,7 +139,7 @@ msgid "" "explicit" msgstr "%s आयाम यह घोषित नहीं करता कि यह समानांतर लेखन के लिए सुरक्षित है. यह मानते हुए की ऐसा नहीं है - कृपया आयाम के लेखक को जांच करने और स्पष्ट व्यक्त करने के लिए कहें." -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "%s पर काम कर रहे हैं" @@ -338,7 +338,7 @@ msgstr "%r भूमिका पहले से अधिकार-क्ष #: sphinx/registry.py:226 #, python-format msgid "The %r index is already registered to domain %s" -msgstr "The %r index is already registered to domain %s" +msgstr "r% अनुक्रमणिका पहले से अधिकार-क्षेत्र %s में पंजीकृत है" #: sphinx/registry.py:250 #, python-format @@ -588,44 +588,44 @@ msgstr "लेखन के लिए शेष लेखपत्र: %s" msgid "preparing documents" msgstr "लेखपत्र बनाए जा रहे हैं" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "विषय-सूची प्रविष्टि की प्रतिलिपि पायी गई: %s" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "चित्रों की प्रतिलिपि बनाई जा रही है..." -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "चित्रलेख फाइल %r नहीं पढ़ा जा सका: इसकी प्रतिलिपि बनाई जा रही है" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "चित्रलेख फाइल %r की प्रतिलिपि नहीं की जा सकी:%s" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "चित्रलेख फाइल %r नहीं लिखा जा सका:%s" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "पिलो नहीं मिला - चित्र फाइलों की प्रतिलिपि बनाई जा रही है" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "%s फाइल को लिखा जा रहा है..." -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "%s के लिए अज्ञात लेख प्रकार, छोड़ा गया" @@ -644,19 +644,19 @@ msgstr "%s संस्करण में कोई परिवर्तन msgid "writing summary file..." msgstr "सार फाइल को लिखा जा रहा है..." -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "अंतर्निर्मित" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "प्रभाग स्तर" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "स्रोत फाइलों की प्रतिलिपि बनाई जा रही है..." -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "परिवर्तन सूची बनाने के लिए %r को नहीं पढ़ा जा सका" @@ -665,76 +665,76 @@ msgstr "परिवर्तन सूची बनाने के लिए % msgid "The dummy builder generates no files." msgstr "मूक निर्माता से किसी फाइलों की उत्पत्ति नहीं होती." -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "ई-पब फाइल %(outdir)s में है." -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_language\" (अथवा \"language\") खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_uid\" एक्स.एम्.एल. नाम होना चाहिए" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_title\" (अथवा \"html_title\") खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_author\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_contributor\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_description\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_publisher\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_copyright\" (अथवा \"copyright\") खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"epub_identifier\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "ई-पब3 के लिए विन्यास मान \"version\" खाली नहीं होना चाहिए" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "अमान्य css_file: %r, उपेक्षित" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "सन्देश सूचीपत्र %(outdir)s में हैं." -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "निर्माणाधीन [%s]: " -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "%d नमूना फाइलों के लक्ष्य" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "नमूनों को पढ़ा जा रहा है..." -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "सन्देश सूचीपत्रों को लिखा जा रहा है..." @@ -753,7 +753,7 @@ msgstr "एच.टी.एम्.एल. पृष्ठ %(outdir)sमें ह msgid "Failed to read build info file: %r" msgstr "निर्माण सूचनापत्र फाइल को नहीं पढ़ा जा सका: %r" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -806,7 +806,7 @@ msgstr "अपरिवर्ती फाइलों की प्रतिल msgid "html_static_path entry %r does not exist" msgstr "html_static_path प्रविष्टि %r का अस्तित्व नहीं है" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "प्रतीकचिन्ह फाइल %r का अस्तित्व नहीं है" @@ -923,7 +923,7 @@ msgstr "पुस्तिका पृष्ठ %(outdir)sमें हैं." msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "कोई \"man_pages\" विन्यास मान नहीं मिला; कोई नियमावली पृष्ठ नहीं लिखे जाएंगे" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "लिखा जा रहा है" @@ -967,24 +967,24 @@ msgstr "कोई \"texinfo_documents\" विन्यास मान नह msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "\"texinfo_documents\" विन्यास मान अज्ञात लेखपत्र %s का सन्दर्भ है" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "%s की प्रक्रिया जारी" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "सन्दर्भों का विश्लेषण किया जा रहा है..." -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (में" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "टेक्सइन्फो सहायक फाइलों की प्रतिलिपि की जा रही है..." -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "मेकफाइल लिखने में त्रुटि: %s" @@ -1004,28 +1004,28 @@ msgstr "एक्स.एम्.एल. लेखपत्र %(outdir)s मे msgid "The pseudo-XML files are in %(outdir)s." msgstr "छद्म-एक्स.एम्.एल. लेखपत्र %(outdir)s में हैं." -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "लाटेक्स लेखपत्र %(outdir)s में हैं." -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\nइन्हें (pdf)latex से चलाने के लिए उस निर्देशिका में 'मेक' आदेश चलायें\n(ऐसा स्वचालित रूप से करने के लिए यहाँ 'make latexpdf' आदेश का उपयोग करें)" -#: sphinx/builders/latex/__init__.py:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "कोई \"latex_documents\" विन्यास मान नहीं मिला; कोई नहीं लिखे जाएंगे" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "\"latex_documents\" विन्यास मान अज्ञात लेखपत्र %s का सन्दर्भ है" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1037,28 +1037,28 @@ msgstr "\"latex_documents\" विन्यास मान अज्ञात msgid "Index" msgstr "अनुक्रमणिका" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "आवृत्ति" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "%r भाषा के लिए कोई बाबेल विकल्प नहीं " -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "टेक्स सहायक फाइलों की प्रतिलिपि की जा रही है..." -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "टेक्स सहायक फाइलों की प्रतिलिपि की जा रही है..." -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "अतिरिक्त फाइलों की प्रतिकृति बनाई जा रही है" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "अज्ञात विन्यास कुंजी: latex_elements[%r]. उपेक्षित." @@ -1121,8 +1121,8 @@ msgstr "त्रुटि की सूचना <https://github.com/sphinx-doc msgid "job number should be a positive number" msgstr "कार्य संख्या एक धनात्मक संख्या होनी चाहिए" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "अधिक जानकारी के लिए <http://sphinx-doc.org/> देखें." @@ -1499,13 +1499,13 @@ msgstr "कृपया एक नया फाइल नाम दें, अ msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "इनमें से कौन सा स्फिंक्स आयाम प्रयोग करना है, इंगित करें:" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "टिप्पणी: imgmath और mathjax एक साथ समर्थ नहीं हो सकते. imgmath को अचिन्हित कर दिया गया है." -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1513,29 +1513,29 @@ msgid "" "directly." msgstr "\nएक मेकफाइल और एक विंडोज़ कमांड फाइल का निर्माण किया जा सकता है,\nताकि आप सीधे स्फिंक्स-बिल्ड के स्थान पर मात्र 'make html' आदि \nप्रयोग कर सकें." -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "मेकफाइल बनाएं? (हाँ के लिए y/ ना के लिए n)" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "विंडोज़ कमांड फाइल बनाएं? (हाँ के लिए y/ ना के लिए n)" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "फाइल बनाई जा रही है ...%s" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "फाइल %s पहले से उपस्थित है, छोड़ दी गई." -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "समाप्त: एक प्रारंभिक निर्देशिका का ढांचा बना दिया गया है." -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1543,26 +1543,26 @@ msgid "" "source files. " msgstr "\nअब आप आपनी मुख्य फाइल %s को भरें और अन्य \nस्रोत प्रलेखों को बनाएं." -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "प्रलेख बनाने के लिए मेकफाइल का उपयोग करें, जैसे कि:\n make builder\n" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "प्रलेख बनाने के लिए स्फिंक्स-बिल्ड कमांड का उपयोग करें, जैसे कि:\n sphinx-build -b builder %s %s\n" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "जहाँ \"builder\" एक समर्थित निर्माता है, जैसे कि html, latex or linkcheck.\nwhere \"builder\" is one of the supported builders, e.g. html, latex or linkcheck.\n" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1572,131 +1572,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nस्फिंक्स परियोजना के लिए आवश्यक फाइल बनाएं.\n\nस्फिंक्स-त्वरित-आरम्भ एक संवादपूर्ण उपकरण है जो आपकी परियोजना के \nबारे में कुछ प्रश्न पूछकर पूरी प्रलेखों की निर्देशिका और नमूना मेकफाइल \nबना देता है जिसे स्फिंक्स-बिल्ड में प्रयोग किया जा सकता है.\n" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "शांत ढंग " -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "परिणाम पथ" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "ढांचे के विकल्प" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "यदि निर्दिष्ट हो तो विभिन्न स्रोत और निर्माण पथ" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "_templates आदि में बिंदु का बदलाव" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "परोयोजना के मूलभूत विकल्प" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "परियोजना का नाम" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "लेखकों के नाम" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "परियोजना का संस्करण" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "परियोजना की आवृत्ति" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "लेखपत्र की भाषा" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "स्रोत फाइल का प्रत्यय" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "मुख्य लेखपत्र का नाम" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "ई-पब प्रयोग करें" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "आयाम के विकल्प" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "आयाम %s सक्षम करें" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "स्वेच्छित आयाम सक्षम करें" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "मेकफाइल और बैचफाइल का सर्जन" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "मेकफाइल बनाएं" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "मेकफाइल नहीं बनाएं" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "बैचफाइल बनाएं" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "बैचफाइल नहीं बनाएं" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "Makefile/make.bat के लिए make-mode का प्रयोग करें" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "Makefile/make.bat के लिए make-mode का प्रयोग नहीं करें" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "परियोजना नमूनावृत्ति" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "नमूना फाइलों के लिए नमूना निर्देशिका" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "नमूना चर-पद का निरूपण करें" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "\"शांत\" निर्दिष्ट है, परन्तु कोई भी \"परियोजना\" अथवा \"लेखक\" निर्दिष्ट नहीं है." -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "त्रुटि: दिया गया पथ निर्देशिका नहीं है, अथवा स्फिंक्स फाइलें पहले से उपस्थित हैं." -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "स्फिंक्स-त्वरित-आरम्भ केवल एक खाली निर्देशिका में कार्यशील हो सकती है. कृपया एक नया मूल पथ निर्दिष्ट करें." -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "अमान्य नमूना चर-पद: %s" @@ -1768,17 +1768,17 @@ msgstr "लेखक:" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "मापदण्ड" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "प्रदत्त " -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "प्रदत्त प्रकार " @@ -1808,12 +1808,12 @@ msgstr "%s (C प्रकार)" msgid "%s (C variable)" msgstr "%s (C चरपद)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "फंक्शन" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "सदस्य" @@ -1821,7 +1821,7 @@ msgstr "सदस्य" msgid "macro" msgstr "मैक्रो" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "प्रकार" @@ -1844,106 +1844,106 @@ msgstr "संस्करण %s से अलग " msgid "Deprecated since version %s" msgstr "संस्करण %s से प्रतिबंधित " -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "घोषणा की पुनरावृत्ति, '%s' में भी घोषित.\n'%s' घोषित है. " -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "नमूना मानदण्ड " -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "देता है " -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "वर्ग" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "युग्म" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "अवधारणा " -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "गणक" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "प्रगणक " -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "घोषणा की पुनरावृत्ति, '%s' में भी घोषित.\nघोषणा का नाम '%s' है. " -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (अंतर्निर्मित फंक्शन)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधि)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (वर्ग)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (वैश्विक चरपद अथवा अचर) " -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s लक्षण)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "चर " -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (प्रभाग)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "पद्धति" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "आंकड़े " -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "लक्षण" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "प्रभाग" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "अमान्य math_eqref_format: %r" @@ -1965,7 +1965,7 @@ msgstr "चालक" msgid "object" msgstr "वस्तु" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "अपवाद " @@ -1985,88 +1985,88 @@ msgstr "चर पद " msgid "Raises" msgstr "उभारता है " -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s प्रभाग में )" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (अंतर्निर्मित चर पद)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (%s प्रभाग में )" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (अंतर्निर्मित वर्ग)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (%s वर्ग में)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s विधि)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s स्थैतिक विधि)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s स्थैतिक विधि)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s वर्ग विधि)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s वर्ग विधि) " -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s लक्षण)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "पाइथन प्रभाग सूची" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "प्रभाग" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "अवमानित " -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "वर्ग विधि" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "स्थैतिक पद्धति" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "पारस्परिक-सन्दर्भों के लिए एक से अधिक लक्ष्य मिले %r: %s" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "(अवमानित)" @@ -2142,7 +2142,7 @@ msgstr "खोज पृष्ठ" msgid "duplicate citation %s, other instance in %s" msgstr "प्रतिरूप उद्धरण %s, दूसरी प्रतिकृति %s में है " -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "प्रतिरूप शीर्षक %s, दूसरी प्रतिकृति %s में है " @@ -2202,21 +2202,21 @@ msgid "" "another doctree directory." msgstr "यह परिस्थिति चुने गए निर्माता से मेल नहीं खाती, कृपया दूसरी डॉक-ट्री निर्देशिका चुनें. " -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "लेखपत्रों के पर्यवेक्षण में असफलता %s: %r" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "अधिकारक्षेत्र %r पंजीकृत नहीं है" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "स्वयं-संदर्भित विषय-सूची-संरचना मिली है. उपेक्षा की गई." -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "लेखपत्र किसी भी विषय-सूची-संरचना में सम्मिलित नहीं है" @@ -2236,6 +2236,7 @@ msgid "unknown index entry type %r" msgstr "अनुक्रमणिका की प्रविष्टि का प्रकार अज्ञात %r" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "संकेत " @@ -2261,22 +2262,22 @@ msgstr "विषय-सूची-संरचना में छोड़े ग msgid "toctree contains reference to nonexisting document %r" msgstr "विषय-सूची-संरचना में अविद्यमान लेखपत्र %r का सन्दर्भ है" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "चित्र फाइल पठनीय नहीं है: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "चित्र फाइल %s पठनीय नहीं है: %s" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "उतारी गई फाइल पठनीय नहीं है: %s" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s में पहले से भाग संख्या नियत है (एक के अन्दर दूसरा अंकित विषय-सूची-संरचना)" @@ -2420,38 +2421,38 @@ msgstr "अमान्य रेगएक्स #regex# %r, coverage_c_regexes msgid "module %s could not be imported: %s" msgstr "प्रभाग %s का आयत नहीं किया जा सका: %s" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "'%s' विकल्प में अनुपस्थित '+' या '-'." -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' एक मान्य विकल्प नहीं है." -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' एक मान्य पाईवर्शन #pyversion# विकल्प नहीं है. " -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "अमान्य टेस्टकोड का प्रकार " -#: sphinx/ext/doctest.py:291 +#: 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 "स्रोतों में डॉकटेस्ट्स की जांच पूरी, परिणाम %(outdir)s/output.txt में देखें. " -#: sphinx/ext/doctest.py:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "%s भाग में %s पर कोई निर्देश / परिणाम नहीं: %s" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "अमान्य डॉकटेस्ट निर्देश की उपेक्षा की जा रही है: %r" @@ -2469,7 +2470,7 @@ msgstr "बाहरी ग्राफविज़ फाइल %r नहीं msgid "Ignoring \"graphviz\" directive without content." msgstr "विषय-वस्तु के बिना ग्राफविज़ निर्देश की उपेक्षा की जा रही है. " -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2479,14 +2480,14 @@ msgid "" "%r" msgstr "डॉट ने किसी परिणाम फाइल का नहीं बनाया:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "डॉट निर्देश %r नहीं चलाया जा सकता (ग्राफविज़ परिणाम के लिए आवश्यक), ग्राफविज़_डॉट मान की जांच करें" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2496,23 +2497,23 @@ msgid "" "%r" msgstr "डॉट त्रुटि के साथ बहार आ गया:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "ग्राफविज़_आउटपुट_फॉर्मेट का 'पी.एन.जी', 'एस.वी.जी.', होना आवश्यक है, पर यह %r है" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "डॉट निर्देश %r: %s" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[graph]" @@ -2531,31 +2532,31 @@ msgid "" "%r" msgstr "परिवर्तक त्रुटि के साथ बहार आ गया:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "लाटेक्स आदेश %r नहीं चलाया जा सकता (गणित दिखाने के लिए आवश्यक). आई.एम्.जी.मैथ_लाटेक्स मान की जाँच करें" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s आदेश %r नहीं चलाया जा सकता (गणित दिखाने के लिए आवश्यक). imgmath_%s मान की जाँच करें" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "लाटेक्स दिखाएँ %r: %s" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "पंक्तिबद्ध लाटेक्स %r: %s" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "इस समीकरण की स्थायी कड़ी" @@ -2575,26 +2576,26 @@ msgid "" "alternatives:" msgstr "कुछ चीजों के साथ कुछ समस्या है, लेकिन काम के दूसरे विकल्प उपलब्ध हैं: " -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "कुछ चीजों पहुँचने में असफलता मिली और यह समस्याएँ मिलीं: " -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s में)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "(%s में)" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "इन्टरस्फिंक्स निर्धारक %r अक्षरमाला नहीं है. उपेक्षित" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "intersphinx_mapping[%s] पढने में असफलता, अनदेखी की गई: %r" @@ -2650,29 +2651,29 @@ msgstr "सिंहावलोकन: प्रभाग निर्देश msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>सभी प्रभाग जिनके लिए निर्देश उपलब्ध है</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "स्वतः %s (%r) के लिए अमान्य हस्ताक्षर" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "%s के पदों का प्रारूप बनाने में व्यवधान: %s" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "%s गुण %s वस्तु में अनुपस्थित" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "ऑटोडॉक: प्रलेखन हेतु %r निर्धारण करने में असफलता. निम्नलिखित अपवाद सामने आया:\n%s" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2680,39 +2681,39 @@ msgid "" "explicit module name)" msgstr "पता नहीं है कि कौन सा प्रभाग स्वतःप्रलेखन %r के लिए आयात करना है (लेखपत्र में \"प्रभाग\" या \"वर्तमान-प्रभाग\" निर्देश रख कर देखें; अथवा स्पष्ट प्रभाग नाम देकर देखें)" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "स्वतः प्रभाग नाम में \"::\" विवेकहीन है" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "स्वतः-प्रभाग %s के लिए हस्ताक्षर पद अथवा प्रत्युत्तरित टिप्पणी प्रदान की गई" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ अंतिम अक्षरमाला होनी चाहिए, न कि %r (%s प्रभाग में) -- __all__ की उपेक्षा की जाएगी" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "अनुपस्थित गुण का :members: में उल्लेख है अथवा __all__: प्रभाग %s, गुण %s" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "आधार: %s" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` का उपनाम" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "ऑटोडॉक्_डिफ़ॉल्ट_फ्लैग्स में अमान्य विकल्प की उपेक्षा की जा रही है: %r" @@ -2748,17 +2749,17 @@ msgid "" "contain .rst. Skipped." msgstr "ऑटोसमरी आतंरिक रूप से आर.एस.टी. फाइलें बनाता है. आपके सोर्स_सफिक्स में आर.एस.टी. सम्मिलित नहीं है. छोड़ा गया." -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[ऑटोसमरी] अब इसका स्वतःसारांश बना रहा है: %s" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "[ऑटोसमरी] %s पर लिख रहा है" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2773,25 +2774,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nस्वतः सारांश #autosummary# निर्देश का प्रयोग करते हुए पुर्नसरंचितपाठ बनाता है.\n\nस्फिंक्स-ऑटोजेन स्फिंक्स.एक्स्ट.ऑटोसमरी.जेनेरेट का मुखड़ा है.\nयह प्रदत्त फाइलों में सम्मिलित ऑटो समरी निर्देशों के अनुसार पुर्नसरंचितपाठ बनाता है\n\nस्वतः सारांश #autosummary# निर्देश का प्रारूप स्फिंक्स.एक्स्ट.ऑटोसमरी \nपाइथन प्रभाग में निबंधित है और इसे आप निम्नलिखित माध्यम से पढ़ सकते हैं:\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "आर.एस.टी. फाइलें बनाने के लिए स्रोत फाइलें" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "सभी परिणाम रखने के लिए निर्देशिका" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "फाइलों के लिए मानक प्रत्यय (मानक: %(default)s)" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "पारंपरिक प्रारूप निर्देशिका (मानक: %(default)s)" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "लेखपत्र आयातित सदस्य (मानक: %(default)s)" @@ -2869,6 +2870,7 @@ msgid "Warning" msgstr "चेतावनी" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "पिछले पृष्ठ से जारी" @@ -2876,13 +2878,29 @@ msgstr "पिछले पृष्ठ से जारी" msgid "Continued on next page" msgstr "अगले पृष्ठ पर जारी" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "खोज" @@ -3019,13 +3037,13 @@ msgstr "अगला प्रकरण" msgid "next chapter" msgstr "अगला अध्याय" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "खोज कार्य के लिए जावा स्क्रिप्ट का होना आवश्यक है. कृपया जावा स्क्रिप्ट को शुरू करें." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3033,20 +3051,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "यहाँ से आप इन प्रलेखों में खोज कर सकते हैं. अपने खोज शब्दों को\nनीचे दिए गए स्थान में दें और फिर \"खोज\" क्लिक करें. ध्यान रहे कि\nखोज प्रक्रम में सभी शब्दों की खोज की जाएगी. कमतर शब्दों वाले\nपृष्ठ परिणाम-तालिका में नहीं दिखेंगे." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "खोज" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "खोज परीणाम " -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3104,20 +3122,20 @@ msgstr "इस परिभाषा की स्थायी कड़ी" msgid "Hide Search Matches" msgstr "खोजे गए जोड़े छिपाएं" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "खोज जारी" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "खोज की तैयारी" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "खोज पूर्ण, खोज विषय के अनुकूल %s पृष्ठ मिला (मिले)." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", में " @@ -3134,18 +3152,18 @@ msgstr "किनारे का स्थान घटाएं" msgid "Contents" msgstr "विषय सामिग्री" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "4 पंक्तिबद्ध सूचियाँ मिलीं. यह आपके द्वारा उपयोग किए गए आयाम की त्रुटि हो सकती है: %r" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "पाद-टिप्पणी [%s] का कोई सन्दर्भ नहीं है." -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "पाद-टिप्पणी [#] सन्दर्भ कहीं नहीं है" @@ -3216,7 +3234,7 @@ msgstr "छोड़ा " msgid "failed" msgstr "असफल" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "जब निर्देशक वर्गों को जोड़ा जा रहा है, तब कोई अतिरिक्त चर-पद नहीं दिए जा सकते" @@ -3277,15 +3295,15 @@ msgstr "इस सारणी की स्थायी कड़ी" msgid "Permalink to this code" msgstr "इस निर्देश की स्थायी कड़ी" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "इस चित्र की स्थायी कड़ी" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "इस विषय-सूची-संरचना की स्थायी कड़ी" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "चित्र का आकार नहीं मिल सका. :scale: विकल्प की उपेक्षा की जा रही है." @@ -3322,12 +3340,12 @@ msgstr "दोनों तालिका-स्तंभ और :चौड़ा msgid "dimension unit %s is invalid. Ignored." msgstr "परिमाण मात्रक %s अमान्य है. उपेक्षा की जाएगी." -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "अनुक्रमणिका की प्रविष्टि का प्रकार %s मिला" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "अज्ञात विन्यास कुंजी: latex_elements[%r] की उपेक्षा की गई." @@ -3345,12 +3363,12 @@ msgstr "[चित्र]" msgid "caption not inside a figure." msgstr "शीर्षक रेखाचित्र के भीतर नहीं है" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "अकार्यान्वित बिंदु प्रकार: %r" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "अज्ञात बिंदु प्रकार: %r" diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.mo index 09d87687bdf7d2e1476ae539c06db8d1a6c30bc6..4d3aea0c2703d4adcfb3cfdb8c1be04be6acfacc 100644 GIT binary patch delta 11322 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 X&wDAZgxYEGDVx8@e^~kdJLdlYm@fD8 delta 11154 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 diff --git a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po index aad5fa480..3168863d3 100644 --- a/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hi_IN/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Hindi (India) (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi_IN/)\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -129,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -137,7 +137,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -586,44 +586,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -642,19 +642,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -663,76 +663,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -751,7 +751,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -804,7 +804,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -921,7 +921,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -965,24 +965,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1002,28 +1002,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1035,28 +1035,28 @@ msgstr "" msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1119,8 +1119,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1497,13 +1497,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1511,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1541,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1570,131 +1570,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1766,17 +1766,17 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1806,12 +1806,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "" @@ -1819,7 +1819,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "" @@ -1842,106 +1842,106 @@ msgstr "" msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1963,7 +1963,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "" @@ -1983,88 +1983,88 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2140,7 +2140,7 @@ msgstr "" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2200,21 +2200,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2234,6 +2234,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2259,22 +2260,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,38 +2419,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2467,7 +2468,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2477,14 +2478,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2494,23 +2495,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2529,31 +2530,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2573,26 +2574,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2648,29 +2649,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2678,39 +2679,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2746,17 +2747,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2771,25 +2772,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2867,6 +2868,7 @@ msgid "Warning" msgstr "" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "" @@ -2874,13 +2876,29 @@ msgstr "" msgid "Continued on next page" msgstr "" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "" @@ -3017,13 +3035,13 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3031,20 +3049,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3102,20 +3120,20 @@ msgstr "" msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3132,18 +3150,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3214,7 +3232,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3275,15 +3293,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3320,12 +3338,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3343,12 +3361,12 @@ msgstr "" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index e15cfd1178af061399b1a22146e6b4a953a602ac..6ab6785a8a04647b9410c099f7744ce451d186a8 100644 GIT binary patch delta 11339 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 delta 11164 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 Lu{Ft~d%%AIilWYO diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 944458254..df4eea180 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 19:50+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" "Last-Translator: Mario Šarić\n" "Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -130,7 +130,7 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "%s proširenje nema deklaraciju paralelnog čitanja, uz pretpostavku da nije - zamolite autora za provjeru i postavljanje deklaracije" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -587,44 +587,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -643,19 +643,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Ugrađeni dijelovi" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Nivo modula" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -664,76 +664,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -752,7 +752,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -805,7 +805,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -966,24 +966,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (u " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1003,28 +1003,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1036,28 +1036,28 @@ msgstr "" msgid "Index" msgstr "Abecedni popis" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Distribucija" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1120,8 +1120,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1498,13 +1498,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1512,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1542,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1571,131 +1571,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1767,17 +1767,17 @@ msgstr "Autor:" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Vraća" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Vraća tip" @@ -1807,12 +1807,12 @@ msgstr "%s (C tip)" msgid "%s (C variable)" msgstr "%s (C varijabla)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "član" @@ -1820,7 +1820,7 @@ msgstr "član" msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "tip" @@ -1843,106 +1843,106 @@ msgstr "Promijenjeno u verziji %s" msgid "Deprecated since version %s" msgstr "Zastarijelo od verzije %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "Parametri predloška" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Baca (iznimke)" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "razred" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (ugrađene funkcije)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (razred)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globalna varijabla ili konstanta)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Argumenti" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "podaci" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "izuzetak" @@ -1984,88 +1984,88 @@ msgstr "Varijable" msgid "Raises" msgstr "Podiže" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (u modulu %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (ugrađene variable)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (u modulu %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (ugrađen razred)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (razred u %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metoda)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statična metoda)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s metoda klase)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klase)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atribut)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Python indeks modula" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Zastarjelo" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "metoda klase" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (zastarjelo)" @@ -2141,7 +2141,7 @@ msgstr "Tražilica" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2201,21 +2201,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2235,6 +2235,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Simboli" @@ -2260,22 +2261,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2419,38 +2420,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "nedostaje '+' ili '-' u '%s' opciji." -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' nije valjana opcija." -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' nije valjana pyversion opcija" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2468,7 +2469,7 @@ msgstr "Vanjska Graphviz datoteka %r ne postoji ili se ne može čitati" msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignoriranje \"graphviz\" direktive bez sadržaja." -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2478,14 +2479,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "dot naredba %r ne može se pokrenuti (potrebna za graphviz izlaz), provjerite postavku graphviz_dot" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2495,23 +2496,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format mora biti 'png' ili 'svg', ali je %r" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[graph]" @@ -2530,31 +2531,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Link na tu definiciju" @@ -2574,26 +2575,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(u %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2649,29 +2650,29 @@ msgstr "Pregled: kod modula" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Svi moduli za koje je dostupan kod</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2679,39 +2680,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "Osnovice: %s" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "nadimak za :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2747,17 +2748,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2772,25 +2773,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2868,6 +2869,7 @@ msgid "Warning" msgstr "Upozorenje" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "nastavak sa prethodne stranice" @@ -2875,13 +2877,29 @@ msgstr "nastavak sa prethodne stranice" msgid "Continued on next page" msgstr "nastavak na sljedećoj stranici" +#: 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 "stranica" + #: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Traži" @@ -3018,13 +3036,13 @@ msgstr "Sljedeća tema" msgid "next chapter" msgstr "sljedeće poglavlje" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Molimo omogućite JavaScript\n za djelovanje tražilice." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3032,20 +3050,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Ovdje možete pretraživati dokumente. Unesite riječi za pretraživanje \nu okvir ispod i kliknite \"traži\". Znajte da će pretraživanje automatski \ntražiti sve upisane riječi. Stranice koje ne sadrže sve riječi neće se\npojaviti na popisu rezultata." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "traži" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Rezultati pretrage" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3103,20 +3121,20 @@ msgstr "Link na tu definiciju" msgid "Hide Search Matches" msgstr "Sakrij rezultate pretrage" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Pretraživanje" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Priprema pretrage..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Pretraga završena, pronađeno %s stranica." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", u " @@ -3133,18 +3151,18 @@ msgstr "Sakrij pomoćnu traku" msgid "Contents" msgstr "Sadržaj" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3215,7 +3233,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "prilikom dodavanja klasa direktiva, ne mogu se dati dodatni argumenti" @@ -3276,15 +3294,15 @@ msgstr "Permalink na ovu tablicu" msgid "Permalink to this code" msgstr "Permalink na ovaj kod" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Permalink na ovu sliku" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "Permalink na ovaj sadržaj" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3321,12 +3339,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Nepoznata postavka: latex_elements[%r] je zanemarena." @@ -3344,12 +3362,12 @@ msgstr "[slika]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index f5d83d03122a96aba28113e099853c2d72471083..282068008ecc960c9ebe1d79869b7e203d82599a 100644 GIT binary patch delta 11411 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 delta 11218 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 diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index 93883e891..8d172470f 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: Molnár Dénes <denes.molnar2@stud.uni-corvinus.hu>\n" "Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -126,7 +126,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -134,7 +134,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -142,7 +142,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -591,44 +591,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -647,19 +647,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Beépített" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Modul szint" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -668,76 +668,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -756,7 +756,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -809,7 +809,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -926,7 +926,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -970,24 +970,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1007,28 +1007,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1040,28 +1040,28 @@ msgstr "" msgid "Index" msgstr "Tárgymutató" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Kiadás" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1124,8 +1124,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1502,13 +1502,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1516,29 +1516,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1546,26 +1546,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1575,131 +1575,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "A megadott útvonal nem egy mappa vagy a sphinx állományok már léteznek." -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1771,17 +1771,17 @@ msgstr "Szerző: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Paraméterek" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Visszatérési érték" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Visszatérés típusa" @@ -1811,12 +1811,12 @@ msgstr "%s (C típus)" msgid "%s (C variable)" msgstr "%s (C változó)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "függvény" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "tag" @@ -1824,7 +1824,7 @@ msgstr "tag" msgid "macro" msgstr "makró" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "típus" @@ -1847,106 +1847,106 @@ msgstr "A %s verzióban változott" msgid "Deprecated since version %s" msgstr "Elavult a(z) %s verzió óta" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "Sablonparaméterek" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Dob" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "osztály" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "enumeráció" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "enumerátor" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (beépített függvény)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metódus)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (osztály)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globális változó vagy konstans)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribútum)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Argumentum" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "metódus" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "adat" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "attribútum" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1968,7 +1968,7 @@ msgstr "operátor" msgid "object" msgstr "objektum" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "kivétel" @@ -1988,88 +1988,88 @@ msgstr "Változók" msgid "Raises" msgstr "Kivétel" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modulban)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (beépített változó)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modulban)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (beépített osztály)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (osztály %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metódus)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statikus metódus)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statikus metódus)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s osztály metódus)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s osztály metódus)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attribútum)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Python Modul Mutató" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "modulok" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Elavult" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "osztály szintű metódus" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "statikus metódus" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (elavult)" @@ -2145,7 +2145,7 @@ msgstr "Keresés" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2205,21 +2205,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2239,6 +2239,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Szimbólumok" @@ -2264,22 +2265,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2423,38 +2424,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2472,7 +2473,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2482,14 +2483,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2499,23 +2500,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[graph]" @@ -2534,31 +2535,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2578,26 +2579,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2653,29 +2654,29 @@ msgstr "Áttekintés: modul forráskód" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Az összes modul, melynek forrása elérhető</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2683,39 +2684,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "álneve :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2751,17 +2752,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2776,25 +2777,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2872,6 +2873,7 @@ msgid "Warning" msgstr "Figyelem" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "folytatás az előző oldalról" @@ -2879,13 +2881,29 @@ msgstr "folytatás az előző oldalról" msgid "Continued on next page" msgstr "A következő oldalon folytatódik" +#: 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 "oldal" + #: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Keresés" @@ -3022,13 +3040,13 @@ msgstr "Következő témakör" msgid "next chapter" msgstr "következő fejezet" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Kérem engedélyezze a JavaScriptet a kereső funkció\n használatához." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3036,20 +3054,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Erről az oldalról indíthatja kereséseit. Írja be a kulcsszavakat\n az alábbi szövegdobozba, majd kattintson a \"keresés\" gombra.\n Ügyeljen arra, hogy a keresés megadott kulcsszavak mindegyikét\n figyelembe veszi, így azok az oldalak, melyek nem tartalmazzák az\n összes kifejezést, nem jelennek meg a találati listában." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "keresés" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Keresési Eredmények" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3107,20 +3125,20 @@ msgstr "Hivatkozás erre a definícióra" msgid "Hide Search Matches" msgstr "Keresési Találatok Elrejtése" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Keresés folyamatban" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Felkészülés a keresésre..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "A keresés befejeződött, %s oldal egyezik a keresési felételeknek." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", " @@ -3137,18 +3155,18 @@ msgstr "Oldalsáv összezárása" msgid "Contents" msgstr "Tartalom" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3219,7 +3237,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3280,15 +3298,15 @@ msgstr "Permalink erre a táblázatra" msgid "Permalink to this code" msgstr "Permalink erre a kódrészletre" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Permalink erre a képre" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3325,12 +3343,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3348,12 +3366,12 @@ msgstr "[image]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, 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 8dcddfb2ab3b65622f03e6fad9841b2fd2574b4a..ae8d3dc775c7dc54c6728a5e12deb1430bf73ddd 100644 GIT binary patch delta 11393 zcmZA73w)2||Htv`%QiMUAJ~EIOSWNVbJ*CN&6${4*b;^jKc>H9D0hj(gjys*go=_w zkrGj(s0fLo137e5goONF?_Kxf@&7;m{d#y_pZj~?*Wq)0uKPRdcW9l@U+aCGZ^L~S z8~)i+$(WkBHcHX|{?jnUn5BfNn2h`JNslqV<077!lxoaxT=z>iCYtMi;V;BNO^oS8 zd=qP6+h)d0<9h!LW5(lA9Ak`QI%RSL7q(&=Hy*^f#Q!umraR7R!8JULg}5xs7{)f& zFbHdB8{>;<*Z?!IH4Z_#Fe|Yup1`)4(9)PXI2ipI-^`>@l?(GR5f`I6dJom{1&qL7 zF$_&BV<I6OLogWwu{ml&9kCkbxt|Ym;}TRq)37=&z);3F>u3bycJyL7YM=|Kj{Zh} z^kG?E4932ghVAhQREOoRr!kcHDk`%+ZH$S*ny3k6Vk~w?Cz?hv4Xt2?dqXL*t!5SK z!OxIgF&8lb<H=(jw!yksh&$22rkK^vPJAp@A)bmu@NrZ|&thY|)Q<eC5z8{VU{4Ik z=a4!wub>7xi9_)(RDJgEU?(&d6|Y4vzKhD#H?HSVnZ1nK;(w7fm?}B;zRo$0G4;5R z%LO?V<8ckL7_%4kpr@nV+W@Rh9F5eY$wt-81k_4jKuu^hQt)O6dhu6OZ3K0)TN8)c zf`$%_1R7mX1C2!O<wK~I%)vx_#&rkQB0hr@w7G?<^32Zmxe}~HJR9%DS5dWe9sRH> zX%4^;RA!x6w~>it*W_V0d=7`;x2P&_+tuz}Z)7p%KIC7sj6ZtdIaDpB@o*LFid8We zIqIeWReTFkTk<k8F~@ABp;Uf^s)akK6{K~y=HWfWlTaPMfZBr9s0@6F%HY4~#dv1p zk8M!{chl@VjD*VUV?FIwJdY7N|LbT};)9*YcAH%lAJ8CwJ`jnGFb1`!T~Px(>Rz9N zzQo&6d%w%|C@NEzP%BUEWo?i56W@om7~gDB0}rG2>NhOFyQq~G^tM|t9eJCYQVhV| zs0n|9%0N)AF(sIal!bW_1Mw_|;AO0acirpN`jC}WE=1F)hn-O!kHavW=En0;pFfY< z;}0+tPoXmOGZx}yR3^IT*{#aOhQtF<Z_L@K=ayj*Zp<V9>To9)R4hkPDf|XCkv~y; zb{lJAL|=Ps(p`I?-f$yaXP{nKOE3vHBS+qRg`+Sw-)3+YQf6jHKKa+4dhW9+%yjLC z>Ugs20*oMDkHPpZM&T!@6@7<F^&hBI-@$MU>Stpws)*CEF6N{9o9fWegHNN*=Q31> zt5F%)imLkeQF~YJ#$TZJ{1j@So2cgl``c7Upzg1Sns77ZYsBQB&i!MkB6eP+p@G(; z2Ht|&ihY=Zhfp2ez;Rf4fPIBdKn=VVwX$*y!=G?6-a<`$Je91ypN8spA?m)RNCq6U zfd>DY-Ta{<isp|7I02jDN=(C}s3NSy*=d9+n2Uw@5N<?eq~<_-YFeS*BZE*We;mEI z9*gk+7V7+`K445QE<A<Qh4~75V8cQ7)%!52<CVx5W;bfZv4ibTL~T&<2sfUGI<{M} zH6F+27(T?NygM!@&d1>njX!9RU2|WNP2C%)y{tQwbYlwYn5Cf?n_&jthssbXR>wUU zhbOQOUO`PDYM9MzU(}v<$}E=;*wDKttzrKdJ_<Vtw=(ZmYZzYC;`x9`-=pe*!gN zW%8-d6Hv91gc_iU8)v(5XH*UJLS?*vG5Ig0v7QTU^}q=GgU5JmLi`e{c#dH$yo4$` zzmayLF_=Z%0Aq1DR#Y|WRLw<Yb_r_2zoYt%d(i$o(d$9---QcXxS)Y<ViX3CvK`gM zMB+v`1oKf7c^l*L80t-S1$FMtXlp2{%Dt$JG{GcngLSbOV{o2BLmjR~tzaK&B4;oG zuV8x&|Bv0neAFxZP1FR=U`@P@dM;*+ExtzBf;bm_aV`epLac%>qKeX4OCyuUX>5rR zW9_T4H!6Msv++ypilHSo<prqBm7!AljcYJ3iD2UP*bH+~#W@=_(HGr#Cw9>JKSDzt zL~w|elFq0bhoCa^C`RLQ)QaE28h8v<3%|JWzo`4F|Bro7q+x5~0T_x)Fa%%0blibH zI{%kwXyD&44Xcc|ThSaF5a*%x?osr|wWy-ogqq+b^rGJcy9LRZO56%H(b1?3%*4j{ z0;=Cb7{&PJI*qCrIML253N>J748yUgT5zx)u0pNkV^pS2x?V#SYxpGlhHHVViC1DX zY&Y4yM<$`3pN38Wjd?V**FRz-^iHv<?u{Ct1T}$DOu>z)iF}3X*gS0S&%g-6eAIj4 zK^%ayusfbXAFMakPBe8Y`48YiUoJ%AAdJQdsDb8V48DV!z){o|T)`H28}G%8Y5aVM zPoOe(6T`9Ebo*k8M@=jdV=)VBVE%OSuj4g_3!2C#RFUn(OgxF*Fys+?UjeFv<)|Xs zj@9uZ>NNa|y|DA6c1stdQoRzD*-aRQXD|q_I&Q-=!&Yku*5reGF&RgrQvEDu;Ct8* z|HRrD&jRAH9me5c)C9G#*0=<f$>XRAo5zgl2aR2wr)VgJ-(eo6K5pMokD*>1>rkoN zh+5em48-7>w!=8APuvr=vdLHr=c5*~0d=YlU<}?sO*rg{ip)7CorbEt3)aRGH(rE# zQ|-V`xCb?`?<{+K!m&AVYpjElP?=ha%EVsOM9#SJE!2HAX4{2jV-21Eb~IFc127TC zVoNMTKRoPu0@cA8)I`mbtQzW|?i+{q;AGUqmtjX-gW9@_s2Zy^$2|oY$oM9ehF%QW z*a^pA2i%HX@ERs!>!)lAhoJ^~6ur3GjrU<g;tQw@M9j4>qBN{W`~Ye~PogGr2px5F z!oA@iRD91oyP_^wmADrMV}GoMBTyZVM;+JY=!0*ej^$4D;uXxrh*F!m;i%%AgL-aF zDf#bB<2^2D3#!ex#pXo~+zdmpH7WzWP{(E>YC<!yAwGkFxEnRGL#Rytg$*$KX`A6< zRLwk(%FyAb$$tQiU$~$b#&uK``!BE)NkGL-QRlcD>b?R@!ZD~9Nf{~w8&Pk>&8P*P zM@{@6^h57LV}@Ze>NJ!(H1xqbtcI^+GQNY^_&s_tZV`owt*{C{iaK7iQ4?B&n$X)= zA5WuJ?)Qwn-WdB655P9K8I=j=G7a7(Ciz+WYF&>(y1|WiV?*MPQ5{~xbo7?l<JAYX z!g2UKE_O|Qj%^_>M`f`8Vq*s4SXAl{A`5lQ1sdugc!_;eHN!!~L$C?%!3?~D%1k{* z(MoesFOn&!R4zen!DiI`Z=(kK1%0u~QrmwJrV?jioX-D98amHUxURz};sb7c2CEa_ zMHOZB7wjoXKxHHcb-e_`aSH1Gd6<K%u@9a{O}P0o`}0FTY^n3Vh=%s;Q`FvGM|Jcs zMq}7=yOIW|iFHQp{Xo=xQ?Ull$2}f?KtbkehOe--a|iV++xV4arxLZc%Kpl>-x~6- z-`RG2nWMr353J?b5a+F<LtMJv*2d;n_<azcr@hK=E%76a!@jTacLDAjhjWSF+hD)v zJ8k6UMZ5?LG3Rxg`jr?!d=QnfFJCABO5wL$$VLA*Y*iLwSK?<e55K`W*l3e2(mohS zd_U^>2VKihd%YXO@FNVt6R1pGz#zPddcMk=<Ug23<eT>R-Gh1{&5he)1aS}4o({%P zoQ&#d4%WuS?)4q0WBf7t<8k!jx7Zi&Vteen+4i^CaT~9rI{px~m&Y*%e??8eZ;O3( z#-b*Yfm%UN)XEAl6~~~SUxt~u6%+6$)Ry_PFLf~yPovYFMk5-@+w9Eyp^9)QPQlTr zV|5laz(v=nx9pcw4r&6WSRYrSzIH#x;dlWfu*ci>%{Uk}k>}8>^S_yf2K)k56sJ%R zoJAGOb!>s2?KY*^s9NZVDL4|f!ZK89x1qN58it_H4trlDs-JeK_svwS`2GJX8c|$$ z4Kr~Mdht4Hk88YRO+>A<De4?|M!mX=QO9u%YR~7Q1}JmgiM5Hp!(8<2v_+nW)u}%- zkA_yX8uRcY48t1l+5zgL;&fE%I=Bu(t#}%C!(BK8{ob<~9EqCHbZm>WQKzaLdtmS` z@~;&Y($E%+MQy<(Y>YE76gQ)aZ7*sfpJNOB9(7;L`}U341GSKGZu~523%8>(uotuO z9BRwrceDRq8f|vl0S03`;xQQMG3E`7C*HTm7UvJB3IB$b(0pKDv6V57unVeKhoOr4 zL2QQ4qZarn>iTii)>Yo?*u4+fYiH!ej(pG#wer~*i%al++=8_*XrDC&HKA@;fCEu4 zr0u9o{eVsIDrzf|KD0HEjtRt%J2XmYtj2r{{m5pb7&U?Ms1!bdda*1(9m8c<A3sKI z*%j18ZlRtFF1KGY38?!EP}k?6GO-j3(Rqo6FO6I72cG@*``#bbVJ7OqZWxS(7>%P) z1JA@rEJdyGC9H`X(2EC98NB4il@Hi0t&3#RF*!8UVG$<bG;EHm@i9Dw?XmD<Tjeie zTjC2?2a`UrndpWZcmnGEu?TD6TGTP#g*xU3Q49JWt1-U$lZIXtcTg)1I%s1rYC`E) z7yF|+e#HHJ5&99ogv!7x7=XJ_89jj7vd^#zo<dFF2ds`a(4X;5@F6?XXjIXpqbAe= zyJH@z=vJUVzK0sP9JP{9F#ykCeY}J^uHm0@6fptyVq1t>;C|G?PNAa#&1d!(kKw3} z=b~1$2(`!SQ1@+e{Qy<%M^Q!8@N>HrbFeA#228_m(Tl-{?XgS4-o%4&GHyCd{<VjR zM{EaOUH^kh`2zIfHY~>DI0&=9uzwkS0X2b3*aLHp+8<6AVr}9NP{;Nxs=qeJ?2Bp` zCKAs%M*fp&yuk%M@FjM@8>k}8K5qALJn~jHGjKSz_|i^f1x_Qrjmq4V6ZTiOGth^4 zCVFuWw!&AjHJ(Qm>pjj__RZA})44DZb;HxBl^sHDLDEUP$7!hI%EpG+4r6gFHp8b- zMfN^wLdS3hevP`n;FKNjNz~`g8XDDTyoRdMw=odkM-6<?^%(XdK8*`7<!inH@m*|= zo^R|5v#>hxWQ@V5u?D_^5x57l@E9_2#{`|W1J^?hoR0mmH7X;Eu?g<Sp?DL!;J`C> zrE4*o_+8ZLIELEWGx!iz{?@K|A|??p!eHEip*sKjD;oSZ3q$ze5^AP@V`B{b&i;j> z4XWdbsAIOwjX%O##6P1_T=jeVHJpLdiI<=<75;<$%V`1DB%X<p4vkgrg}1N;@fWB) z4mfKw5{lZZTBtp)i><H#+v5_<!;@~Da?XB>j>TNAZ^E{C7j^vF{%E&sAvzlH01c(Y zoVPEE5DX{mj9x52?dde^fX|?|<Tz@Nt6Z?Br#31RIjAiu!X%uAD$>=c%<e)xcjN;3 z*9SjyL3{0c(XK2LLy0G#wqzFS^XE{<svOn9K}^FRQT;?-vOnvkVG{BEs3M+;D!NkC z1k2Hj=Pr@|NE$vr**8=Ss#?3ERy+hVa0)iSH!vPgqB_2Tnwa_74%isO2nS#Sj>dX8 z4|OcJp(g$b#^E`KMk0;7Sd59kkR~ieZB6R0_H>LuWugQNa0a%-lh_C&f3p+IK^50f ztcwn&;9Ar~j$lK)iCT!0^t;`YPN*3b-~gP2-SKl&%406uS9ClE5VuEVt|wOPHEN(~ zsFkmG-H%m>FQ69mI}XI;Klq_W=YJLrrL5|ow&-Hfk2n=oEX`1R+ZDAn!%$T}9sTir z)Wi>9M?8nhP`xYs7c!iQdj2G8tFEFZUiYfrBkX?`jb2=M95wI}RL5UoBm4nX3!#76 zQ<989#F^L{J7UFo#yZ5S@E+WU?eGFB<;mCVDal8relo@}zFAB|Gu(om@KaQ(!mryE z^}v3_i(D__y~J&9*mFN0wb$RFFZ%p#GZ%nbSUiT|SX2fatdE<~iK6i}4R!DbYUWWl zZE<B`4Dlq?j2B{c+=Mz_<yaek#Z(Ob$L@72RPA)c2waE_@MX-z&rvnvdyD+5Did$n zJ?w?C#G^49XQNWO61B3us2Vtck@y{Y@h@zNQMc^``k=P50QLM3)I^`ap12Ox-<8|s zUn~CGy-@RxO?e&6;QB~ZwXZ-`@v9h&o3Rz{!QOZqbFt^Y_IEuiFp>B&Dzi~{?Ks)! zB_4#TEytmulx)J9cph6|CF801QK}`Xs>h*H{}w9shftZjf?7bF$5XN5wpf+8Giu_! zu^JYlif{xfvt_6ZIIq*lp|KS;<LlTLYgY19ys;iaZON0U2UlYsd>6F^ft5WKdt4ip zp$yc3tx+}64Ru<kU?9#$P2^b{J7y0Jt>jbegx65T($dFM@%1|bn-ecZ?fntd$}V9z zUPTqLpRb)rP1ke`;d)2Zefg-&jYRdc04x6c-+CI&xUdmp@OxAy{z1J5ynY`2KNU>_ z)G2r#mE!HFmF>Y~{0uweHPk?@s(32S|1eZ$)}prfb<~7D!6b*qX&UOFa#fp&6jasb zV}G229q=$J6XE`zivMcf9W}udsEK@!n%M8C1>C?itQFv?D7Jf13wQ+e`Eqo&(AZ03 z8&0U^F|T2Apr_)6@dc{7&tV)k4f0gH<9nmFY`Pn-#X-bJunDFGdn!)PP}IVfqB8OU zY62Ir7W##FoQf}(x*?v5s;`e4Xej#P4Ahs(EbNAx-Ov9)o#*PIwnkc@YG5>~b{<2W zmW`;4>_eTBL#Q|4W%s%_%&~h>Kg<?SE7WPoMOFE8s2N|tF6bL>i}YS>Ok9TA+j7)t z_zZPQ&Y~7_3pKGC5w^BcQTKI072&|jG|K*Xarw46DUnIRC8<SY9(u57Xz|2R!-~d~ zE$uVXuh*opLyO06yVGYxt>B5HN+uOg@Qy3-mJ~lcaa-ZI-($Ds%<B|3xM^yWEN^<_ z?DUM3^sMysfZX1xdBu}QO&B$<B(-DF#Nupklk~<}sp;I;!rM4AJ3T8Uoqqy)7EPF# znm@j%WWt!DiQ~p+d)tp6HNx9r((qAZi%Pt$iijR69zJT@Ps>y4NB5$$|2sXCQ#6tP um6WaMGt`}C*_}RV+cuPUN%((LEh`+iWZR7MrE$Jvis*SqRgdSxu>S(@==9J4 delta 11192 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 V^F1`GLf-sqVUatwczApr{6G2C!Z!c_ diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 6c92de739..f4ae7cc2c 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: Arif Budiman <arifpedia@gmail.com>\n" "Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -125,7 +125,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -133,7 +133,7 @@ msgid "" "explicit" msgstr "ekstensi %s tidak akan dinyatakan jika itu aman untuk pembacaan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -141,7 +141,7 @@ msgid "" "explicit" msgstr " \nekstensi %s tidak akan dinyatakan jika itu aman untuk penulisan paralel, dengan anggapan itu tidak aman - silakan tanya pembuat ekstensi untuk memeriksa dan membuatnya eksplisit" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "mengerjakan serial %s" @@ -590,44 +590,44 @@ msgstr "docnames yang akan ditulis: %s" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "menyalin gambar... " -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format 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:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "tidak dapat menyalin berkas gambar %r: %s" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "tidak dapat menulis berkas gambar %r: %s" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "menulis %s berkas..." -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "mimetype yang tidak dikenal untuk %s, mengabaikan" @@ -646,19 +646,19 @@ msgstr "tidak ada pengubahan dalam versi %s." msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Modul Internal" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Level Modul" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "menyalin berkas sumber..." -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "tidak dapat membaca %r untuk pembuatan changelog" @@ -667,76 +667,76 @@ msgstr "tidak dapat membaca %r untuk pembuatan changelog" msgid "The dummy builder generates no files." msgstr "Builder contoh tidak menghasilkan berkas apapun." -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "Berkas ePub berada di %(outdir)s." -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "nilai conf \"epub_language\" (atau \"language\") tidak seharsunya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "nilai conf \"epub_uid\" harus berupa XML NAME untuk EPUB3" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "nilai conf \"epub_title\" (atau \"html_title\") tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "nilai conf \"epub_author\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "nilai conf \"epub_contributor\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "nilai conf \"epub_description\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "nilai conf \"epub_publisher\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "nilai conf \"epub_copyright\" (atau \"copyright\") tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "nilai conf \"epub_identifier\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "bilai conf \"version\" tidak seharusnya kosong untuk EPUB3" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "css_file yang salah: %r, mengabaikan" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "Katalog pesan berada di %(outdir)s." -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "membangun [%s]: " -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "target untuk %d berkas templat" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "membaca templat... " -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "menulis katalog pesan... " @@ -755,7 +755,7 @@ msgstr "Halaman HTML berada di %(outdir)s." msgid "Failed to read build info file: %r" msgstr "Gagal membaca berkas info build: %r" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -808,7 +808,7 @@ msgstr "menyalin berkas statik... " msgid "html_static_path entry %r does not exist" msgstr "entri html_static_path %r tidak ada" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "berkas logo %r tidak ada" @@ -925,7 +925,7 @@ msgstr "Halaman manual berada di %(outdir)s." msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "tidak ditemukan nilai konfigurasi \"man_pages\"; halaman manual tidak akan ditulis" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -969,24 +969,24 @@ msgstr "tidak ditemukan nilai konfigurasi \"texinfo_documents\"; dokumen tidak a msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "nilai konfigurasi \"texinfo_documents\" mereferensikan dokumen yang tidak dikenal %s" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "memecahkan referensi..." -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (dalam " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1006,28 +1006,28 @@ msgstr "Berkas XML berada di %(outdir)s." msgid "The pseudo-XML files are in %(outdir)s." msgstr "Berkas pseudo-XML berada di %(outdir)s." -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Berkas LaTeX berada di %(outdir)s." -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\nJalankan 'make' di direktori tersebut untuk menjalankannya melalui (pdf)latex\n(gunakan 'make latexpdf' di sini untuk melakukannya secara otomatis)." -#: sphinx/builders/latex/__init__.py:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "tidak ditemukan nilai konfigurasi \"latex_documents\"; dokumen tidak akan ditulis" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "nilai konfigurasi \"latex_documents\" mereferensikan dokumen yang tidak dikenal %s" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1039,28 +1039,28 @@ msgstr "nilai konfigurasi \"latex_documents\" mereferensikan dokumen yang tidak msgid "Index" msgstr "Indeks" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Rilis" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "menyalin berkas pendukung TeX... " -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "Kunci konfigurasi tak dikenal: latex_elements[%r]. diabaikan." @@ -1123,8 +1123,8 @@ msgstr "Laporan bug dapat diisi pada tracker di <https://github.com/sphinx-doc/s msgid "job number should be a positive number" msgstr "job number seharusnya sebuah bilangan positif" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "Untuk informasi lebih banyak, kunjungi <http://sphinx-doc.org/>." @@ -1501,13 +1501,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1515,29 +1515,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1545,26 +1545,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1574,131 +1574,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1770,17 +1770,17 @@ msgstr "Penyusun: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parameter" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Kembali" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Return type" @@ -1810,12 +1810,12 @@ msgstr "%s (tipe C)" msgid "%s (C variable)" msgstr "%s (variabel C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "fungsi" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "anggota" @@ -1823,7 +1823,7 @@ msgstr "anggota" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "tipe" @@ -1846,106 +1846,106 @@ msgstr "Berubah pada versi %s" msgid "Deprecated since version %s" msgstr "Ditinggalkan sejak versi %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "Parameter Templat" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Throws" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "class" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "konsep" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (fungsi built-in)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (method %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (class)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variabel global atau konstan)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Argumen" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "method" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1967,7 +1967,7 @@ msgstr "operator" msgid "object" msgstr "object" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "eksepsi" @@ -1987,88 +1987,88 @@ msgstr "Variabel" msgid "Raises" msgstr "Raises" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (di modul %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabel built-in)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (di modul %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (class built-in)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (class di %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (method %s.%s)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (method static %s.%s)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (method static %s)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (method class %s.%s)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (method class %s)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atribut %s.%s)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Indeks Modul Python" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "modul" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Akan ditinggalkan" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "method class" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "method static" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (obsolet)" @@ -2144,7 +2144,7 @@ msgstr "Pencarian Halaman" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2204,21 +2204,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2238,6 +2238,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Simbol" @@ -2263,22 +2264,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2422,38 +2423,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2471,7 +2472,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2481,14 +2482,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2498,23 +2499,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[graph]" @@ -2533,31 +2534,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Tautan untuk persamaan ini" @@ -2577,26 +2578,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(di %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2652,29 +2653,29 @@ msgstr "Tinjauan: kode modul" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Semua modul dimana kode tersedia</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2682,39 +2683,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "Basis: %s" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "alias dari :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2750,17 +2751,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2775,25 +2776,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2871,6 +2872,7 @@ msgid "Warning" msgstr "Peringatan" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "lanjutan dari halaman sebelumnya" @@ -2878,13 +2880,29 @@ msgstr "lanjutan dari halaman sebelumnya" msgid "Continued on next page" msgstr "Lanjut ke halaman berikutnya" +#: 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 "laman" + #: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Pencarian" @@ -3021,13 +3039,13 @@ msgstr "Topik berikutnya" msgid "next chapter" msgstr "bab berikutnya" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Tolong aktifkan JavaScript untuk melakukan pencarian.\n " -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3035,20 +3053,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Dari sini dapat dilakukan pencarian pada dokumentasi. Masukkan\n kata yang dicari pada kotak dibawah dan klik \"search\". Catatan untuk fungsi pencarian\n akan secara otomatis mencari semua kata. Halaman\n yang berisi kata yang sedikat tidak dimunculkan pada daftar hasil." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "pencarian" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Hasil Pencarian" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3106,20 +3124,20 @@ msgstr "Link permanen untuk definisi ini" msgid "Hide Search Matches" msgstr "Sembunyikan Hasil Pencarian" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Pencarian" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Penyiapkan pencarian..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Pencarian selesai, menemukan %s halaman yang cocok dengan kueri pencarian." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", di" @@ -3136,18 +3154,18 @@ msgstr "Tutup sidebar" msgid "Contents" msgstr "Konten" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3218,7 +3236,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3279,15 +3297,15 @@ msgstr "Link permanen untuk table ini" msgid "Permalink to this code" msgstr "Link permanen untuk kode ini" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Link permanen untuk gambar ini" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "Tautan ke daftar isi ini" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3324,12 +3342,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Kunci konfigurasi tak dikenal: latex_elements[%r] diabaikan." @@ -3347,12 +3365,12 @@ msgstr "[gambar]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index edfe826f9d0461023968ff0290048bd4ddedd2e0..2e301d4f344965ecbb28071b2a89117b0b874c76 100644 GIT binary patch delta 11415 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 SYkSUFpXgd;6(y`GChR|jQv-$o delta 11204 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�bs-QBGjE%4tK85p96Mlh_c;4y1gD&EP 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 RDi!XVJK1B`3mz+j{tvK`>+k>o diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index 89ea48ba3..baec45df5 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -12,9 +12,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: Paolo Cavallini <cavallini@faunalia.it>\n" "Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -126,7 +126,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -134,7 +134,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -142,7 +142,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -591,44 +591,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -647,19 +647,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Builtins" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Al livello del modulo" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -668,76 +668,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -756,7 +756,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -809,7 +809,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -926,7 +926,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -970,24 +970,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (in " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1007,28 +1007,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1040,28 +1040,28 @@ msgstr "" msgid "Index" msgstr "Indice" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Release" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1124,8 +1124,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1502,13 +1502,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1516,29 +1516,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1546,26 +1546,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1575,131 +1575,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1771,17 +1771,17 @@ msgstr "Autore: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Ritorna" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Tipo di ritorno" @@ -1811,12 +1811,12 @@ msgstr "%s (tipo C)" msgid "%s (C variable)" msgstr "%s (variabile C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "funzione" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "membro" @@ -1824,7 +1824,7 @@ msgstr "membro" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "tipo" @@ -1847,106 +1847,106 @@ msgstr "Cambiato nella versione %s" msgid "Deprecated since version %s" msgstr "Deprecato dalla versione %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "Parametri del modello" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Solleva" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "concetto" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "enumeratore" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funzione built-in)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodo)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (classe)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variabile globale o costante)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attributo)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Parametri" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (modulo)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "metodo" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "attributo" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "modulo" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1968,7 +1968,7 @@ msgstr "operatore" msgid "object" msgstr "oggetto" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "eccezione" @@ -1988,88 +1988,88 @@ msgstr "Variabili" msgid "Raises" msgstr "Solleva" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (nel modulo %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabile built-in)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (nel modulo %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (classe built-in)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (classe in %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metodo)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s metodo statico)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo statico)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s metodo della classe)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metodo della classe)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attributo)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Indice del modulo Python" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "moduli" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Deprecato" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "metodo della classe" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "metodo statico" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (deprecato)" @@ -2145,7 +2145,7 @@ msgstr "Cerca" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2205,21 +2205,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2239,6 +2239,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Simboli" @@ -2264,22 +2265,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2423,38 +2424,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "manca '+' or'-' nell'opzione '%s'." -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' non è un'opzione valida." -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2472,7 +2473,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2482,14 +2483,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2499,23 +2500,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[grafico: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[grafico]" @@ -2534,31 +2535,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Permalink a questa equazione" @@ -2578,26 +2579,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2653,29 +2654,29 @@ msgstr "Vista generale: codice del modulo" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Tutti i moduli di cui è disponibile il codice</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2683,39 +2684,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr " Basi: %s" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "alias per :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2751,17 +2752,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2776,25 +2777,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2872,6 +2873,7 @@ msgid "Warning" msgstr "Avvertimento" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "continua dalla pagina precedente" @@ -2879,13 +2881,29 @@ msgstr "continua dalla pagina precedente" msgid "Continued on next page" msgstr "Continua alla pagina successiva" +#: 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 "pagina" + #: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Cerca" @@ -3022,13 +3040,13 @@ msgstr "Argomento successivo" msgid "next chapter" msgstr "capitolo successivo" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Attiva JavaScript per abilitare la funzione⏎\ndi ricerca." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3036,20 +3054,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Puoi effettuare una ricerca in questi documenti. Immetti le parole chiave \n della tua ricerca nel riquadro sottostante e premi \"cerca\". Nota che la funzione\n di ricerca cerca automaticamente tutte le parole. Le pagine\n che contengono meno parole non compariranno nei risultati della ricerca." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "cerca" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Risultati della ricerca" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3107,20 +3125,20 @@ msgstr "Link a questa definizione" msgid "Hide Search Matches" msgstr "Nascondi i risultati della ricerca" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Cerca" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Preparo la ricerca..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Ricerca completata, trovata/e %s pagina/e corrispondenti." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", in " @@ -3137,18 +3155,18 @@ msgstr "Comprimi la barra laterale" msgid "Contents" msgstr "Contenuti" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3219,7 +3237,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3280,15 +3298,15 @@ msgstr "Link a questa tabella" msgid "Permalink to this code" msgstr "Link a questo codice" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Link a questa immagine" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "Link a questo indice" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3325,12 +3343,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Chiave di configurazione sconosciuta: latex_elements[%r] è ignorata." @@ -3348,12 +3366,12 @@ msgstr "[immagine]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index df1ffb580c9d4c99d8ad09e9a36e200c8b13f376..e3498f0d27c9d003e09b5282e72e726cb69a0ffe 100644 GIT binary patch delta 11387 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 delta 11235 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 diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index d6517d053..01a10f634 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -20,9 +20,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-25 14:52+0000\n" -"Last-Translator: Takayuki SHIMIZUKAWA <shimizukawa@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: tomo\n" "Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -134,7 +134,7 @@ msgstr "ディレクティブ %r は既に登録されています。ディレ msgid "role %r is already registered, it will be overridden" msgstr "ロール %r は既に登録されています。ロールは上書きされます" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -142,7 +142,7 @@ msgid "" "explicit" msgstr "拡張 %s は並列読み込みが可能かどうかを宣言していないため、おそらく並列読み込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -150,7 +150,7 @@ msgid "" "explicit" msgstr "拡張 %s は並列書き込みが可能かどうかを宣言していないため、おそらく並列書き込みに対応していないでしょう。拡張の実装者に連絡して、明示してもらってください。" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "直列で %sします" @@ -599,44 +599,44 @@ msgstr "書き込むdocname: %s" msgid "preparing documents" msgstr "preparing documents" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "Tocエントリーが重複しています: %s" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "画像をコピー中... " -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "画像ファイル %r をPILで読み込めないため、そのままコピーします" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "画像ファイル %r をコピーできません: %s" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "画像ファイル %r を書き込めません: %s" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "Pillowがインストールされていません。代わりに画像をコピーします" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "ファイル %s を書き込み中..." -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "不明なmimetype %sのため無視します" @@ -655,19 +655,19 @@ msgstr "バージョン %s での変更はありません" msgid "writing summary file..." msgstr "概要ファイルを書き出し中..." -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "組み込み" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "モジュールレベル" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "ソースファイルをコピー中..." -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "Changelog作成中に %r を読み込めませんでした" @@ -676,76 +676,76 @@ msgstr "Changelog作成中に %r を読み込めませんでした" msgid "The dummy builder generates no files." msgstr "dummyビルダーはファイルを出力しません" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "ePubファイルは%(outdir)sにあります。" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"epub_language\" (あるいは \"language\") の指定が必要です" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "EPUB3では設定値 \"epub_uid\" はXML NAMEにするべきです" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"epub_title\" (あるいは \"html_title\") の指定が必要です" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"epub_author\" の指定が必要です" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"epub_contributor\" が必要です" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"epub_description\" が必要です" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"epub_publisher\" の指定が必要です" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"epub_copyright\" (あるいは \"copyright\") の指定が必要です" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"epub_identifier\" の指定が必要です" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "EPUB3出力では設定値 \"version\" が必要です" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "無効な css_file %r は無視されました" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "メッセージカタログは%(outdir)sにあります。" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "ビルド中 [%s]:" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "指定された %d 件のテンプレートファイル" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "テンプレートの読み込み中..." -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "メッセージカタログを出力中... " @@ -764,7 +764,7 @@ msgstr "HTMLページは%(outdir)sにあります。" msgid "Failed to read build info file: %r" msgstr "build info ファイルの読み込みに失敗しました: %r" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -817,7 +817,7 @@ msgstr "静的ファイルをコピー中... " msgid "html_static_path entry %r does not exist" msgstr "html_static_path %r が見つかりません" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "ロゴファイル %r がありません" @@ -903,7 +903,7 @@ msgstr "複数の math_renderer が登録されています。しかし math_ren #: sphinx/builders/html.py:1231 #, python-format msgid "Unknown math_renderer %r is given." -msgstr "不明な math_renderer %r が指定されました。" +msgstr "不明な math_renderer %r が指定されました。" #: sphinx/builders/html.py:1264 #, python-format @@ -934,7 +934,7 @@ msgstr "マニュアルページは %(outdir)s にあります。" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "設定値 \"man_pages\" が見つかりません。マニュアルページは書かれません" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "書き込み中" @@ -978,24 +978,24 @@ msgstr "設定値 \"texinfo_documents\" が見つかりません。ドキュメ msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "設定値 \"texinfo_documents\" は、不明なドキュメント %s を参照しています" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "処理中 %s" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "参照を解決しています..." -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (in " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "Texinfo 関連ファイルをコピーしています" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "Makefile の書き込みエラー: %s" @@ -1015,28 +1015,28 @@ msgstr "XMLファイルは%(outdir)sにあります。" msgid "The pseudo-XML files are in %(outdir)s." msgstr "pseudo-XMLファイルは%(outdir)sにあります。" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "LaTeXファイルは%(outdir)sにあります。" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\n(pdf)latex コマンドで処理するために、そのディレクトリで 'make' を実行してください。\n(これを自動的に行うには、ここで 'make latexpdf' を使用してください)。" -#: sphinx/builders/latex/__init__.py:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "設定値 \"latex_documents\" が見つかりません。ドキュメントは書き込まれません" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "設定値 \"latex_documents\" は、不明なドキュメント %s を参照しています" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1048,28 +1048,28 @@ msgstr "設定値 \"latex_documents\" は、不明なドキュメント %s を msgid "Index" msgstr "索引" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "リリース" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "%r 言語向けの 既知の Babel オプションはありません" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "TeX 関連ファイルをコピーしています" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "Tex 関連ファイルをコピー中..." -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "追加のファイルをコピーしています" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "不明な設定値 latex_elements[%r] は無視されました。" @@ -1132,8 +1132,8 @@ msgstr "バグ報告はこちらにお願いします <https://github.com/sphinx msgid "job number should be a positive number" msgstr "ジョブ番号は正数でなければなりません" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "詳細は <http://sphinx-doc.org/> をご覧ください。" @@ -1269,7 +1269,7 @@ msgstr "例外が発生したときにPdbを実行する" #: sphinx/cmd/build.py:227 #, python-format msgid "cannot find files %r" -msgstr "ファイル %r が見つかりません" +msgstr "ファイル %r が見つかりません" #: sphinx/cmd/build.py:230 msgid "cannot combine -a option and filenames" @@ -1278,7 +1278,7 @@ msgstr "-aオプションとファイル名を組み合わせることはでき #: sphinx/cmd/build.py:249 #, python-format msgid "cannot open warning file %r: %s" -msgstr "警告ファイル %r を開けません: %s" +msgstr "警告ファイル %r を開けません: %s" #: sphinx/cmd/build.py:259 msgid "-D option argument must be in the form name=value" @@ -1510,13 +1510,13 @@ msgstr "新しいファイル名を入力するか、既存のファイルの名 msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "次の Sphinx 拡張機能のうちどれを有効にするかを指定します。" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "注:imgmath と mathjax を同時に有効にすることはできません。 imgmath は未選択になります。" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1524,29 +1524,29 @@ msgid "" "directly." msgstr "\nMakefile と Windows コマンドファイルは生成することができるので、\n後は実行するだけです。例えば、直接 sphinx-build を実行する代わりに `make html` を\n実行します。" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "Makefile を作成しますか? (y/n)" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "Windows コマンドファイルを作成しますか?(y/n)" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "ファイル %s を作成しています。" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "ファイル %s は既に存在しますのでスキップします。" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "終了:初期ディレクトリ構造が作成されました。" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1554,26 +1554,26 @@ msgid "" "source files. " msgstr "\nマスターファイル %s を作成して\n他のドキュメントソースファイルを作成します。" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "次のように Makefile を使ってドキュメントを作成します。\n make builder\n" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "次のように、ドキュメントを構築するには sphinx-build コマンドを使用してください。\n sphinx-build -b builder %s %s\n" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "\"builder\" はサポートされているビルダーの 1 つです。 例: html, latex, または linkcheck。\n" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1583,131 +1583,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nSphinx プロジェクトに必要なファイルを生成します。\n\nsphinx-quickstart は、いくつかの質問であなたの\nプロジェクトを生成するためのディレクトリと、sphinx-build と一緒に使える\nサンプルのMakefileを作成してくれるインタラクティブなツールです。\n" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "Quiet モード" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "出力ディレクトリ" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "構成オプション" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "記述した場合、ソースとビルドのディレクトリを分割します。" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "_templates などのドットの置き換え" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "プロジェクトの基本オプション" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "プロジェクト名" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "著者名" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "プロジェクトのバージョン" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "プロジェクトのリリース" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "ドキュメント言語" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "ソース・ファイルサフィックス" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "マスタードキュメント名" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "epubを利用する" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "拡張オプション" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "%s 拡張を有効にする" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "任意の拡張を有効にする" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "Makefileとbatファイルの生成オプション" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "makefileを作成する" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "makefileを作成しない" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "batファイルを作成する" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "batファイルを作成しない" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "Makefile / make.bat 向けに make-mode を使う" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "Makefile / make.bat 向けに make-mode を使わないでください。" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "プロジェクトテンプレート" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "テンプレートファイルのテンプレートディレクトリ" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "テンプレート変数の定義" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "\"quiet\" が指定されていますが、 \"project\" または \"author\" のいずれも指定されていません。" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "エラー:指定されたパスはディレクトリではないか、または sphinx ファイルが既に存在します。" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "sphinx-quickstart は空のディレクトリにのみ生成します。新しいルートパスを指定してください。" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "無効なテンプレート変数: %s" @@ -1779,17 +1779,17 @@ msgstr "作者: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "パラメータ" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "戻り値" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "戻り値の型" @@ -1819,12 +1819,12 @@ msgstr "%s (C のデータ型)" msgid "%s (C variable)" msgstr "%s (C の変数)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "の関数" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "のメンバ変数" @@ -1832,7 +1832,7 @@ msgstr "のメンバ変数" msgid "macro" msgstr "のマクロ" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "のデータ型" @@ -1855,106 +1855,106 @@ msgstr "バージョン %s で変更" msgid "Deprecated since version %s" msgstr "バージョン %s で非推奨" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "'%s' 内で定義されている宣言が重複しています。\n宣言場所は '%s' です。" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "テンプレートパラメータ" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "例外" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "%s (C++ %s)" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "クラス" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "union" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "コンセプト" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "列挙型" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "'%s' 内で定義されている宣言が重複しています。\n宣言名は '%s' です。" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (組み込み関数)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s のメソッド)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (クラス)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (グローバル変数または定数)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s の属性)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "引数" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (モジュール)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "メソッド" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "データ" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "の属性" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "モジュール" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "無効な math_eqref_format: %r" @@ -1976,7 +1976,7 @@ msgstr "演算子" msgid "object" msgstr "オブジェクト" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "例外" @@ -1996,88 +1996,88 @@ msgstr "変数" msgid "Raises" msgstr "例外" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s モジュール)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (組み込み変数)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (%s モジュール)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (組み込みクラス)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (%s のクラス)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s のメソッド)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s の静的メソッド)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s の静的メソッド)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s のクラスメソッド)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s のクラスメソッド)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s の属性)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Pythonモジュール索引" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "モジュール" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "非推奨" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "クラスメソッド" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "の静的メソッド" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "相互参照 %r に複数のターゲットが見つかりました: %s" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (非推奨)" @@ -2153,7 +2153,7 @@ msgstr "検索ページ" msgid "duplicate citation %s, other instance in %s" msgstr "引用 %s はすでに %s で使われています" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "ラベル %s はすでに %s で使われています" @@ -2213,21 +2213,21 @@ msgid "" "another doctree directory." msgstr "この環境は選択したビルダーと互換性がありません。別の doctree ディレクトリーを選択してください。" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "%s のドキュメントをスキャンできませんでした: %r " -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "ドメイン %r はまだ登録されていません" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "自己参照している toctree が見つかりました。無視します。" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "ドキュメントはどの toctree にも含まれていません" @@ -2247,6 +2247,7 @@ msgid "unknown index entry type %r" msgstr "不明なインデックスエントリタイプ %r" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "記号" @@ -2272,22 +2273,22 @@ msgstr "toctree に除外したドキュメントへの参照が含まれてい msgid "toctree contains reference to nonexisting document %r" msgstr "toctree に存在しないドキュメントへの参照が含まれています %r" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "画像ファイルが読み込めません: %s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "画像ファイル %s が読み込めません: %s" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "ダウンロードファイルが読み込めません: %s" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "%s はすでにセクション番号が割り当てられています (入れ子になった番号の toctree ?)" @@ -2412,7 +2413,7 @@ msgstr "%s はディレクトリではありません。" #: sphinx/ext/coverage.py:46 #, python-format msgid "invalid regex %r in %s" -msgstr "invalid regex %r in %s" +msgstr "%s 内に無効な正規表現 %r があります" #: sphinx/ext/coverage.py:55 #, python-format @@ -2431,38 +2432,38 @@ msgstr "coverage_c_regexes 内に無効な正規表現 %r があります" msgid "module %s could not be imported: %s" msgstr "モジュール %s をインポートできませんでした: %s" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "'%s' オプション内に '+' または '-' が不足しています" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' は正しいオプションではありません" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' は正しい pyversion オプションではありません" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "無効な TestCode タイプ" -#: sphinx/ext/doctest.py:291 +#: 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 "ソース内の doctests のテストが終了したら、%(outdir)s/output.txt の結果を確認してください。" -#: sphinx/ext/doctest.py:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "%sブロックにあるコード/出力 が %s にありません: %s" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "無効な doctest コードは無視されます: %r" @@ -2480,7 +2481,7 @@ msgstr "外部の Graphviz ファイル %r が見つからないか読み込め msgid "Ignoring \"graphviz\" directive without content." msgstr "コンテンツのない \"graphviz\" ディレクティブを無視します" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2490,14 +2491,14 @@ msgid "" "%r" msgstr "dotは出力ファイルを生成しませんでした:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "dot コマンド %r は実行できません (graphviz 出力のために必要です)。graphviz_dot の設定を確認してください" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2507,23 +2508,23 @@ msgid "" "%r" msgstr "dot はエラー終了しました:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format は %r ではなく 'png' か 'svg' でなければなりません" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "dot コード %r: %s" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[グラフ: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[グラフ]" @@ -2542,31 +2543,31 @@ msgid "" "%r" msgstr "変換処理はエラー終了しました:\n[stderr]\n%r\n[stdout]\n%r" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "LaTeX コマンド %r を実行できません (数式表示のために必要です)。imgmath_latex の設定を確認してください" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "%s コマンド %r を実行できません (数式表示のために必要です)。imgmath_%s の設定を確認してください" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "latex の表示 %r: %s" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "latex のインライン表示 %r: %s" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "この数式へのパーマリンク" @@ -2586,26 +2587,26 @@ msgid "" "alternatives:" msgstr "いくつかのインベントリでいくつかの問題に遭遇しましたが、代替手段を持っていました:" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "以下の問題があるため、いくつかのインベントリは到達できませんでした:" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "(in %s)" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "intersphinx 識別子 %r は文字列ではありません。無視します" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "intersphinx_mapping [%s] の読み取りに失敗しました。無視します: %r" @@ -2661,29 +2662,29 @@ msgstr "概要: モジュールコード" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>全モジュールのうち、コードを読めるもの</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "auto%s (%r) の署名が無効です" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "%sの引数のフォーマット中にエラーが発生しました: %s " -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "オブジェクト %s に属性 %s がありません" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "autodoc: ドキュメント化する %r の決定に失敗しました。次の例外が発生しました:\n%s" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2691,39 +2692,39 @@ msgid "" "explicit module name)" msgstr "ドキュメントの自動生成 %r のためにどのモジュールをインポートするのか分かりません (ドキュメントに \"module\"または \"currentmodule\"ディレクティブを配置するか、明示的なモジュール名を指定してください)" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "automodule 名の \"::\" は意味がありません" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "automodule に与えられた署名引数、または戻り値となるアノテーション %s" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ は文字列のリストでなければなりません。%r (%s モジュールの中) ではないです -- ignoring __all__" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr ":members: または __all__ に記載されている属性がありません: モジュール %s、属性 %s" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "ベースクラス: %s" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` のエイリアス" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "autodoc_default_flags の無効なオプションは無視されます: %r" @@ -2759,17 +2760,17 @@ msgid "" "contain .rst. Skipped." msgstr "autosummary は内部的に rst ファイルを生成します。しかしあなたの source_suffix は rst ファイルに含まれていませんでした。スキップします。" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] %s の autosummary を生成中" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] %s に書き込み中" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2784,25 +2785,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\nautosummary ディレクティブを使って ReStructuredText を生成します。\n\nsphinx-autogen は sphinx.ext.autosummary.generate のフロントエンドです。\n入力されたファイルを含む autosummary ディレクティブから reStructuredText ファイルを\n生成します。\n\nautosummary ディレクティブのフォーマットは\n``sphinx.ext.autosummary`` に記載されています。Pythonモジュールと :: を使って読むことができます。\n\npydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "rST ファイルを生成するためのソースファイル" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "すべての生成データを配置するディレクトリ" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "ファイルのデフォルト拡張子 (デフォルト: %(default)s)" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "カスタムテンプレートディレクトリ (デフォルト: %(default)s)" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "インポートしたメンバーのドキュメント (デフォルト: %(default)s)" @@ -2880,6 +2881,7 @@ msgid "Warning" msgstr "警告" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "前のページからの続き" @@ -2887,13 +2889,29 @@ msgstr "前のページからの続き" msgid "Continued on next page" msgstr "次のページに続く" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "検索" @@ -3030,13 +3048,13 @@ msgstr "次のトピックへ" msgid "next chapter" msgstr "次の章へ" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "検索機能を使うには JavaScript を有効にしてください。" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3044,20 +3062,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "このページからドキュメントを検索できます。キーワードを下のボックスに入力して、「検索」をクリックしてください。入力された全てのキーワードを含むページが検索されます。一部のキーワードしか含まないページは検索結果に表示されないので注意してください。" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "検索" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "検索結果" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3115,20 +3133,20 @@ msgstr "この定義へのパーマリンク" msgid "Hide Search Matches" msgstr "検索結果を隠す" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "検索中" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "検索を準備しています..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "検索が完了し、 %s ページ見つけました。" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", in " @@ -3145,18 +3163,18 @@ msgstr "サイドバーをたたむ" msgid "Contents" msgstr "コンテンツ" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "4列ベースのインデックスが見つかりました。あなたが使っている拡張子のバグかもしれません: %r" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "Footnote [%s] は参照されていません。" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "Footnote [#] は参照されていません。" @@ -3227,7 +3245,7 @@ msgstr "スキップしました" msgid "failed" msgstr "失敗しました" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "ディレクティブのクラスを追加した際に、おそらく追加の引数が指定されまえんでした" @@ -3288,15 +3306,15 @@ msgstr "このテーブルへのパーマリンク" msgid "Permalink to this code" msgstr "このコードへのパーマリンク" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "この画像へのパーマリンク" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "この目次へのパーマリンク" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "画像サイズを取得できませんでした。:scale: オプションは無視されます。" @@ -3333,12 +3351,12 @@ msgstr "tabularcolumns と :widths: オプションの両方が設定されて msgid "dimension unit %s is invalid. Ignored." msgstr "ディメンション単位 %s が無効です。無視されます。" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "不明なインデックスエントリタイプ %s が見つかりました" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "不明な設定値 latex_elements[%r] はスキップされました。" @@ -3356,12 +3374,12 @@ msgstr "[画像]" msgid "caption not inside a figure." msgstr "キャプションは図の中にはありません。" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "未実装のノードタイプ: %r" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "不明なノードタイプ: %r" diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index 525097551e55ade0bc6b00969014130737d01c33..4e975c6062cb08278871d53cb3e74f651226cc67 100644 GIT binary patch delta 11398 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 ap4~R0DA8lvqI1{7egF5<?abdZ<bMEIcL2@+ delta 11222 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 k&|Q&;u4JdkKKY} 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 UUjFWW+1!7xln>j=QO_UvKlJk2*8l(j diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 6c793d142..b88f11d2a 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -8,9 +8,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: YT H <dev@theYT.net>\n" "Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -122,7 +122,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -130,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "병렬 %s 처리" @@ -587,44 +587,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -643,19 +643,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "기본" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "모듈 수준" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "소스 파일을 복사하는 중…" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -664,76 +664,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "빌드 중 [%s]: " -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "템플릿을 읽는 중… " -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -752,7 +752,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -805,7 +805,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -966,24 +966,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1003,28 +1003,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1036,28 +1036,28 @@ msgstr "" msgid "Index" msgstr "색인" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "출시 버전" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1120,8 +1120,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "자세한 내용은 <http://sphinx-doc.org/>를 참조하십시오." @@ -1498,13 +1498,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1512,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1542,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1571,131 +1571,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\nSphinx 프로젝트에 필요한 파일을 생성합니다.\n\nsphinx-quickstart는 대화형 도구로서, 프로젝트에 대한 몇 가지 질문을 한 다음\n완전한 문서 디렉토리와 (sphinx-build와 함께 사용할 수 있는) 견본 Makefile을 생성합니다.\n" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "조용한 모드" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "출력 경로" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "구조 옵션" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "지정된 경우, 소스와 빌드 디렉토리를 구분함" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "프로젝트 기본 옵션" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "프로젝트 이름" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "작성자 이름" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "프로젝트의 버전" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "프로젝트의 출시 버전" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "문서 언어" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "마스터 문서 이름" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "확장 기능 옵션" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "%s 확장 기능 사용" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "임의의 확장 기능 사용" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "Makefile과 배치 파일 생성" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "makefile 생성" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "makefile을 생성하지 않음" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "배치 파일 생성" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "배치 파일을 생성하지 않음" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "프로젝트 템플릿" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1767,17 +1767,17 @@ msgstr "작성자: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "매개변수" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "반환값" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "반환 형식" @@ -1807,12 +1807,12 @@ msgstr "%s (C 데이터 형식)" msgid "%s (C variable)" msgstr "%s (C 변수)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "함수" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "멤버 변수" @@ -1820,7 +1820,7 @@ msgstr "멤버 변수" msgid "macro" msgstr "매크로" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "데이터 형식" @@ -1843,106 +1843,106 @@ msgstr "버전 %s에서 변경" msgid "Deprecated since version %s" msgstr "버전 %s부터 폐지" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "템플릿 매개변수" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "예외" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "클래스" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (내장 함수)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 메서드)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (클래스)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (전역 변수 또는 상수)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s의 속성)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "인수" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (모듈)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "메서드" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "데이터" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "속성" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "모듈" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "연산자" msgid "object" msgstr "객체" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "예외" @@ -1984,88 +1984,88 @@ msgstr "변수" msgid "Raises" msgstr "예외" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s 모듈)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (내장 변수)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (%s 모듈)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (내장 클래스)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 클래스)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s의 메서드)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s의 정적 메서드)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s의 정적 메서드)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s의 클래스 메서드)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s의 클래스 메서드)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s의 속성)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Python 모듈 목록" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "모듈" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "폐지" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "클래스 메서드" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "정적 메서드" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2141,7 +2141,7 @@ msgstr "검색 페이지" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2201,21 +2201,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2235,6 +2235,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "기호" @@ -2260,22 +2261,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2419,38 +2420,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2468,7 +2469,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2478,14 +2479,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2495,23 +2496,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2530,31 +2531,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "이 수식에 대한 퍼머링크" @@ -2574,26 +2575,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2649,29 +2650,29 @@ msgstr "개요: 모듈 코드" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2679,39 +2680,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "기반 클래스: %s" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2747,17 +2748,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2772,25 +2773,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2868,6 +2869,7 @@ msgid "Warning" msgstr "경고" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "이전 페이지에서 계속" @@ -2875,13 +2877,29 @@ msgstr "이전 페이지에서 계속" msgid "Continued on next page" msgstr "다음 페이지에 계속" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "검색" @@ -3018,13 +3036,13 @@ msgstr "다음 항목" msgid "next chapter" msgstr "다음 장" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "검색 기능을 사용하려면 JavaScript를 활성화하십시오." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3032,20 +3050,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "여기에서 문서들을 검색 할 수 있습니다. 아래 상자에 검색 단어를 입력하고 \"검색\"을 클릭하십시오.\n검색 기능은 자동으로 모든 단어를 검색합니다. 단어 수가 적은 페이지는 결과 목록에 표시되지 않습니다." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "검색" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "검색 결과" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3103,20 +3121,20 @@ msgstr "정의 주소" msgid "Hide Search Matches" msgstr "검색 결과 숨기기" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "검색 중" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "검색 준비 중…" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", 문서 - " @@ -3133,18 +3151,18 @@ msgstr "사이드바 닫기" msgid "Contents" msgstr "내용" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3215,7 +3233,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3276,15 +3294,15 @@ msgstr "이 표에 대한 퍼머링크" msgid "Permalink to this code" msgstr "이 코드에 대한 퍼머링크" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "이 이미지에 대한 퍼머링크" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "이 목차에 대한 퍼머링크" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3321,12 +3339,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3344,12 +3362,12 @@ msgstr "[그림]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index e75d4129acb91caacec422e2c606b66cb15e59c0..6a8b983ea3208339223bb7430d3fc351799ec75d 100644 GIT binary patch delta 11338 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 Pv2*&B$03aUcfkJuqgU}_ delta 11172 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 diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index b991d5a4c..9d9707c71 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -130,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -587,44 +587,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -643,19 +643,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Įtaisytieji" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Modulio lygis" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -664,76 +664,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -752,7 +752,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -805,7 +805,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -966,24 +966,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (kuris yra " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1003,28 +1003,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1036,28 +1036,28 @@ msgstr "" msgid "Index" msgstr "Indeksas" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Leidimas" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1120,8 +1120,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1498,13 +1498,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1512,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1542,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1571,131 +1571,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1767,17 +1767,17 @@ msgstr "Autorius: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametrai" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Grąžinamos reikšmės" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Grąžinamos reikšmės tipas" @@ -1807,12 +1807,12 @@ msgstr "%s (C tipas)" msgid "%s (C variable)" msgstr "%s (C kintamasis)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "narys" @@ -1820,7 +1820,7 @@ msgstr "narys" msgid "macro" msgstr "makrokomanda" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "tipas" @@ -1843,106 +1843,106 @@ msgstr "Pakeista %s versijoje" msgid "Deprecated since version %s" msgstr "Nebepalaikoma nuo %s versijos" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Išmeta" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "klasė" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (itaisytoji funkcija)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodas)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (klasė)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globalus kintamasis arba konstanta)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributas)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Argumentais" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "metodas" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "duomenys" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "atribudas" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "modulis" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "operatorius" msgid "object" msgstr "objektas" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "išimtis" @@ -1984,88 +1984,88 @@ msgstr "Kintamieji" msgid "Raises" msgstr "Sukelia" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (modulyje %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (įtaisytasis kintamasis)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (modulje %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (įtaisytoji klasė)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (klasė iš %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metodas)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statinis metodas)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statinis metodas)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klasės metodas)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klasės metodas)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atributas)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "moduliai" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Atmestas" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "klasės metodas" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "statinis metodas" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (atmestas)" @@ -2141,7 +2141,7 @@ msgstr "Paieškos puslapis" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2201,21 +2201,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2235,6 +2235,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2260,22 +2261,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2419,38 +2420,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2468,7 +2469,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2478,14 +2479,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2495,23 +2496,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2530,31 +2531,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2574,26 +2575,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2649,29 +2650,29 @@ msgstr "Apžvalga: modulio kodas" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Visi moduliai turintys kodą</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2679,39 +2680,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` alternatyvus vardas" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2747,17 +2748,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2772,25 +2773,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2868,6 +2869,7 @@ msgid "Warning" msgstr "Įspėjimas" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "tęsinys iš praeito puslapio" @@ -2875,13 +2877,29 @@ msgstr "tęsinys iš praeito puslapio" msgid "Continued on next page" msgstr "Tęsinys kitame puslapyje" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Paieška" @@ -3018,13 +3036,13 @@ msgstr "Kita tema" msgid "next chapter" msgstr "kita dalis" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Prašome aktyvuoti JavaScript, kad veiktų paieškos\n funkcionalumas." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3032,20 +3050,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Čia jūs galite ieškoti šiuose dokumentuose. Įveskite savo paieškos\n žodžius į lauką apačioje ir paspauskite \"ieškoti\". Pastebėsime, kad paieškos\n funkcija automatiškai ieškos visų žodžių. Puslapiai,\n kuriuose yra mažiau žodžių nepasirodys tarp paieškos rezultatų." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "ieškoti" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Paieškos rezultatai" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3103,20 +3121,20 @@ msgstr "Nuoroda į šį apibrėžimą" msgid "Hide Search Matches" msgstr "Paslėpti paieškos rezultatus" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3133,18 +3151,18 @@ msgstr "Paslėpti šoninę juostą" msgid "Contents" msgstr "Turinys" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3215,7 +3233,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3276,15 +3294,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3321,12 +3339,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3344,12 +3362,12 @@ msgstr "[paveiksliukas]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index e67e38c531f801031ca6a31efcdff4b2f5fa02c0..64d5c3c322793237adae4531b387a92f94cabac6 100644 GIT binary patch delta 11337 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 Olzw;CJBqnOLjDJMnfDI> delta 11165 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 Yc&TLA&SUygwQ?n|UGfa&n|_u44~4|eV*mgE diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.po b/sphinx/locale/lv/LC_MESSAGES/sphinx.po index 1b1b36ed0..bcfda0332 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -129,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -137,7 +137,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -586,44 +586,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -642,19 +642,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Iebūvētie" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Moduļu līmenis" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -663,76 +663,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -751,7 +751,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -804,7 +804,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -921,7 +921,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -965,24 +965,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (iekš " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1002,28 +1002,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1035,28 +1035,28 @@ msgstr "" msgid "Index" msgstr "Indekss" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Izlaidums" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1119,8 +1119,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1497,13 +1497,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1511,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1541,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1570,131 +1570,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1766,17 +1766,17 @@ msgstr "Autors: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Atgriež" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Atgriežamais tips" @@ -1806,12 +1806,12 @@ msgstr "%s (C tips)" msgid "%s (C variable)" msgstr "%s (C mainīgais)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "loceklis" @@ -1819,7 +1819,7 @@ msgstr "loceklis" msgid "macro" msgstr "makross" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "tips" @@ -1842,106 +1842,106 @@ msgstr "Mainīts versijā %s" msgid "Deprecated since version %s" msgstr "Neieteicams no versijas %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Izmet" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "klase" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (iebūvēta funkcija)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metods)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globālais mainīgais vai konstanta)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributs)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Argumenti" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (modulis)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "metods" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "atributs" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "modulis" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1963,7 +1963,7 @@ msgstr "operators" msgid "object" msgstr "objekts" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "izņēmums" @@ -1983,88 +1983,88 @@ msgstr "Mainīgie" msgid "Raises" msgstr "Ceļ" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moduļī %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (iebūvētais mainīgais)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (moduļī %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (iebūvēta klase)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (klase iekš %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metods)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statiskais metods)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statiskais metods)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klases metods)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klases metods)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atributs)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "moduļi" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Nav ieteicams" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "klases metods" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "statiskais metods" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2140,7 +2140,7 @@ msgstr "Atlases lapa" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2200,21 +2200,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2234,6 +2234,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2259,22 +2260,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,38 +2419,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2467,7 +2468,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2477,14 +2478,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2494,23 +2495,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2529,31 +2530,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2573,26 +2574,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2648,29 +2649,29 @@ msgstr "Apskats: moduļa teksts" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Visi moduļi, kuriem ir izejas teksti</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2678,39 +2679,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "aizstājvārds klasei :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2746,17 +2747,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2771,25 +2772,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2867,6 +2868,7 @@ msgid "Warning" msgstr "Brīdinājums" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "turpinājums no iepriekšējās lappuses" @@ -2874,13 +2876,29 @@ msgstr "turpinājums no iepriekšējās lappuses" msgid "Continued on next page" msgstr "Turpnājums nākošā lappusē" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Meklēt" @@ -3017,13 +3035,13 @@ msgstr "nākoša tēma" msgid "next chapter" msgstr "nākoša sadaļa" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Lai iespējotu meklēšanu, lūdzu aktivizēt JavaScript." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3031,20 +3049,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Šeit Jūs varat meklēt šajos dokumentos. Norādiet meklējamus vārdus\n ievada lauka un uzklikšķiniet pogu \"meklēt\". Lūdzu ievērojiet,\n ka meklēšanas programma atradīs tikai tos dokumentus, kuros ir\n visi ievadītie vārdi. Dokumenti, kuros ir tikai daļa no ievadītiem\n vārdiem, netiks atlasīti." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "meklēt" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Atlases rezultāti" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3102,20 +3120,20 @@ msgstr "Pastāvīga norāde uz šo definīciju" msgid "Hide Search Matches" msgstr "Paslēpt atlases vārdus" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3132,18 +3150,18 @@ msgstr "Savērst sānjoslu" msgid "Contents" msgstr "Saturs" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3214,7 +3232,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3275,15 +3293,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3320,12 +3338,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3343,12 +3361,12 @@ msgstr "[attēls]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index 8b18fee52cdcbcd0af5220348ba24b01738308e7..c89cf3825338cffaef131a97d2690955a802d017 100644 GIT binary patch delta 11326 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 delta 11165 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 aa#7tyA4TfZMXCEYhw@2}DtxG7`TqlEkJShO diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index 53be3cf23..fc4a16386 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -130,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -587,44 +587,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -643,19 +643,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Вградени" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Ниво на модул" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -664,76 +664,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -752,7 +752,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -805,7 +805,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -966,24 +966,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (во " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1003,28 +1003,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1036,28 +1036,28 @@ msgstr "" msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1120,8 +1120,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1498,13 +1498,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1512,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1542,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1571,131 +1571,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1767,17 +1767,17 @@ msgstr "Автор: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Враќа" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Повратен тип" @@ -1807,12 +1807,12 @@ msgstr "%s (C тип)" msgid "%s (C variable)" msgstr "%s (C променлива)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "функција" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "член" @@ -1820,7 +1820,7 @@ msgstr "член" msgid "macro" msgstr "макро" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "тип" @@ -1843,106 +1843,106 @@ msgstr "" msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Фрла" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "класа" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (вградена функција)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (класа)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "" @@ -1984,88 +1984,88 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2141,7 +2141,7 @@ msgstr "" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2201,21 +2201,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2235,6 +2235,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Симболи" @@ -2260,22 +2261,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2419,38 +2420,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2468,7 +2469,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2478,14 +2479,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2495,23 +2496,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2530,31 +2531,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2574,26 +2575,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2649,29 +2650,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2679,39 +2680,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2747,17 +2748,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2772,25 +2773,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2868,6 +2869,7 @@ msgid "Warning" msgstr "" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "" @@ -2875,13 +2877,29 @@ msgstr "" msgid "Continued on next page" msgstr "" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "" @@ -3018,13 +3036,13 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3032,20 +3050,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3103,20 +3121,20 @@ msgstr "" msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3133,18 +3151,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3215,7 +3233,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3276,15 +3294,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3321,12 +3339,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3344,12 +3362,12 @@ msgstr "" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index 4bddd7b2fa742765851deec31e7654d5df6e35f7..3a3fd6e7fd4fe13b1b46b004f9e44a5ac577c325 100644 GIT binary patch delta 11342 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�qCZgG8 z*DMJ`2)m#f8jL!2Z=q7U43(+RQ8PY>8el#aY)VJJ&+JWE3sd>LJ=VcFSc?A5*A%q7 ze@5;4=co>wvp~AhGEuv|JF27psI{Do+Dt33CH{&%vDzNH8E2#3Uy4m|6{`Kq*cxL# z*ZHR~j)G?LKB}Xon1mmoGII_!pqq{_Fqt^;3%e&;p(gOA<0`B~d;rz%71R>k!c+{{ zYctq-FZp*-F^CFvJO|ZrF20F*s8qJtXOC4jY9QlKdnE@O<6P80Poidg6=U%RYDvTQ z+rP5usQL`lrha=r`PUlHp`tvlL8a;dsw1y2ZNs7X3ULgU!�WqMkd1nfMdBFySkE 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 NTnZ_(?dipU{{h*}14RG; delta 11165 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 C=-`k5 diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index 72b85b365..77db4ca5a 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -129,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -137,7 +137,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -586,44 +586,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -642,19 +642,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Innebygde" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Modulnivå" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -663,76 +663,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -751,7 +751,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -804,7 +804,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -921,7 +921,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -965,24 +965,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "(i " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1002,28 +1002,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1035,28 +1035,28 @@ msgstr "" msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Utgivelse" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1119,8 +1119,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1497,13 +1497,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1511,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1541,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1570,131 +1570,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1766,17 +1766,17 @@ msgstr "Forfatter: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametere" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Returnere" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Retur type" @@ -1806,12 +1806,12 @@ msgstr "%s (C-type)" msgid "%s (C variable)" msgstr "%s (C-variabel)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "funksjon" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "medlem" @@ -1819,7 +1819,7 @@ msgstr "medlem" msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "type" @@ -1842,106 +1842,106 @@ msgstr "Endret i version %s" msgid "Deprecated since version %s" msgstr "Foreldet siden version %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Kaster" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (innebygd funksjon)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metode)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (klasse)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Argument" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "metode" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "attributt" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1963,7 +1963,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "untak" @@ -1983,88 +1983,88 @@ msgstr "Variabler" msgid "Raises" msgstr "Hever" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (innebygd variabel)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (innebygd klasse)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metode)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statisk metode)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metode)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klassemetode)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemetode)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attributt)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Foreldet" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (foreldet)" @@ -2140,7 +2140,7 @@ msgstr "Søkeside" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2200,21 +2200,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2234,6 +2234,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2259,22 +2260,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,38 +2419,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2467,7 +2468,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2477,14 +2478,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2494,23 +2495,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2529,31 +2530,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2573,26 +2574,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2648,29 +2649,29 @@ msgstr "Oversikt: modulkildekode" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Alla moduler hvor kildekode finnes</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2678,39 +2679,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "alias for :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2746,17 +2747,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2771,25 +2772,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2867,6 +2868,7 @@ msgid "Warning" msgstr "Advarsel" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "fortsettelse fra forrige side" @@ -2874,13 +2876,29 @@ msgstr "fortsettelse fra forrige side" msgid "Continued on next page" msgstr "Fortsetter på neste side" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Søk" @@ -3017,13 +3035,13 @@ msgstr "Neste emne" msgid "next chapter" msgstr "neste kapittel" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Vennligst aktiver JavaScript for å aktivere søk." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3031,20 +3049,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "her kan du søke blant disse dokumentene. Angi søkeord nedfor og klikk \"søk\".\n Søket må treffe på samtlige søkeord." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "søk" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Søkeresultat" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3102,20 +3120,20 @@ msgstr "Permalink til denne definisjonen" msgid "Hide Search Matches" msgstr "Skjul søkeresultat" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3132,18 +3150,18 @@ msgstr "Skjul sidepanelet" msgid "Contents" msgstr "Innhold" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3214,7 +3232,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3275,15 +3293,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3320,12 +3338,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3343,12 +3361,12 @@ msgstr "[bilde]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index eba9d6566ede1efb991e97fa04da15c08b786c62..1d88acdb8a38d853084a4f0d031ccf0780bdf248 100644 GIT binary patch delta 11335 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 Pm)Tr=Ju*xa2oCr!)O*TA delta 11170 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 diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index a365b0ef7..e87d8a887 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\n" "MIME-Version: 1.0\n" @@ -123,7 +123,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -131,7 +131,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -139,7 +139,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -588,44 +588,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -644,19 +644,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "बिइल्टिन्स" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "मडुलको तह" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -665,76 +665,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -753,7 +753,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -806,7 +806,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -923,7 +923,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -967,24 +967,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "(in" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1004,28 +1004,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1037,28 +1037,28 @@ msgstr "" msgid "Index" msgstr "अनुसुची" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "रीलीज" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1121,8 +1121,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1499,13 +1499,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1513,29 +1513,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1543,26 +1543,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1572,131 +1572,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1768,17 +1768,17 @@ msgstr "लेखक" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parameters" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Returns" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Return type" @@ -1808,12 +1808,12 @@ msgstr "%s (C किसिम)" msgid "%s (C variable)" msgstr "%s (C चल)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "फन्क्सन" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "सदस्य" @@ -1821,7 +1821,7 @@ msgstr "सदस्य" msgid "macro" msgstr "बृहत" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "किसिम" @@ -1844,106 +1844,106 @@ msgstr "भर्सन %s मा बदलिएको" msgid "Deprecated since version %s" msgstr "Deprecated since version %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Throws" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "कक्षा" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (built-in function)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधी)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (कक्षा)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global variable or constant)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribute)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Arguments" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (मडुल)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "विधी" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "attribute" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "मडुल" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1965,7 +1965,7 @@ msgstr "सन्चालक" msgid "object" msgstr "object" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "अपबाद" @@ -1985,88 +1985,88 @@ msgstr "चलहरू" msgid "Raises" msgstr "Raises" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in मडुल %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (built-in चल)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (in मडुल %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (built-in कक्षा)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (कक्षा in %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s विधी)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s static विधी)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s static विधी)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s कक्षा विधी)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s कक्षा विधी)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attribute)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Python Module Index" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Deprecated" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "कक्षा विधी" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "static विधी" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "(deprecated)" @@ -2142,7 +2142,7 @@ msgstr "पानामा खोज्नुहोस्" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2202,21 +2202,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2236,6 +2236,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2261,22 +2262,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2420,38 +2421,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2469,7 +2470,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2479,14 +2480,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2496,23 +2497,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2531,31 +2532,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2575,26 +2576,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2650,29 +2651,29 @@ msgstr "पुनरावलोकन: module code" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>All modules for which code is available</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2680,39 +2681,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "alias of :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2748,17 +2749,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2773,25 +2774,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2869,6 +2870,7 @@ msgid "Warning" msgstr "साबधान" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "अघिल्लो पानासँग जोडीएको" @@ -2876,13 +2878,29 @@ msgstr "अघिल्लो पानासँग जोडीएको" msgid "Continued on next page" msgstr "अर्को पानासँग जोडीएको" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "खोज्नुहोस् " @@ -3019,13 +3037,13 @@ msgstr "पछिल्लो विषय" msgid "next chapter" msgstr "पछिल्लो खन्ड" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "खोज्ने कार्य आगाडी बढाउनको लागि जाभास्कृप्ट चलाईदिनुहोस " -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3033,20 +3051,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "यहाँबाट तपाईंले यी ड्कुमेन्टहरु खोज्नसक्नु हुन्छ । खोज्न शब्दहरु\nतलको बक्समा लेख्‍नुहोस र \"खोज्नुहोस्\"थिच्नुहोस । खोज्नुहोस्\nफन्क्सनले आफै सबै शब्दहरु खोज्छ । \nथोरै शब्दहरु भएको पानाहरु नतिजामा देखिन्न । " -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "खोज्नुहोस्" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "खोजेको नतिजा" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3104,20 +3122,20 @@ msgstr "यो अर्थको लागि पर्मालिन्क" msgid "Hide Search Matches" msgstr "खोजेको नतिजाहरु लुकाउनुहोस्" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3134,18 +3152,18 @@ msgstr "साइडबर सानो बनाउनुहोस्" msgid "Contents" msgstr "विषयसूची" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3216,7 +3234,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3277,15 +3295,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3322,12 +3340,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3345,12 +3363,12 @@ msgstr "[चित्र]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index f2fab5a9f836e9d594fb1b26b75dbb31af06669e..98bb4188fc7cc2925c4e6f473292e45eb5242d25 100644 GIT binary patch delta 11367 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 QGq%#mlEK?gKl~!(zrzUj;s5{u delta 11199 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 Pd#-IQxnsEJRM`IkI!(!~ diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index e0dd23c89..a52f5ecaa 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-20 10:06+0000\n" -"Last-Translator: Gert van Dijk <gertvdijk@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: brechtm\n" "Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -127,7 +127,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -135,7 +135,7 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel lezen, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -143,7 +143,7 @@ msgid "" "explicit" msgstr "de %s extensie geeft niet aan of deze veilig is voor parallel schrijven, er wordt aangenomen dat dit niet zo is - vraag de auteur van de extensie om dit te controleren en expliciet te maken" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "seriële verwerking van %s" @@ -592,44 +592,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -648,19 +648,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Builtins" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Moduleniveau" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -669,76 +669,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -757,7 +757,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -810,7 +810,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -927,7 +927,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -971,24 +971,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (in " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1008,28 +1008,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1041,28 +1041,28 @@ msgstr "" msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Release" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1125,8 +1125,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1503,13 +1503,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1517,29 +1517,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "Afgerond: een beginstructuur van mappen is aangemaakt." -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1547,26 +1547,26 @@ msgid "" "source files. " msgstr "\nU kunt nu uw hoofddocument %s gaan vullen en andere bronbestanden\nvoor documentatie aanmaken." -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1576,131 +1576,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "release van project" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "documenttaal" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "bestandsextensie van bronbestanden" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "bestandsnaam van hoofddocument" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "sjabloonmap voor sjabloonbestanden" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1772,17 +1772,17 @@ msgstr "Auteur: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parameters" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Returns" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Return type" @@ -1812,12 +1812,12 @@ msgstr "%s (C-type)" msgid "%s (C variable)" msgstr "%s (C-variabele)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "functie" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "member" @@ -1825,7 +1825,7 @@ msgstr "member" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "type" @@ -1848,106 +1848,106 @@ msgstr "Veranderd in versie %s" msgid "Deprecated since version %s" msgstr "Verouderd sinds versie %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "Sjabloonparameters" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Werpt" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "klasse" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (ingebouwde functie)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s methode)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (klasse)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globale variabele of constante)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribuut)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Argumenten" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (module)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "methode" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "attribuut" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "module" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1969,7 +1969,7 @@ msgstr "operator" msgid "object" msgstr "object" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "exceptie" @@ -1989,88 +1989,88 @@ msgstr "Variabelen" msgid "Raises" msgstr "Veroorzaakt" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in module %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (geïntegreerde variabele)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (in module %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (geïntegreerde klasse)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse in %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (methode van %s.%s)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statische methode van %s.%s)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische methode van %s)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klassemethode)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemethode)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (attribuut van %s.%s)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Python-moduleïndex" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Verouderd" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "klassemethode" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "statische methode" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (verouderd)" @@ -2146,7 +2146,7 @@ msgstr "Zoekpagina" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2206,21 +2206,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2240,6 +2240,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Symbolen" @@ -2265,22 +2266,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2424,38 +2425,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "ontbrekende '+' of '-' in optie '%s'." -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' is geen geldige optie." -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' is geen geldige pyversion optie" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2473,7 +2474,7 @@ msgstr "Extern Graphviz bestand %r niet gevonden of het lezen is mislukt" msgid "Ignoring \"graphviz\" directive without content." msgstr "\"graphviz\" directive zonder inhoud wordt genegeerd." -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2483,14 +2484,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "dot commando %r kan niet worden uitgevoerd (vereist voor graphviz output), controleer de instelling graphviz_dot" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2500,23 +2501,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format moet 'png' of 'svg' zijn, maar is %r" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[graaf: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[graaf]" @@ -2535,31 +2536,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Permalink naar deze formule" @@ -2579,26 +2580,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(in %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "(in %s)" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2654,29 +2655,29 @@ msgstr "Overzicht: module broncode" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Alle modules waarvoor de broncode beschikbaar is</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2684,39 +2685,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "Basisklassen: %s" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "alias voor :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2752,17 +2753,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2777,25 +2778,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2873,6 +2874,7 @@ msgid "Warning" msgstr "Waarschuwing" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "Vervolgd van vorige pagina" @@ -2880,13 +2882,29 @@ msgstr "Vervolgd van vorige pagina" msgid "Continued on next page" msgstr "Vervolgd op volgende pagina" +#: sphinx/templates/latex/sphinxmessages.sty_t:9 +msgid "continues on next page" +msgstr "Vervolgt op volgende pagina" + +#: 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 "pagina" + #: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Zoeken" @@ -3023,13 +3041,13 @@ msgstr "Volgend onderwerp" msgid "next chapter" msgstr "volgend hoofdstuk" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Activeer JavaSscript om de zoekfunctionaliteit in te schakelen." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3037,20 +3055,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Hier kan u de documenten doorzoeken. Geef enkele trefwoorden\n in het veld hieronder en klik \"zoeken\". Merk op dat de zoekfunctie\n steeds naar alle woorden zoekt. Pagina's die minder woorden bevatten\n zullen niet tussen de resultaten verschijnen." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "zoeken" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Zoekresultaten" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3108,20 +3126,20 @@ msgstr "Permalink naar deze definitie" msgid "Hide Search Matches" msgstr "Zoekresultaten verbergen" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Bezig met zoeken" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Zoeken aan het voorbereiden..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Zoekopdracht voltooid, %s pagaina(s) gevonden die overeenkomen met de zoekterm." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", in" @@ -3138,18 +3156,18 @@ msgstr "Zijpaneel inklappen" msgid "Contents" msgstr "Inhoudsopgave" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3220,7 +3238,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "bij het toevoegen van een directive klasse, mogen geen extra argumenten worden meegegeven" @@ -3281,15 +3299,15 @@ msgstr "Permalink naar deze tabel" msgid "Permalink to this code" msgstr "Permalink naar deze broncode" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Permallink naar deze afbeelding" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "Permalink naar deze toctree" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3326,12 +3344,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Onbekende configuratiesleutel: latex_elements[%r] wordt genegeerd" @@ -3349,12 +3367,12 @@ msgstr "[afbeelding]" msgid "caption not inside a figure." msgstr "onderschrift niet binnen figuur." -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index a829c3dc9e5e5632f8c78a285b904fb1d9f8f04f..577316d5151849b8fd0048025b616d42879fcd81 100644 GIT binary patch delta 11378 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 delta 11204 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 diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index 2665e142c..6128a6de6 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: Tawez\n" "Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -125,7 +125,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -133,7 +133,7 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do czytania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenie o sprawdzenie i zadeklarowania tego wprost" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -141,7 +141,7 @@ msgid "" "explicit" msgstr "rozszerzenie %s nie deklaruje, czy jest bezpieczne do pisania współbieżnego, zakładamy że nie jest – prosimy zapytać autora rozszerzenia o sprawdzenie i zadeklarowanie tego wprost" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -590,44 +590,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "kopiowanie obrazków..." -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "pisanie pliku %s..." -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "nieznany mimetype dla %s, ignoruję" @@ -646,19 +646,19 @@ msgstr "brak zmian w wersji %s." msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Wbudowane" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Poziom modułu" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "kopiowanie plików źródłowych..." -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -667,76 +667,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "Plik ePub znajduje się w %(outdir)s." -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "nieprawidłowy css_file: %r, zignorowano" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "wczytywanie szablonów... " -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -755,7 +755,7 @@ msgstr "Strony HTML są w %(outdir)s." msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -808,7 +808,7 @@ msgstr "kopiowanie plików statycznych..." msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -925,7 +925,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -969,24 +969,24 @@ msgstr "nie znaleziono wartości konfiguracyjnej \"texinfo_documents\"; żadne d msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "wartość konfiguracyjna \"texinfo_documents\" odwołuje się do nieznanego dokumentu %s" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (w " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1006,28 +1006,28 @@ msgstr "Pliki XML znajdują się w %(outdir)s." msgid "The pseudo-XML files are in %(outdir)s." msgstr "Pliki pseudo-XML są w %(outdir)s." -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "Pliki LaTeX znajdują się w %(outdir)s." -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "nie znaleziono wartości konfiguracyjnej \"latex_documents\"; żadne dokumenty nie zostaną zapisane" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "wartość konfiguracyjna \"latex_documents\" odwołuje się do nieznanego dokumentu %s" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1039,28 +1039,28 @@ msgstr "wartość konfiguracyjna \"latex_documents\" odwołuje się do nieznaneg msgid "Index" msgstr "Indeks" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Wydanie" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1123,8 +1123,8 @@ msgstr "Raport o błędzie można zgłosić pod adresem <https://github.com/sphi msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "Aby uzyskać więcej informacji, odwiedź <http://sphinx-doc.org/>." @@ -1501,13 +1501,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "Wskaż, które z następujących rozszerzeń Sphinx powinny być włączone:" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1515,29 +1515,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "Stworzyć Makefile? (y/n)" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "Tworzenie pliku %s." -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "Plik %s już istnieje, pomijam." -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "Zakończono: Utworzono początkową strukturę katalogów." -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1545,26 +1545,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1574,131 +1574,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "tryb cichy" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "Podstawowe opcje projektu" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "nazwa projektu" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "nazwiska autorów" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "wersja projektu" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "język dokumentu" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "rozszerzenie pliku źródłowego" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "nazwa głównego dokumentu" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "Opcje rozszerzeń" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "włącz rozszerzenie %s" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "utwórz plik makefile" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "nie twórz pliku makefile" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "twórz plik wsadowy" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "nie twórz pliku wsadowego" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1770,17 +1770,17 @@ msgstr "Autor: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametry" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Zwraca" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Typ zwracany" @@ -1810,12 +1810,12 @@ msgstr "%s (typ C)" msgid "%s (C variable)" msgstr "%s (zmienna C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "funkcja" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "pole" @@ -1823,7 +1823,7 @@ msgstr "pole" msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "typ" @@ -1846,106 +1846,106 @@ msgstr "Zmienione w wersji %s" msgid "Deprecated since version %s" msgstr "Niezalecane od wersji %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "Parametry szablonu" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Wyrzuca" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "klasa" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "unia" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "koncepcja" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funkcja wbudowana)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (klasa)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (zmienna globalna lub stała)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atrybut)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Argumenty" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (moduł)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "metoda" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "dane" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "atrybut" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "moduł" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "Nieprawidłowy math_eqref_format: %r" @@ -1967,7 +1967,7 @@ msgstr "operator" msgid "object" msgstr "obiekt" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "wyjątek" @@ -1987,88 +1987,88 @@ msgstr "Zmienne" msgid "Raises" msgstr "Wyrzuca" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (w module %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (zmienna wbudowana)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (w module %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (klasa wbudowana)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (klasa w module %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metoda)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s metoda statyczna)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metoda statyczna)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s metoda klasy)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klasy)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atrybut %s.%s)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Indeks modułów Pythona" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "moduły" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Niezalecane" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "metoda klasy" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "statyczna metoda" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (niezalecane)" @@ -2144,7 +2144,7 @@ msgstr "Wyszukiwanie" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2204,21 +2204,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "Domena %r nie jest zarejestrowana" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2238,6 +2238,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Symbole" @@ -2263,22 +2264,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2422,38 +2423,38 @@ msgstr "nieprawidłowe wyrażenie regularne %r w coverage_c_regexes" msgid "module %s could not be imported: %s" msgstr "moduł %s nie mógł zostać zaimportowany: %s" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "brak '+' lub '-' w opcji '%s'." -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' nie jest prawidłową opcją." -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' nie jest prawidłową opcją pyversion." -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2471,7 +2472,7 @@ msgstr "Nie znaleziono zewnętrznego pliku Graphviz %r lub jego odczyt się nie msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignorujemy dyrektywę „graphviz” bez treści." -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2481,14 +2482,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "komenda dot %r nie może zostać uruchomiona (potrzebna do wyjścia graphviz), sprawdź ustawienia graphviz_dot" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2498,23 +2499,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format musi mieć wartość „png” lub „svg” a ma %r" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[wykres: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[wykres]" @@ -2533,31 +2534,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Stały odnośnik do tego równania" @@ -2577,26 +2578,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(w %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr " (w %s)" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2652,29 +2653,29 @@ msgstr "Przeglądanie: kod modułu" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Wszystkie moduły, dla których jest dostępny kod</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "błąd podczas formatowania argumentów dla %s: %s" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "brakujący atrybut %s w obiekcie %s" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2682,39 +2683,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "Klasy bazowe: %s" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "alias klasy :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2750,17 +2751,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2775,25 +2776,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "domyślny sufiks dla plików (domyślnie: %(default)s)" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2871,6 +2872,7 @@ msgid "Warning" msgstr "Ostrzeżenie" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "kontynuacja poprzedniej strony" @@ -2878,13 +2880,29 @@ msgstr "kontynuacja poprzedniej strony" msgid "Continued on next page" msgstr "Kontynuacja na następnej stronie" +#: sphinx/templates/latex/sphinxmessages.sty_t:9 +msgid "continues on next page" +msgstr "ciąg dalszy na następnej stronie" + +#: sphinx/templates/latex/sphinxmessages.sty_t:10 +msgid "Non-alphabetical" +msgstr "Niealfabetyczny" + +#: sphinx/templates/latex/sphinxmessages.sty_t:12 +msgid "Numbers" +msgstr "Liczby" + +#: sphinx/templates/latex/sphinxmessages.sty_t:13 +msgid "page" +msgstr "strona" + #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 #: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:41 msgid "Table of Contents" msgstr "Spis treści" #: sphinx/themes/agogo/layout.html:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Szukaj" @@ -3021,13 +3039,13 @@ msgstr "Następny temat" msgid "next chapter" msgstr "następny rozdział" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Aby umożliwić wyszukiwanie, proszę włączyć JavaScript." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3035,20 +3053,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Stąd możesz przeszukać dokumentację. Wprowadź szukane\n słowa w poniższym okienku i kliknij \"Szukaj\". Zwróć uwagę, że\n funkcja szukająca będzie automatycznie szukała wszystkich słów. Strony\n nie zawierające wszystkich wpisanych słów nie znajdą się na wynikowej liście." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "szukaj" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Wyniki wyszukiwania" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3106,20 +3124,20 @@ msgstr "Stały odnośnik do tej definicji" msgid "Hide Search Matches" msgstr "Ukryj wyniki wyszukiwania" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Wyszukiwanie" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Inicjalizacja wyszukiwania..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Wyszukiwanie zakończone. Liczba znalezionych stron pasujących do zapytania: %s." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", w " @@ -3136,18 +3154,18 @@ msgstr "Zwiń pasek boczny" msgid "Contents" msgstr "Treść" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3218,7 +3236,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "nie można podawać dodatkowych argumentów dodając klasy dyrektyw" @@ -3279,15 +3297,15 @@ msgstr "Stały odnośnik do tej tabeli" msgid "Permalink to this code" msgstr "Stały odnośnik do tego bloku kodu" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Stały odnośnik do tego obrazu" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "Stały odnośnik do tego spisu treści" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3324,12 +3342,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "%s" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Nieznany klucz konfiguracyjny: latex_elements[%r] jest ignorowany." @@ -3347,12 +3365,12 @@ msgstr "[obraz]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt/LC_MESSAGES/sphinx.mo index e859615441c50970b07852ab5ef6176f8c283cfe..b6c63fa252be7febf9725a4ecad799245be28ffc 100644 GIT binary patch delta 11319 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 YTmsLfIqIflB&2QLvHWJ#|98&+1qbi^vH$=8 delta 11150 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 diff --git a/sphinx/locale/pt/LC_MESSAGES/sphinx.po b/sphinx/locale/pt/LC_MESSAGES/sphinx.po index 9a91c68ca..058d87dde 100644 --- a/sphinx/locale/pt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Portuguese (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt/)\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -129,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -137,7 +137,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -586,44 +586,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -642,19 +642,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -663,76 +663,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -751,7 +751,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -804,7 +804,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -921,7 +921,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -965,24 +965,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1002,28 +1002,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1035,28 +1035,28 @@ msgstr "" msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1119,8 +1119,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1497,13 +1497,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1511,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1541,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1570,131 +1570,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1766,17 +1766,17 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1806,12 +1806,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "" @@ -1819,7 +1819,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "" @@ -1842,106 +1842,106 @@ msgstr "" msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1963,7 +1963,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "" @@ -1983,88 +1983,88 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2140,7 +2140,7 @@ msgstr "" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2200,21 +2200,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2234,6 +2234,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2259,22 +2260,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,38 +2419,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2467,7 +2468,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2477,14 +2478,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2494,23 +2495,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2529,31 +2530,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2573,26 +2574,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2648,29 +2649,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2678,39 +2679,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2746,17 +2747,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2771,25 +2772,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2867,6 +2868,7 @@ msgid "Warning" msgstr "" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "" @@ -2874,13 +2876,29 @@ msgstr "" msgid "Continued on next page" msgstr "" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "" @@ -3017,13 +3035,13 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3031,20 +3049,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3102,20 +3120,20 @@ msgstr "" msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3132,18 +3150,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3214,7 +3232,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3275,15 +3293,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3320,12 +3338,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3343,12 +3361,12 @@ msgstr "" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 89ba5bcf1b4d6f35a7c5367fa14e748aa1295459..764c55476099e1176864fa34738a1a552e0c219c 100644 GIT binary patch delta 11413 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 a|Fa5Lt?K^g{*Cm0Z$oiOSs^R(sr%nvdk3=s delta 11189 zcmYM&2YilK|Htv`)+~`FMh4-I85xq01WD~JVnmeKD>X`$Dnhw!MQhe<sz#};m8#Ja zs;N;*ZB?sQTU4u$73=@`=3KAW|9L&n^FF_GU-xy+`JLZ6iA-7Hc6_;;>vEvmLW}=w zE@D|_aY`vg|No!6k(RZD@E%shX;J*oVOd*nF5gLv;WPSwjJ2#_`oE5|tUJWV;w`Hw z@va({6@;&9TGkl)gAy%kIL^nxmgTbCljx*lIL7keOq@ZyyOw3O!X~vX>j=)lF4(1x zWiht39ewc{y5oIhj@Co0i_T=r;uTg8Y=MigK3>5JSU$zFiZZ^{h=vy(t+6t8M7?M% z>cwlZ1a89OxDQL>N%Y6t=!1_@6LNdqvWj6K>hp4TTpjhEWGszsFo5x`EE;||5}h~| zHPBkri*{mB{K5YGXY4?H9~)w0ma7*|wavi*;#^c_f4~s@4K;yB7>eHY$bT@6$~3fs zdZ-6dk!`hlqQ3YMvMbgXSROB98GMPAFqFLR!unVfpQ0un)4;Mku@3gahNz6LLdwHh z*MR)1@hct8(TC*(Vg^!2R)5q$ORx`qjjGR}MrJ}WsJI_GaSSR`pV+QJWp*oSi}xaP zwhr2#do*@gRs<aZjg57%9C06H5!OW17x$y~_6UaKd88h#0#wb^Y+_cLiJDMvOu$j- z#7(I0A46@;MbsADb<rqK!?URws48kN<4`MUj+L>!?I;W*{uC)>>swTnKSF)4dNWhq zO)-sl0IHV0K@U8H-gq39S=X<2;}McwE0BF?i5b`nm!qoq6}qE;3yvg~LjG%Y;r~)` zHL8~GqbGXt5-$uuj=B|ss;#!DE$NF)%w-Lyp;S&m)xsXEfcI?!TUk~`;zZPoGf`X6 z8<l~{s0{8!Ctk*)_zE>}QO(Z5cA_%WptaeGPFO<cKZ`~YKFCJ4(|W(~1I{_R5ue8D zcmcJiUgT8+)J63-M`dOtYVY5-osY`YI@HSV**e--R#)Ou7{>V4Fg0)vYOgk9Cg!15 z8q(HmK?-u4TB+!b<53fyfy%%!d>ii}<zRJdXO8tM^e5hmI+l5M|4-<Oq2oM_2=r)g zUL1>>NU|NbMt$B1wZ{`snOTZma5*XiPca%_p>D|NbW`mO(U&+K_5EI`+Q?2P|4P{; zI<%rCs6ASZWpOv^n4GhHfV$CqI~XgYE~vU#1v?=}+ZvApaX;3;s0>roJy2V?4wbP> z8RTD$7j)>wVI7T$Sb{hW{jfKd!gnwLr=brnMy2+148*VP_#moi&tWBehI*g#4fDMO z^dN5NqM;YIKxH5kRptFqdo|dON24Y>0X5JH)C+R4B<@B%e;hU8i^z`$>o3$fuiD8J zZDZ6pX{d2sooQ$<24WNrN4;n{4#f?qD>JmS88{QQvcXs!=i*3Qg_?K>m8%Jbqu!f@ zdagby1MQLjT3P%bwd1n#XhhNxN>me@Vk~B(if%nt$CF5%S`N<6JD85j$N|(TxsJLw z+`E~SN1&594YTlV<Q3LwY=g1gx#V>I$J0oq;}llL@;%Ipn<DSDvQR7Dk5%!e9sBk) zaXe}QnOGOcVlCW-x+ng{Pw*M`!^OQQRD6yjT{JR!o4x!AUn4$=I$medi5D>upQAEV zqmMZyZ(<qZaj2CqMNQy4)Jh9b6X@92Y)wzpG3}2!rbE!BB3MSF8g9f=cm`EmcW@>? zKz(5x)7O9-P@n&Zs+D7?y}w|`*X;Nnss<jSQvMQWVH*2UU(aWee_cQ!Z<=%3992AH zFbwCQs(mwRqWiE8{(_-ctiM@d71VKzL#4JZYQhUq=l^>o8P-E=j-3aXaaIf<|61{O zI+UuPP&IG{d*L(GM7j+$zZZ-_-DFEq=l%=Z9jGclh|0(Xtb#YO68a1>7gap!eW|Dg z40O@Zil<<CT#5~G7itfmp)&NwTV?`Nuq^Rv)c5vbIG(}U_!zavaf3}plF*a5F{&t2 zF$pJQ3c7aFXi4Ld-O*r(`LX&wwxE9pD&_jgqSPg$QaZ_YJNgm-feH8+OJg*bhbGz> z8(}Zh_f}&Fo;9Dltbb@ICB7W$V2r|Y*aU;HFRBK{+VO1Eb89gI^RO=dfdN=$nAw_I z7)RV3-EcH&;Bgp>i!oH^{~(P>I(|p(neT8@3kj%|*F#NkG&*q+D)l>1TXPgO(E`-U z1K%~j$W%kUw=1f~rlA++peD8kt1!NGmPT=WfvN%j5oTqv=ug}kmC6COQ&B~_3OPyE zAzX>o-!ofq0<~gy?qz-78#6H!wdW(SI(~^RrTPjD4e$~*fik1a&w><Giu+>%&P6?+ zk0tO1>OOdaT>n<d(dM6QLr@dgiJIsh^v3I0692|vd@Y;&N6{#oZT6-GY65+*C{DuK z_#viYKC(Eg#2AyY85l_X33}ib)Wo)9C?3Wjyn#AZ&ruVpH`Xkq<yi8cM8^O+bP7I0 zJ@_Z;1yS#ty=sP~iASMM!E9`UXHk1vd7MdgbyRBWq4s<T`r>5Ud03bDGc1djTr{fE zC_tsU!gzDnr(!hmL=49*SPoBM8N830U@;b;7pjny$$qHfnu~AXe%s&)CWAvUo&G(j zi^&x*(OejbsMMvPR@N4Ma5?IQ8?hSxhFY1&By%dtqE?cOI#!)91gE1Wyb_hUeW=rQ z4#V-KiCva+vbmv}V^cn8iyC+#>iDd}T6hdAp!*b)sR&di+G7|FvEx~&=e|I9Jc6o$ z6R6_*167nSFh%FT;#5;SJ#F7ay<iAxrgO11ZnHmsg%ycCrkROHViV#Tn24iLMYb8; za3^X(doUi4U{idKjTql*G~E={RIE&V43)zFPy_jXU@o3`RGf~{I1-hC)u@Xo4<qm% zYC@%Fn2B^neeX@w=QHg%7hN87oTK4|m(dSzV=;V$`a+SJ_SK9!j!n>s<FFkrM`i3j zswe|zndf7$Epanc>KCDEY$IyCyjkQwfW{#@wDJq6<MIkM5#JBZO3R{B*b+6NH&7{b zVI=0GQu`08Rw{gCGSdaUiASRDiHWG<{TMZo4Ihzzb?l`>SLJE@!5dhG_%W(@%FQ-= znS{CtQ&1~<2Q~4js7!9ezPJswg{9}1{x~c~TnnpWV@$@kTr`|C)?x!Zh@R***Bq+= z)XZa06Ka6fus>?$^X&fbuoLlhtcNM{OeV%4SB13=i(>qIli?Ip>}p9PnnnlI3nyS4 zZbTic-%u+oz{TiXVBCqk(`xsz$>8tUjra+wC_64RD;<XV{!)y>JnVsYum<B>trnSM zGY*xST+~W0qArjkjH*<IqmEMwCSn8BKqJu|=c5K#f-(4m{rLmbG4@+xjKfmI>4h=- zKY&JQI%cA(awY1xY(Qn?XS@F?1`-!pYMw8JjftbNJ-&mQ@b_2;uVD(7S!TAZ6KZQG zqTVwDgLVFMXlNzdQ8W7mb*0`$J?Qp{DZ(H;>)@J2=3;q#YBKg2>QAx<QGb$c^O^aR z?3I-aK>x8-=1;P>RIPkzq(FnBHbAH$2{zA%52-H3yU%dIm5&O-f3b~SPpSf|#T zpYPo_aElSI!!G#lMw9xVu^4dyYD+venGE`1UE*3;3*W;QxOo%%U!TS!I&^^~Z8lYz ziC)BgQN=SDwH5PGFW!SXeg`lB&!f)spXiS-&<B0Dm}(D2O)LWSe1aV}-9rBL#rAZl z2C}d?zK^~*8#S>U)K=u7UVIY0@d`TeFYJKDwwm7`dZOO961BBEQSUu%$G5PsxLseG zm4u@@k}wE6q9!oJ{(LOP5YI(TXfGz=H7t+8UzvewV<qAY+=ba#8*6Se85oQz!qM0Z zT@z?1rPnYXZ`+3CnjcE37)bvDtcPn+6TOLj(Curp(*CFkjYk#nc68!Ts7&2OT{w@? z4;|YJC&K+tLqDy8QG4DUBk)bzIj8}5qH5(F>banA%s@^ICr(1Gv@@z^=Al-)150Bb zrr=q0V&D!fjQy`kLn&{D8mI><rQ=XD{}eUAI@Ah|pawW?TYzE2&Yk8?uZOjWvrz+o zh1#-1n1*+-IM!i*JQ&|frJ)t2ql%@g?I>(WyZ~F`8SI7Scbh7ofVvUqqB6J;Ti~yl ziWR>lt2h*ui4RcY%*8}pimnngj?)Oj>!`hchPBb}J5v+QQ7g!{&B2Pqd8ij(M`h>^ zCZq2jlff3~Bp!ePI0H5CGW2rrE7>0MuNPm~YpVS@h7x<{nLo)^#>T`ESQZDPRy+f% z<7`a8J*cgEVE4a3O)Pq!Sy%#w5w}KVY7lDSTlcw45gnkTD;*b54<_z6cEFOv!!Q%4 zVI*EfO|;ne=3li{P!~)lYQkAq9@pdBco>^v?E@ym<89};?8fJ)qS%2t=Z7%@AERFE z{K0%N8kNfWsL$J>_Bb2ea6Wdy#psR?FdCnr7E(Fid_NhL0aq#wy`U%RW*d!8oQfKF zEr#PZtc<5o87i>*gMT#7C);+#ihTY)R>2k63=iT!^gC!WHX12vm$i|G_V6JpWs!%B ztx!cd$aWHzB3_2dz?Z0+*l)*|Q46?_{`eeq(fAxTaT(OaqHNn@;lKairJ<{KHhN+X zYJksCMYY}T--mkfAv->gn($TBsnL%_4=90}cqr;UHBhN;jJg*(p)xuLy<9ZDqT!9Z zQ7_6zrT#od;SJQv0)8@ok`2Rp#2=xaKZ;t}6;utqc9h?WuoM=>4^ex+$c{Inp4*Nt zrSu>TRre)S@zgqI|G34P#CtFn|HTLl|JfYBR@ja>8{fersEni>H!JLl6^O@SC0v0{ z%*QOeb)5azfUQrMe{_C<8N`n;6;ppPMYkCB;ytKidI`1SIw#F<K;2RCR6AaeO7SmP z7ym=0KK_)+<Uss{c;qSa-;YM%Y4hvzC{*f>qxQ1d8FQ@CP^nBuCw9Z8I1ZJe1E{<H zF_uBUvu5Rys0pN@7CH;P@fNz{zb?D+7^CTUfhwNJbLN-EMp%k?Fls`Ra5>IEJs)x2 z4A>EUh=-vcjz<mjk=?%py@=PKKW@P`=-NwT77gDE=Ev(&j3K^&HPG`{v$AA#61T@d z9F74v73<(448;?uf$pFt^grx`j*Di(nW*<p!#+CyyJ$40qwH^{O8cQ!oQ+EP9IT8> zu@~l{E+FS6^W(Z6`Vx0Xt?Vt^v8V~ovf~`ALc9r8jHfV!@vSE`!srORY*rA5C5cl} zMb`@(;sor1-=i`VcEwB}70VJ2LVa&Ks`zrSHtt1j-D50{FHso^xJpsFXoS#6!uFVg zA7D%T!H)f|nIEgIum$~7Q7Qi!l{v59O-kF@PDa(hH<*C=SQ-m39E)E!f0C_<F73rg z8X>qIwUPs<j9kTFe2L{S=!PlIBvcKwvE$yT=dv*Z=VM*`7PSRWQCs7E)BM{q6y1nZ zZ<2ov+>VY|9E72`3?p$nYR|5sQs#NftULfU!B*(R0jSi^KyA%(48o(RmEXX4e1>{& z%xzO+oo|zWz4&c9;&2pJ!F8y;I*#S>8fs;ZKg>!ZQJG4%?Sz$yM_?8%!<A_LX|`Y$ zYQ^VJnfMJe@ve)8_Pp6&=1QG}O7&N$0ZyPMa1W!<_l}uJ9aIhUK|P;?CGcA;gU7Km z-oaMb<gS^(9MnWVMsIZOrlI4OkJ^fh7=;h*IQ*WOKnfP6zbmS$voH;p<9m1)m9aj5 zo7xzG9>mj86Pu0N+Eu8n*@F#r{?E|ROoHy4l~h2ThKAS@M<Wkf-=kjO_K(@B@~FLS zht07+w!y9Fg)h+`J^wYC4MHun8LC#gVSvv6FdC}XNvM?X!>V`*BhdYU`K`4&MickL zaGZxqeJ(2HCs7mp8}+`T|CvlS$2j75@eTak_8F!zzLowz{)a2D68?vt82r$r&WT!C z0{Y-&)C=cgHQbM-@DA!!I3AgWl*d@&*HK$L7&YN(SQ^)$OV$1z4Xx-pDt3QtuGDC3 zN}P-uU;;+sBCLh`u_8W2Wh(56$wV{MMEcnA1gt=ugYKAzL74x9{A({R(V?n*fI1Dq zPfhV;pfb@F^@6^riB7}TxX%9kA!;HoP<tO<V1Cb!#6;qus2W>?`us}_#9amCKc2=> zI<(T4*a(|EGetEWHL>Fuf)7yx`9C)oPfb*ufvSzsSO(W%4DLr|<~}yT;1^~h-BI5g z;G&@iKD0ZwqmIo5)J(5p0RD-^umJVE$4hhN#$s*a7U;x@*bY~rGWH*aV(C}r`FLzg z+zOR>*D@L<Xlz9dcmS1}qo|c%L0@#Y9EH!7K&`YYsu(j+6Y7o1;7nAFoIqvv8LC!d z9FD^GWudlW7BY^@T0}#|wH`H*JUc#x#fkq!P3Re_IQ@z^3X3NZ-HFpM0Xv{p^Z{z( zpQ18(0Q=$*)Yepg%~4oWt<YcRKb?lodml{3ndroPY=E~=MOf9%QFuSZq9)WDHKCrU zV>k`9@-OZFi`a>{h`Xck*Yz%_Of1Fm_zQY6zSYjdth6)giXDVX@d(rlSEA1QQ4GTu zs1=s+bQJzcwxR6>oJapK{%x&HzE;#x_$S#Q)XGPo7CIO8{hjF2U4NNI5A^nS6#i~D z5Or*FP+vHST4@26!|-B`!qd<I^;4}2>iM3iffk~+<}1|ucc4zgb^G(;J`PLAIL61} zDr~f+Lp3nW{$M)lhFXs*%6+Kgau}77d#FqW`<kt&fO<X=8)Iv1k8@EI{vGR}!_QH8 zzoekHY?NPpv$reh(4MZxVEhiXk~64@{flMM)89N-33Y?j%B>c)t;&MC?fWg5ou84r zDLo)8_temvp}CG%qa3*jA0GDit`QSo+Zh+1oLFOlXO7b=KEWBElw31uL2OP?NJj6s zvfdpq(3#pctz~9I=j#Kjk9ce7kb&8~bNlCPh*(e|zhCa`{CeebuU{`wCimq_kK+Fa D(hJ>S diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index ddd09f66f..e54e9288d 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -11,9 +11,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: gilberto dos santos alves <gsavix@gmail.com>\n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -125,7 +125,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -133,7 +133,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -141,7 +141,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -590,44 +590,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -646,19 +646,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Internos" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Nível do Módulo" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -667,76 +667,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -755,7 +755,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -808,7 +808,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -925,7 +925,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -969,24 +969,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (em " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1006,28 +1006,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1039,28 +1039,28 @@ msgstr "" msgid "Index" msgstr "Índice" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Release" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1123,8 +1123,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1501,13 +1501,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1515,29 +1515,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1545,26 +1545,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1574,131 +1574,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "Opção Estrutura" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "Opções básicas do Projeto" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "Opções Extensão" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "Projeto Modelo" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1770,17 +1770,17 @@ msgstr "Autor: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parâmetros" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Retorna" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Tipo de retorno" @@ -1810,12 +1810,12 @@ msgstr "%s (tipo C)" msgid "%s (C variable)" msgstr "%s (variável C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "função" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "membro" @@ -1823,7 +1823,7 @@ msgstr "membro" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "tipo" @@ -1846,106 +1846,106 @@ msgstr "Alterado na versão %s" msgid "Deprecated since version %s" msgstr "Obsoleto desde a versão %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "Parâmetros do Modelo" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Lança" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "conceito" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "enumerador" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (classe)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Argumentos" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "dado" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "módulo" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1967,7 +1967,7 @@ msgstr "operador" msgid "object" msgstr "objeto" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "exceção" @@ -1987,88 +1987,88 @@ msgstr "Variáveis" msgid "Raises" msgstr "Levanta" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (método %s.%s)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (método estático %s.%s)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (método de classe %s.%s)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atributo %s.%s)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Índice de Módulos Python" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2144,7 +2144,7 @@ msgstr "Página de Busca" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2204,21 +2204,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2238,6 +2238,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Símbolos" @@ -2263,22 +2264,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2422,38 +2423,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2471,7 +2472,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2481,14 +2482,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2498,23 +2499,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[gráfico: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[gráfico]" @@ -2533,31 +2534,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Permalink para essa equação" @@ -2577,26 +2578,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(em %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2652,29 +2653,29 @@ msgstr "Visão geral: código do módulo" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Todos os módulos onde este código está disponível</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2682,39 +2683,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "Base: %s" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "apelido de :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2750,17 +2751,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2775,25 +2776,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2871,6 +2872,7 @@ msgid "Warning" msgstr "Aviso" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "continuação da página anterior" @@ -2878,13 +2880,29 @@ msgstr "continuação da página anterior" msgid "Continued on next page" msgstr "Continuação na próxima página" +#: 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 "página" + #: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Buscar" @@ -3021,13 +3039,13 @@ msgstr "Próximo tópico" msgid "next chapter" msgstr "próximo capítulo" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Por favor, ativar JavaScript para habilitar a\nfuncionalidade de busca." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3035,20 +3053,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Aqui pode-se fazer buscas nesses documentos. Preencha sua \npalavras de busca na caixa abaixo e clicar em \"Buscar\". Notar que a busca\nirá procurar automaticamente por todas as palavras. Páginas \ncontendo menos palavras não irão aparecer na lista de resultados." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "buscar" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Resultados da Busca" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3106,20 +3124,20 @@ msgstr "Link permanente para esta definição" msgid "Hide Search Matches" msgstr "Esconder Resultados da Busca" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Buscando" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Preparando a busca..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Busca concluída. %s página(s) que atendem a consulta." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", em " @@ -3136,18 +3154,18 @@ msgstr "Recolher painel lateral" msgid "Contents" msgstr "Conteúdos" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3218,7 +3236,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3279,15 +3297,15 @@ msgstr "Link Permanente para essa tabela" msgid "Permalink to this code" msgstr "Link Permanente para esse código" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Link Permanente para essa imagem" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "Link permanente para esse \"toctree\"" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3324,12 +3342,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Chave configuração desconhecida: latex_elements[%r] será ignorado." @@ -3347,12 +3365,12 @@ msgstr "[imagem]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 9d84e63230def258da23508a537bac5df05b36bd..caa33834fe00c523a19f7269936393ad8019c3ed 100644 GIT binary patch delta 11339 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 Hfua8eu{!Ck delta 11180 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 diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index e13c4c750..b896e2779 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -123,7 +123,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -131,7 +131,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -139,7 +139,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -588,44 +588,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -644,19 +644,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Internos" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Módulos" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -665,76 +665,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -753,7 +753,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -806,7 +806,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -923,7 +923,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -967,24 +967,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (em " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1004,28 +1004,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1037,28 +1037,28 @@ msgstr "" msgid "Index" msgstr "Índice" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Versão" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1121,8 +1121,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1499,13 +1499,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1513,29 +1513,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1543,26 +1543,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1572,131 +1572,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1768,17 +1768,17 @@ msgstr "Autor: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parâmetros" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Retorno" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Tipo de retorno" @@ -1808,12 +1808,12 @@ msgstr "%s (tipo C)" msgid "%s (C variable)" msgstr "%s (variável C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "função" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "membro" @@ -1821,7 +1821,7 @@ msgstr "membro" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "tipo" @@ -1844,106 +1844,106 @@ msgstr "Alterado na versão %s" msgid "Deprecated since version %s" msgstr "Obsoleto desde a versão %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Gera" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "classe" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (classe)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Parâmetros" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (módulo)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "método" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "dados" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "atributo" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "módulo" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1965,7 +1965,7 @@ msgstr "operador" msgid "object" msgstr "objecto" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "excepção" @@ -1985,88 +1985,88 @@ msgstr "Variáveis" msgid "Raises" msgstr "Levanta" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (método %s.%s)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (método estático %s.%s)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (método de classe %s.%s)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atributo %s.%s)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Índice de Módulos do Python" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (obsoleto)" @@ -2142,7 +2142,7 @@ msgstr "Página de Pesquisa" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2202,21 +2202,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2236,6 +2236,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Símbolos" @@ -2261,22 +2262,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2420,38 +2421,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2469,7 +2470,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2479,14 +2480,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2496,23 +2497,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[gráfico: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[gráfico]" @@ -2531,31 +2532,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2575,26 +2576,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(em %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2650,29 +2651,29 @@ msgstr "Visão geral: código do módulo" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Todos os módulos onde este código está disponível</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2680,39 +2681,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "pseudónimo de :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2748,17 +2749,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2773,25 +2774,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2869,6 +2870,7 @@ msgid "Warning" msgstr "Aviso" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "continuação da página anterior" @@ -2876,13 +2878,29 @@ msgstr "continuação da página anterior" msgid "Continued on next page" msgstr "Continuação na próxima página" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Pesquisar" @@ -3019,13 +3037,13 @@ msgstr "Próximo tópico" msgid "next chapter" msgstr "próximo capítulo" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Por favor ligue o JavaScript para habilitar a\nfuncionalidade de pesquisa." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3033,20 +3051,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "A partir daqui pode pesquisar estes documentos. Preencha as\npalavras de pesquisa na caixa abaixo e clique em \"pesquisar\".\nNote que a função de pesquisa irá procurar automaticamente\npor todas as palavras. Páginas que contenham menos palavras\nnão irão aparecer na lista de resultados." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "pesquisar" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Resultados da Pesquisa" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3104,20 +3122,20 @@ msgstr "Link permanente para esta definição" msgid "Hide Search Matches" msgstr "Esconder Resultados da Pesquisa" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "A Pesquisar" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "A preparar a pesquisa..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Pesquisa concluída, foram encontrada(s) %s página(s) que combinam com a consulta feita." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", em" @@ -3134,18 +3152,18 @@ msgstr "Recolher painel lateral" msgid "Contents" msgstr "Conteúdo" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3216,7 +3234,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3277,15 +3295,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3322,12 +3340,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3345,12 +3363,12 @@ msgstr "[imagem]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo index 5703f62c3931859bd08bec76599217c5fa3e20c7..a65f2cc1e113e8d4ef78c8b7f2ec74fe0af660eb 100644 GIT binary patch delta 11338 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 HL8bl+TIlf9 delta 11173 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 diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po index 3ee6958af..a0a850740 100644 --- a/sphinx/locale/ro/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -9,8 +9,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" "MIME-Version: 1.0\n" @@ -123,7 +123,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -131,7 +131,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -139,7 +139,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -588,44 +588,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -644,19 +644,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Integrate" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Nivelul modul" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -665,76 +665,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -753,7 +753,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -806,7 +806,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -923,7 +923,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -967,24 +967,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "(în" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1004,28 +1004,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1037,28 +1037,28 @@ msgstr "" msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Versiune" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1121,8 +1121,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1499,13 +1499,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1513,29 +1513,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1543,26 +1543,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1572,131 +1572,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1768,17 +1768,17 @@ msgstr "Autor:" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametrii" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Întoarce" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Tipul întors" @@ -1808,12 +1808,12 @@ msgstr "%s (tip C)" msgid "%s (C variable)" msgstr "%s (variabilă C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "funcție" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "membru" @@ -1821,7 +1821,7 @@ msgstr "membru" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "tip" @@ -1844,106 +1844,106 @@ msgstr "Schimbat în versiunea %s" msgid "Deprecated since version %s" msgstr "Învechit începând cu versiunea %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Generează" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "clasă" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "enumerator" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funcție integrată)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (clasă)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (variabilă globală sau constantă)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Argumente" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "metodă" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1965,7 +1965,7 @@ msgstr "operator" msgid "object" msgstr "obiect" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "excepție" @@ -1985,88 +1985,88 @@ msgstr "Variabile" msgid "Raises" msgstr "Generează" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (în modulul %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabilă integrată)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (în modulul %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (clasă integrată)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (clasa în %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (metoda %s.%s)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (metoda statică %s.%s)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (metoda statică %s)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (metoda clasei %s.%s)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metoda clasei %s)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atributul %s.%s)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Indexul de Module Python" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "module" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Învechit" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "metoda clasei" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "metodă statică" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "(învechit)" @@ -2142,7 +2142,7 @@ msgstr "Pagină de Căutare" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2202,21 +2202,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2236,6 +2236,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Simboluri" @@ -2261,22 +2262,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2420,38 +2421,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2469,7 +2470,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2479,14 +2480,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2496,23 +2497,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[grafic: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[grafic]" @@ -2531,31 +2532,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2575,26 +2576,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(în %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2650,29 +2651,29 @@ msgstr "Prezentare generală: codul modulului" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Toate modulele pentru care este disponibil codul sursă</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2680,39 +2681,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "alias pentru :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2748,17 +2749,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2773,25 +2774,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2869,6 +2870,7 @@ msgid "Warning" msgstr "Atenționare" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "continuare din pagina precedentă" @@ -2876,13 +2878,29 @@ msgstr "continuare din pagina precedentă" msgid "Continued on next page" msgstr "Se continuă pe pagina următoare" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Căutare" @@ -3019,13 +3037,13 @@ msgstr "Subiectul următor" msgid "next chapter" msgstr "capitolul următor" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Activează JavaScript pentru a permite\nfuncția de căutare." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3033,20 +3051,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Aici poți căuta aceste documente. Completează cuvintele\nîn căsuța de mai jos și apasă \"caută\". Funcția de căutare\nva căuta automat după toate cuvintele. Paginile\ncare conțin mai puține cuvinte nu vor apărea în lista de rezultate." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "căutare" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Rezultatele Căutării" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3104,20 +3122,20 @@ msgstr "Link permanent la această definiție" msgid "Hide Search Matches" msgstr "Ascunde Rezultatele Căutării" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Căutare" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Se pregătește căutarea..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Căutare finalizată, au fost găsite %s pagini care au corespuns căutării." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", în" @@ -3134,18 +3152,18 @@ msgstr "Ascundere bară laterală" msgid "Contents" msgstr "Cuprins" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3216,7 +3234,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3277,15 +3295,15 @@ msgstr "Link permanent la acest tabel" msgid "Permalink to this code" msgstr "Link permanent la acest cod" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Link permanent la această imagine" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "Link permanent la acest cuprins" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3322,12 +3340,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3345,12 +3363,12 @@ msgstr "[figură]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index 04c451f2fb1af6e4e4df2eca6fd7ea43613a2f80..d9ebd777cbd199a6089bd5b10711d08d2566a936 100644 GIT binary patch delta 11411 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 MG^c#CroKPuzwBGvRsaA1 delta 11201 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 diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index c95739dce..4ccab39b5 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: ferm32 <ferm32@gmail.com>\n" "Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -127,7 +127,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -135,7 +135,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -143,7 +143,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -592,44 +592,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "Не получается считать файл изображение %r: скопируйте его" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "Не получается скопировать файл изображения %r: %s" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "Не получается записать файл изображения %r: %s" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "записывается %s файл..." -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -648,19 +648,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Встроенные функции" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Модуль" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -669,76 +669,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -757,7 +757,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -810,7 +810,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -927,7 +927,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -971,24 +971,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (в " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1008,28 +1008,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1041,28 +1041,28 @@ msgstr "" msgid "Index" msgstr "Алфавитный указатель" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Выпуск" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1125,8 +1125,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1503,13 +1503,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1517,29 +1517,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "Создание файла %s." -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "Файл %s уже существует, пропускаем." -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1547,26 +1547,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1576,131 +1576,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "имя проекта" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "имена авторов" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "версия проекта" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "релиз проекта" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "язык проекта" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "использовать epub" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1772,17 +1772,17 @@ msgstr "Автор: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Параметры" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Результат" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Тип результата" @@ -1812,12 +1812,12 @@ msgstr "%s (тип C)" msgid "%s (C variable)" msgstr "%s (переменная C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "функция" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "поле" @@ -1825,7 +1825,7 @@ msgstr "поле" msgid "macro" msgstr "макрос" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "тип" @@ -1848,106 +1848,106 @@ msgstr "Изменено в версии %s" msgid "Deprecated since version %s" msgstr "Не рекомендуется, начиная с версии %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "Параметры шаблона" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Бросает исключение" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "класс" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "концепт" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "перечисляемый тип" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "перечислитель" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (встроенная функция)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (метод %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (класс)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (глобальная переменная или константа)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (атрибут %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Аргументы" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "метод" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "данные" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "атрибут" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "модуль" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1969,7 +1969,7 @@ msgstr "оператор" msgid "object" msgstr "объект" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "исключение" @@ -1989,88 +1989,88 @@ msgstr "Переменные" msgid "Raises" msgstr "Исключение" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модуле %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (встроенная переменная)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (в модуле %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (встроенный класс)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (класс в %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (метод %s.%s)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (статический метод %s.%s)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (статический метод %s)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (метод класса %s.%s)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (метод класса %s)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (атрибут %s.%s)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Содержание модулей Python" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "модули" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Не рекомендуется" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "метод класса" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "статический метод" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "(использование не рекомендуется)" @@ -2146,7 +2146,7 @@ msgstr "Поиск" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2206,21 +2206,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2240,6 +2240,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Символы" @@ -2265,22 +2266,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2424,38 +2425,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2473,7 +2474,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2483,14 +2484,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2500,23 +2501,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[иллюстрация: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[иллюстрация]" @@ -2535,31 +2536,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Ссылка на это уравнение" @@ -2579,26 +2580,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(в %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2654,29 +2655,29 @@ msgstr "Обзор: исходный код модуля" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Все модули, в которых есть код</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2684,39 +2685,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr " Базовые классы: %s" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "псевдоним класса :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2752,17 +2753,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2777,25 +2778,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2873,6 +2874,7 @@ msgid "Warning" msgstr "Предупреждение" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "продолжение с предыдущей страницы" @@ -2880,13 +2882,29 @@ msgstr "продолжение с предыдущей страницы" msgid "Continued on next page" msgstr "Продолжается на следующей странице" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Поиск" @@ -3023,13 +3041,13 @@ msgstr "Следующий раздел" msgid "next chapter" msgstr "следующая глава" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Для работы поиска включите JavaScript в браузере." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3037,20 +3055,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Здесь можно делать поиск по всем разделам этой документации. Введите ключевые слова в текстовое поле и нажмите кнопку «искать». Внимание: будут найдены только те страницы, в которых есть все указанные слова. Страницы, где есть только часть этих слов, отобраны не будут." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "искать" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Результаты поиска" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3108,20 +3126,20 @@ msgstr "Ссылка на это определение" msgid "Hide Search Matches" msgstr "Снять выделение" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Идёт поиск" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Подготовка поиска…" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Поиск завершён, найдено %s страниц, удовлетворяющих запросу." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", в" @@ -3138,18 +3156,18 @@ msgstr "Свернуть боковую панель" msgid "Contents" msgstr "Содержание" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3220,7 +3238,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3281,15 +3299,15 @@ msgstr "Постоянная ссылка на таблицу" msgid "Permalink to this code" msgstr "Постоянная ссылка на код" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Постоянная ссылка на рисунок" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "Постоянная ссылка на оглавление" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3326,12 +3344,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Неизвестный ключ конфигурации: latex_elements[%r] игнорируется." @@ -3349,12 +3367,12 @@ msgstr "[рисунок]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index c88111a053224a4034ebf14ffd600a5cf423a5dc..5b0b43554152c5603a4291b4aec73437784017e8 100644 GIT binary patch delta 11329 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 HFW|oc&JOd@ delta 11165 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 diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index cdb5b2ac2..5852306a2 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -130,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -587,44 +587,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -643,19 +643,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -664,76 +664,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -752,7 +752,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -805,7 +805,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -966,24 +966,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1003,28 +1003,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1036,28 +1036,28 @@ msgstr "" msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "නිකුත් කිරීම" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1120,8 +1120,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1498,13 +1498,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1512,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1542,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1571,131 +1571,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1767,17 +1767,17 @@ msgstr "ලේඛක:" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "පරාමිතීන්" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1807,12 +1807,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "ක්‍රියාව" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "සාමාජික" @@ -1820,7 +1820,7 @@ msgstr "සාමාජික" msgid "macro" msgstr "මැක්‍රෝ" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "වර්ගය" @@ -1843,106 +1843,106 @@ msgstr "%s වෙළුමේ වෙනස් කල" msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "දත්ත" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "" msgid "object" msgstr "වස්තුව" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "" @@ -1984,88 +1984,88 @@ msgstr "විචල්‍ය" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2141,7 +2141,7 @@ msgstr "සෙවුම් පිටුව" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2201,21 +2201,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2235,6 +2235,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "සංකේත" @@ -2260,22 +2261,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2419,38 +2420,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2468,7 +2469,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2478,14 +2479,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2495,23 +2496,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[graph]" @@ -2530,31 +2531,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2574,26 +2575,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(%s හි%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2649,29 +2650,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2679,39 +2680,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2747,17 +2748,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2772,25 +2773,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2868,6 +2869,7 @@ msgid "Warning" msgstr "අනතුරු ඇඟවීම" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "" @@ -2875,13 +2877,29 @@ msgstr "" msgid "Continued on next page" msgstr "" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "සොයන්න" @@ -3018,13 +3036,13 @@ msgstr "ඊළඟ මාතෘකාව" msgid "next chapter" msgstr "ඊළඟ පරිච්ඡේදය" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3032,20 +3050,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "සොයන්න" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "සෙවුම් ප්‍රතිඵල" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3103,20 +3121,20 @@ msgstr "" msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "සොයමින්..." -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "සෙවුම සූදානම් කරමින්...." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3133,18 +3151,18 @@ msgstr "" msgid "Contents" msgstr "අන්තර්ගතය" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3215,7 +3233,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3276,15 +3294,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3321,12 +3339,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3344,12 +3362,12 @@ msgstr "[image]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 9a8a8c54698eeee4b48c33595d47082752dceddd..a76d5caac5f09940d6d53084032813d350b72c60 100644 GIT binary patch delta 11399 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 delta 11196 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 Gwf_T{u+|y? diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index a381c9496..70275b891 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -10,9 +10,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: Slavko <linux@slavino.sk>\n" "Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -124,7 +124,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -132,7 +132,7 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladá sa, že nie - prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -140,7 +140,7 @@ msgid "" "explicit" msgstr "rozšírenie %s nedeklaruje, či je bezpečné pri paralelnom čítaní, predpokladáme, že nie je – prosím, požiadajte autora aby to skontroloval a explicitne to nastavil" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -589,44 +589,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -645,19 +645,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Zabudované funkcie" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Úroveň modulu" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -666,76 +666,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -754,7 +754,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -807,7 +807,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -924,7 +924,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -968,24 +968,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "(v" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1005,28 +1005,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1038,28 +1038,28 @@ msgstr "" msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Vydanie" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1122,8 +1122,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1500,13 +1500,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1514,29 +1514,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1544,26 +1544,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1573,131 +1573,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1769,17 +1769,17 @@ msgstr "Autor:" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametre" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Vracia" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Návratový typ" @@ -1809,12 +1809,12 @@ msgstr "%s (typ C)" msgid "%s (C variable)" msgstr "%s (premenná C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "funkcia" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "člen" @@ -1822,7 +1822,7 @@ msgstr "člen" msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "typ" @@ -1845,106 +1845,106 @@ msgstr "Zmenené vo verzii %s" msgid "Deprecated since version %s" msgstr "Zastarané od verzie %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "Parametre šablóny" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Vyvoláva" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "trieda" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "koncept" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "enumerátor" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (zabudovaná funkcia)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (metóda %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (trieda)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globálna premenná alebo konštanta)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribút %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Argumenty" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "metóda" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "dáta" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "atribút" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1966,7 +1966,7 @@ msgstr "operátor" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "výnimka" @@ -1986,88 +1986,88 @@ msgstr "Premenné" msgid "Raises" msgstr "Vyzdvihuje" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v module %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (zabudovaná premenná)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (v module %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (zabudovaná trieda)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (trieda v %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (metóda %s.%s)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statická metóda %s.%s)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metóda %s)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (metóda triedy %s.%s)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (metóda triedy %s)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atribút %s.%s)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Index modulov Python" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Zastarané" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "metóda triedy" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "statická metóda" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (zastarané)" @@ -2143,7 +2143,7 @@ msgstr "Stránka hľadania" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2203,21 +2203,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2237,6 +2237,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Symboly" @@ -2262,22 +2263,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2421,38 +2422,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "chýbajúce „+” alebo „-” vo voľbe „%s”." -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' nie je platná voľba." -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "„%s” nie je platná voľba pyversion" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2470,7 +2471,7 @@ msgstr "Externý súbor Graphviz %r nebol nájdený alebo zlyhalo jeho čítanie msgid "Ignoring \"graphviz\" directive without content." msgstr "Ignorovaná direktíva „graphviz” bez obsahu." -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2480,14 +2481,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "príkaz dot %r nemožno spustiť (nutný kvôli výstupu graphviz), skontrolujte nastavenie graphviz_dot" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2497,23 +2498,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format musí byť „png” alebo „svg”, ale je %r" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[graf: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[graf]" @@ -2532,31 +2533,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "Trvalý odkaz na tento vzorec" @@ -2576,26 +2577,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(v %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2651,29 +2652,29 @@ msgstr "Prehľad: kód modulu" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Všetky moduly, pre ktoré je dostupný kód</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2681,39 +2682,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "Základ: %s" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "alias pre :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2749,17 +2750,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2774,25 +2775,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2870,6 +2871,7 @@ msgid "Warning" msgstr "Varovanie" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "pokračovanie z predošlej strany" @@ -2877,13 +2879,29 @@ msgstr "pokračovanie z predošlej strany" msgid "Continued on next page" msgstr "Pokračovanie na ďalšej strane" +#: sphinx/templates/latex/sphinxmessages.sty_t:9 +msgid "continues on next page" +msgstr "pokračuje na ďalšej strane" + +#: 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 "strana" + #: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Hľadať" @@ -3020,13 +3038,13 @@ msgstr "Ďalšia téma" msgid "next chapter" msgstr "ďalšia kapitola" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Prosím, na zapnutie funkcie hľadania,aktivujte\nJavaScript ." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3034,20 +3052,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Tu môžete hľadať v tejto dokumentácii. Zadajte hľadané slová\ndo políčka nižšie a kliknite na \"hľadať\". Pamätajte, že funkcia\nhľadania bude automaticky hľadať všetky slová. Strany, ktoré\nobsahujú len niektoré zo slov, nebudú v zozname výsledkov." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "hľadať" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Výsledky hľadania" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3105,20 +3123,20 @@ msgstr "Trvalý odkaz na túto definíciu" msgid "Hide Search Matches" msgstr "Skryť výsledky hľadania" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Hľadanie" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Príprava hľadania..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Hľadanie dokončené, nájdené %s strana(y), ktoré vyhovujú hľadanému výrazu." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", v " @@ -3135,18 +3153,18 @@ msgstr "Zbaliť bočný panel" msgid "Contents" msgstr "Obsah" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3217,7 +3235,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "pri pridávaní tried direktív nemožno zadať dodatočné argumenty" @@ -3278,15 +3296,15 @@ msgstr "Trvalý odkaz na túto tabuľku" msgid "Permalink to this code" msgstr "Trvalý odkaz na tento kód" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Trvalý odkaz na tento obrázok" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "Trvalý odkaz na tento obsah" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3323,12 +3341,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "Neznámy konfiguračný kľúč: latex_elements[%r] je ignorovaný." @@ -3346,12 +3364,12 @@ msgstr "[obrázok]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index 38e934f9354482b518841b2b2a80ecd6d527a7c7..1136d0e67a49ec3f903316ac0a58cb62a5445bf7 100644 GIT binary patch delta 11347 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 PJAn@_UW{Pq-vj>(Qd$6- delta 11175 zcmYM&2V9ob`^WJc17w3Z7z#WN6lJ4;LMVu&h!ZW9%-rLbmMgbDYHE&h<~A+Oom%0} zSq`+EnWkpt$ZeFC=1BjaFXw)}{=KUAxz2Mx=RW5;*EuM~OI!~wc6I&|=sMTppADrf zs}fEqujv2(xm(M!77*UU8aOGM|6D9<BhKVI$+3J!|Dkxx3Z{Q^f@R$yK9*=%ImA1X zEGr0K)V8b<^amwd)<B$%eJ#srxuwua$3Tqd!KpZfcxS3*HN{4CE$b-Gzyd6&XIZ@4 z+Je4#8QriLnWOa&W}qX@vKYeZgiUZBHo#x83Pz+`mM8DG8q)BfqZvlxtEhoSq6S`t zW$|+?gZr=?o<@JXfj;;MH6hoREz27NQJ;s~aU5!#G^~IvFo5@4J!tsh5Om-~)QeW3 z2HK9Ec)<SrIJO}!#w^Tcxf*by?Gg+iE<|Pa0EXbts0lp8Q1q%#{)1^m($EU(qaMgZ zw$*wQ^~Dd7U9nbU1pa~*@i|t*Q1ZG18(?jGjGB0Cre&4Jde|AWP#Im0l!vt@ll-f3 zfsV%L!*T+#EmB8TFVu?`U{~CXs?VT?W<s&3xH~#<1S(UDZC9c)y9u?$dyqL>hwabZ zvz?X|MMprku^xsKcSROqjYEBLKWcA}VrBdZsYmMxs%C08GAr$Xnot+4gG14QpQFBi z47D{EQCo1=Nh5+r=^XQ-8mPTYK&_-PMq+E*p%_N|F;d9Z*QhFgi27dKE2g@0usLyW zR4r{qcPv6LJb}ur^Mc)Yh-B9aWFK;|Eq2DGs49MeZs^~HBZ=jaf2{)kmxn7*wN#9y z(St!eFaSB~RtT!LTB5e38!|DcHIRl<IRRA*yRixu+XgnZtg6JxsDV46wxA0t1Mi_S zxCb5h3wq)U)QdeeI~TSSm7&aLW-HoZS)KnLG)nQoaAZ5JQ6(R6&e4_l494Mk)Sh~f zSG^zu)!!JEnIWjXA7wimm8mtTmEW^<X<=Ef6PL#@-fs<1181Q2Y6Et_y{MIjv@~0g zj@+hJ9(v&z)P$#?GH?vv#(PLPSRGrLW4#>xi8rB+<zBo0J9Ng<@e_?GbZ>12jz>)- z&5oO)K5vKG<FTmBEW`p_ips!ajKLSE8!{%}RC^Zs66d47-x*aK!}H0%QZ}9rt!M#i zk5*tM+=)6S=WOqzZZzLE#z@o!m4Vf<9dfj-G1v$9V-iNUHAUSCwS{X?8N1Y${HyUF z9U3_7Rbw)iC2o#>*agdDe+<A$=!5f7sr?KCakCvCMiuQjtcFif<2hb4->ZY}#92-n z8n6i}107IR-W|19eeHM{YNBINFZu*EKp~dHov7zepeB3~`SD=gMxFB-?M%^Tqu$dT z^<HOt8rq9K7>xr_11-gOa2@K(3~g^-+yS++zE}ol;t*Vpns^A6s|i&`jhljct^q0o zt&xAN9{i8maawz6)S@Gls5a(cJPt<{-CB&p(@33KE}WhIn2*ZHx2RKc6?Jd8bu=lD zLI-hk?1671Ls)091;)R@C8zU0hDIJ8KVT$AbTR|yAY)oRP%GY#HSl*k_I=aDiKq#5 zzziITskj4mPyB_8@hNu4`JE|Le1=1uG}?ACd-)x{M0^@`yw0KnFJdx2LuDwbt2re- zu_Ezk)XEp4Ca?>&(kG}1yxPrd&6}uW+6#3|`=L`su!u%YT#x1PM^tg$!Krv3^@Y() zUoTvT`uq^8R*s?e{=6Muw&Q!K8u$m5^5-}Wo3kGc^n4HUuL~%or#YvMQN=R?!*B+w z+Bcvkx)1B&DGWvLUS@^WQO7X>mD&u{gy*8p|2If7tbedEw(o7;^GR>=uN7~hL#g@> zRRcd_XMBp9NXI_r&jlk;H`zkexnFI&4OQibQ5iXp)$w<%hCcr@7gZu^ygbwb`Z#H5 z#S<_B7h)FfK<(jEREA!A%S>PbRw7=3`rbaQj6Y&se1zKLguW&tDOj2~8&#Bfn1b(N zIy!gK$ffbn?#S$CeyondCiHJZrCdK*l)5xjO2^x7K|kV~SO*_r1&rbH&_uJbA$CT6 zZv}?nS@XHm`jduI;>)29#%K)3Mi_+MP&F{pj;EuZTZK`$7c=lC24M98W@}P0fw(cc z;xN>UM`JwB$55UB!!&BqaRs$!z5`7y)IqJhK5Bx)(1G(%so#d$n(t8)eS%tf;2`q{ znVP6^Uq{v0B=o=~sEMt_>b&1NOQQ__hpGYp!DeOg=ug}pmCD|>6H!IF963o=5q^qs z@0u+*iCVE6_p-k4g&i;ywdaE|4!=OBQvE9pz2G@&0u_gvp9Sft6!*e9I1}~!K`e{c zQ1`*V$n|fP8)p8>)(<s-?Wl?FMlZaI<?s&-#+QbZ|7aSOhMT=<f|@{A^u+O47eBz} zco12fRd$5Q*c1#TUX1Rz5jC+b7>Y+Q2(O_|)icyY>W?%F$sI}lQ|RbThfcvV)PuKB z14NH9d-V!dARdZ31=Fzwo<;3x<Y<%XI8<uuqxQTX`r>=GvoM2r8CJqeP8v06JVB+p z${2Ik=V1)-IIN5tF&s}~MJz^5(3=HlKoycQ*&S6}Gx0UtZyP+;Wbhr#r++u<VsZwI zGZ#iODs}0om9<14T#6cSJ=VmZQ7dyFZ%#!e)JoD&$EqEM;QOcve~QZ7KGf+thn4ZU ziJg|?J##}f#vDFqiF)x|)bUx4sdx;lpxXqKsVGz?T4NaYv*T%~=T@T|9!1r_NmTLO zL>1+Kn6C3*b)qSrH*I^O2Iz;H=}c^fU)i6(z^cUVlgz|xVI$%sOva(8BHMtjxE-~i z-I$0+F$bSvL*8#SeBTt+M2sXphDzZB)Qfy4n~NtA73X6N4nbvL1?nQ&i&1zFHK7Vq z%tT&CeXl3#^Qm@Rh)#Dp&e8C|U(gS4pf^55eWBD;`)WoV$42PD(bx)?qB2&DD$2lV z=J{A`N&E^b_480QwjTAqz0=5l0F5F#wDR+)<MIME5#JBYN-LpKn2VawYp4`Du@)Xg zrS?x$tyKBYWTpVUh=-u=iE*gn{RlOYbsv&{b?l)-SLGS|!E0EZ_z|jj!l#?POhMg* z>8KU;M@@VpDwFH68-9h_!U{7?e*$_Fr(zAv#x#7(Ny9;76=vdLER7yB&9MqV%{&%0 zp-ilay-+KkW%uvGcEne)KBmtynHYgw71meiiHWmKhSO28GnYmTjW(zO$6^AmM;)u5 zQ7e3c^U*QKxE&eOYW0!H;1%ph{4c5~U!7}KIso<kg&2){u@m0GB;Ic|oo9~CXjEzn zQ7gTOx<E?tR;98s>NuriGG?M)Gz8snHtGcnFcuHkpWjCvW4{H)1T0USUlOzby=hdS zV=AgDKSdpvb*PLSxBDMsAaSXM=K1oNO&o)*u|I0U-(WqwjOkc$k=e3#sI47`8fOXy z>-;aFp_Obw&FmEFO1*)4&~>pX!XSL=!ZnM`#ftveWb6RySF(3ezmgra%=}8$bvZAf z|32Q~dGF6SHN=llzmm;ZMgB+d!K<sy?_^J6U*haF=7nFNekEIkTm{y@Yt7I1@$0z7 zh>u|bE?93;{{Vf6BR)4<6@$uPB4%JmOvOdm1W$j?{x_geaf7))UPo2s81%r&sN$K0 z8fY78udkra?@jc_XQ)j1Y&3BM`Vhz4zKmYPxu|2?7QM00M)I$L-laoZFa-l}CHmo3 zbl^d||2k@*N2rOG+GIZW!8XLPn1$m|HTA9S1=P5IVJMdR!W4CwlZGacieZ?C!Pp0V zaXe~eGcgudplah3rr;kKfstRD1>|5g;x4!YCt+>O{K~9&Fsca0VrO(trlFMH!bB{# ztz2k+D7C>r`WIsYZbW73SL}*UQK{~<*-YpyR1q&n2X04Y>OAT_SJ4k|Aro<0|I$dK z!`fmVOvfm~9NV{1$7(*RR<@!t^AP>fb*nko<*+Vs3aVz_LDkS)R7RI#9o&Wvyo<iP z-}2pN_NF41=YtqjN*kgE=!y<}3oGCUs28lTJ%ZZ0V$?!>x0@<&f_i=|R>Aq$6nA17 zbYp)?^L{IchEf!PL0A)&;w)4#y@9#73_Ig3)XJOgG(TJlun}<=Y=WyW4~sDv)4w)* z-WIi>j+l%+&{>woVj9|$O{kge!Mb=7RTG}O%nH(NJE3mKaj0TiiIs5!rr`-x2EBHh z%+*5ubj(A&I3J5~@^11ULSxt-Gt=3q46H|e;ak)dd(`gt+iUu(V;udls6Fk7TG=eS ze-SD}M^IaE9z*d@RHnT5nWApB&uNZdH#%PDgP|CPKiK|-%837d^H-?KSc7;Zmctd8 zgxgW~!X4CvA7TWiePezlTYx#lM^Kse|JE4pq@kNA*0vt%oabN^4nhsQ1T~S>r~!7^ zpBJI__%Bq(ybhQvxeU4y_r(|-h??*+48YB{&Vw{Gz**E@7NbtVBUDlP9yBQoLTyzX zDwR!8_d+++mJP9;j(TntR>ysqfj6)ZMjkR5n}HOy)B1*n_R#0BNm-U{7u3MxY!{-6 z^-EL+4x%P{2DPHwsEg<+YVSRY%mjl`aWq!NbgYJNV#)9SC(zJ^vH&&kD%5~mP^mwJ z?sy74@F#S|%cwoRj>?4l5%XLKD%B3u^U0{KtB)^ZD^$imL{I9^T17)I`T{l6uTeGe z9Y*6h)Jk7EYJMdfg7t}~pk7>rTG>U^i(cRmEc2b&(#fa^%|uOTCF;42SaSaN(da<O z87#oK@6C_fDOj6$GsfdhjKbh!=J;h{E8_mxANQj&l62hM2l=R*Z!jw5^U;C3um@f` z&i?C#*(c0jI+tQw;(M5f4Nsb@b~<X{&8TB~2DRdZQ|36fMa84+_!F#5T!bpV+n9<` zr_C03#>K?%oF@O>X?Xu&{`lM<mAWF-o;NsSd<C`V&C!ARn2du^8Cr|FXf9zz{2R6M zfFI2SYNHl906p=0+p|s@Zgl*HF?byVu<Tj$hsJ7Hp11{SLfvsHzJ+@JA?k%y&)E}3 zZ{k<5H0IlJfgSfm)xg`>0-Zx?OrvoK8|Vu^nG0w(CK2z$3itqZGkTpjMHhvdXgb!z zW~h5%66(dDq7SaccDNNaVZRGz+;r@!^Zz!D#(Z!J%VEexv*I{Zsv2P=w!qFf7&Va} zF&rPDF9!Z>PLIPj0n5;zX~+3kowzHi7^h$e@3%J6(11l4iq}ySak*rQt^#Her(gjN z!&v+QH364j%pb`dsPAQ<iZ37Q;$YO)Z9rvYGb%&-F_rgQM`)y=%dh4y40SP=c(5Js z!8GD0*aVY*GbtZ~%G`F;R#}&gwb75TC)UAtQCqkU9k?GG;uUo2i;-8%o!uTQ5f8*L zoPoi(0mJbS2I21*i2vDfz*X~H6zYD+!VLT$sz%nJKkmQ;Jc2q+Pp*>x5E?J&h{up? zW(#t$7IAmfp3Okj!d9$@`%n{nf({J+-K4%AYHM1cCOQhW@{ceP*Q3V0ggR9o*PZ4# zgkLu^tATo9dsOi_F#>0yR`w-oB^OYcx@}wfhAGl&*n|G2_$hvY+JgL>X2tKLzW)Js zz$H!^=`<c<946f|sqTV$!C2G;KE`O=jZt_DHE`f<^L%40OWYGH;s|Vy^ROuvqbsJ} zF%xZoUc}BGG?b$LsOo<oqj5QEYmTEPa1-6p<F2V{e{4?N1mDGZsEqmCGqn+pdOi^~ zvAU@7o1wO*7iQ`FJ85Vp`%y*qJ?b>v!Cb8JhdF+IQ3Gtmk|IJ){0TP3GR5Xb>wq4_ zYf!2F660_`YR~^fUv&Rdvj631s9LL_Qr;PB;Am8;S7I_A#~5_|%bf2-)P&ohQa%th z!Re^+)}k_b0~4_9ee)~XMz)KwIq$db)5yon2j*s)gPQqvRO*Vb1^$da82z^yurAgl z?t@y{9Mq{;i(1HGjK^!Jtt|JCnQ$B`bIs9Nokn*Wm2ny>-hi6G8O*_Js2A6IXpT=R zrV@8WeQyyeQ@c=^_#HJ7mq#X!z$(P)=!Tsz2)jQb|K(_mq9YP#p-#g#)PoODMf4ao zfc39=VO4BKn1gz5Hde(2sONWKBm5SV(c`hHvHGabb1@KGJtqH&G`i7|gLAPVUPKjD z_!Bd+o)|*>0qRAo(1Azo_ztQz{GXZ?zl^cO?NOPTgqqMMRI&e!8s~-6exT|z)6ony z!~Uo$9*TZA7QJx>YQV)9j0dnTUP1>}_|N>2EEScp$ry_3QO_U3miQ|w^UnC^rpOwh zQrRArnobyr15n3hK58N>Q7heys)@^}3H^b}V9*OwBX6KGI~h}PCsxAys0{d9E_#oX z*}0TdZ!D_Xv+cMYstEg`CNvtW<4g>~ZKxaV1lGYbs1<p-xRgvh9F@sN*bVbg-`iyO zA4YGT|Kl`t-Y;MpmMY~^lFAIsB<_TzaT#g_t5Fj=fSS-b)G>UHwJ_=>)87W$5s$$7 zcp8<7GOjKqzmm;GciwLm(Fnj3=!w6fQhXaVV33<j$pz97!-xl=wq_R2$8EMP-Cat4 zC3^$Q(?7hlOUbWfXJAF*yQqbFc$n`epi?*0Ycx9Hcuc~}sAE&k(|n;RYNZ1)92cTa z!*+ZLPothci+YidmrF@4MWM!zL!E{K)aR2?_r_;lF3yt1Av!eUoAw9Ku>!Hf+oj|b zq@s>XCMqM{?fx04tyqA1em!R6H`p58eawX0V?E-bn2ukfw(OoyL$kL*zGk2Z)G<jy z%`^`+v0kXXAB}q9B2+PLz`|u8Kk_TAnzlV?&fV7CXCG`^_<4RnSmD$w(>x114KFBD zxO-}58Ly<+#JY}z#I)q3Ii;64JQC|T5>wJ@rxeC7X%#hR=7HW{9UK%^_`^GVr~KUk O`p!_7!cs5#`TrjrUe%WX diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index d429739b7..0353526c0 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -129,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -137,7 +137,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -586,44 +586,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -642,19 +642,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Vgrajeni deli" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Nivo modula" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -663,76 +663,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -751,7 +751,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -804,7 +804,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -921,7 +921,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -965,24 +965,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (v " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1002,28 +1002,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1035,28 +1035,28 @@ msgstr "" msgid "Index" msgstr "Abecedni seznam" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Izdaja" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1119,8 +1119,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1497,13 +1497,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1511,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1541,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1570,131 +1570,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1766,17 +1766,17 @@ msgstr "Avtor: " msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Vrne" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Vrne tip" @@ -1806,12 +1806,12 @@ msgstr "%s (C tip)" msgid "%s (C variable)" msgstr "%s (C spremenljivka)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "član" @@ -1819,7 +1819,7 @@ msgstr "član" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "tip" @@ -1842,106 +1842,106 @@ msgstr "Spremenjeno v verziji %s" msgid "Deprecated since version %s" msgstr "Zastarelo od verzije %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "razred" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (vgrajene funkcije)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (razred)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "atribut" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1963,7 +1963,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "izjema" @@ -1983,88 +1983,88 @@ msgstr "" msgid "Raises" msgstr "Sproži izjemo" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (vgrajene spremenljivke)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (vgrajen razred)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (razred v %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metoda)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statična metoda)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atribut)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Zastarelo" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (zastarelo)" @@ -2140,7 +2140,7 @@ msgstr "Iskalnik" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2200,21 +2200,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2234,6 +2234,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2259,22 +2260,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,38 +2419,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2467,7 +2468,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2477,14 +2478,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2494,23 +2495,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2529,31 +2530,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2573,26 +2574,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2648,29 +2649,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2678,39 +2679,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "vzdevek za :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2746,17 +2747,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2771,25 +2772,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2867,6 +2868,7 @@ msgid "Warning" msgstr "Opozorilo" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "nadaljevanje iz prejšnje strani" @@ -2874,13 +2876,29 @@ msgstr "nadaljevanje iz prejšnje strani" msgid "Continued on next page" msgstr "Nadaljevanje na naslednji strani" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Išči" @@ -3017,13 +3035,13 @@ msgstr "Naslednja tema" msgid "next chapter" msgstr "naslednje poglavje" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Za pravilno delovanje Iskanja morete vklopiti\n JavaScript." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3031,20 +3049,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Tukaj lahko iščete dokumente. Vnesite iskalni\n niz v polje spodaj in pritisnite \"išči\". Sproženo iskanje\n bo iskalo po vseh besedah v iskalnem nizu. Strani, ki ne\n vsebujejo vseh besed ne bodo prikazane na seznamu rezultatov." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "išči" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Rezultati Iskanja" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3102,20 +3120,20 @@ msgstr "Povezava na to definicijo" msgid "Hide Search Matches" msgstr "Skrij resultate iskanja" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3132,18 +3150,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3214,7 +3232,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3275,15 +3293,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3320,12 +3338,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3343,12 +3361,12 @@ msgstr "[slika]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr/LC_MESSAGES/sphinx.mo index 4c6de511451ff6d8e9723e95daa76e01ff19aaec..b6cccf3c08fbf854dfa930235470fc6541d0c05e 100644 GIT binary patch delta 11339 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 E4-4$^dH?_b delta 11166 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 T<isBXg1BjtOUYMH$NBvqWIo== diff --git a/sphinx/locale/sr/LC_MESSAGES/sphinx.po b/sphinx/locale/sr/LC_MESSAGES/sphinx.po index c40bdd4ef..e13bb82d9 100644 --- a/sphinx/locale/sr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Serbian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -130,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -587,44 +587,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -643,19 +643,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -664,76 +664,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -752,7 +752,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -805,7 +805,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -966,24 +966,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1003,28 +1003,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1036,28 +1036,28 @@ msgstr "" msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1120,8 +1120,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1498,13 +1498,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1512,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1542,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1571,131 +1571,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1767,17 +1767,17 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1807,12 +1807,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "" @@ -1820,7 +1820,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "" @@ -1843,106 +1843,106 @@ msgstr "" msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "" @@ -1984,88 +1984,88 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2141,7 +2141,7 @@ msgstr "" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2201,21 +2201,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2235,6 +2235,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2260,22 +2261,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2419,38 +2420,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2468,7 +2469,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2478,14 +2479,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2495,23 +2496,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2530,31 +2531,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2574,26 +2575,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2649,29 +2650,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2679,39 +2680,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2747,17 +2748,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2772,25 +2773,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2868,6 +2869,7 @@ msgid "Warning" msgstr "" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "" @@ -2875,13 +2877,29 @@ msgstr "" msgid "Continued on next page" msgstr "" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "" @@ -3018,13 +3036,13 @@ msgstr "" msgid "next chapter" msgstr "наредна глава" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3032,20 +3050,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3103,20 +3121,20 @@ msgstr "" msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3133,18 +3151,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3215,7 +3233,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3276,15 +3294,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3321,12 +3339,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3344,12 +3362,12 @@ msgstr "" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.mo index ecb52efd530f06bf198f0a693118807488604947..028fc0d23b4abdd234f65946819580e9a2b2b4a8 100644 GIT binary patch delta 11321 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 V*W8tok)7Op`<}AA#{b_j{}&4J_0<3X delta 11151 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 HTEPDRP~yz9 diff --git a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po index 56a44ec7e..941497ee1 100644 --- a/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr@latin/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Serbian (Latin) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr@latin/)\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -129,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -137,7 +137,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -586,44 +586,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -642,19 +642,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -663,76 +663,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -751,7 +751,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -804,7 +804,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -921,7 +921,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -965,24 +965,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1002,28 +1002,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1035,28 +1035,28 @@ msgstr "" msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1119,8 +1119,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1497,13 +1497,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1511,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1541,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1570,131 +1570,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1766,17 +1766,17 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1806,12 +1806,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "" @@ -1819,7 +1819,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "" @@ -1842,106 +1842,106 @@ msgstr "" msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1963,7 +1963,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "" @@ -1983,88 +1983,88 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2140,7 +2140,7 @@ msgstr "" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2200,21 +2200,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2234,6 +2234,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2259,22 +2260,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,38 +2419,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2467,7 +2468,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2477,14 +2478,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2494,23 +2495,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2529,31 +2530,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2573,26 +2574,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2648,29 +2649,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2678,39 +2679,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2746,17 +2747,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2771,25 +2772,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2867,6 +2868,7 @@ msgid "Warning" msgstr "" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "" @@ -2874,13 +2876,29 @@ msgstr "" msgid "Continued on next page" msgstr "" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "" @@ -3017,13 +3035,13 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3031,20 +3049,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3102,20 +3120,20 @@ msgstr "" msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3132,18 +3150,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3214,7 +3232,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3275,15 +3293,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3320,12 +3338,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3343,12 +3361,12 @@ msgstr "" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.mo index fe4d02c015b163d260ae7d1693c515bc154bb4f1..9d25a8a3d41b3da6b2b157c2f345d94cfdee8b45 100644 GIT binary patch delta 11323 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 O+O|DQTg3c-$NV2GaPg=B delta 11155 zcmZwLcXX9iy2tSyNF@mgfrKPLI0-F~4y2F}T0lU0k<f%lX9NV9q2r+|y-AY{NJpAV zM2aFsx`Kj*4nucDq<E#5`~79VYu$hDEXU7&_Icl3o?T8nyYfBfEcJ9>3h`WE_}}It z#+1cLp^E<Re}7anW-;L%tb$YG_`ioSTW}8Vq$cng^@oy-38(&xWMgg<A5Sr+5%JFI z#+1faHH;ZWed$zV-o<%1z!<mjN~4mBcQJ_vr{PrMUFpWWjtw)6Ifk>bGj^_J41Jqz z7>HNU3-2OhG=F0@x-yNS3DXUm;6kj6moWy*XBp#1|E2*2Un-hoC42+b&}dY{Yq2D5 z!V<U_OW`RD!dn=Ck5B{htZj@xhM+!=a^gf(JDC`UEist>O>YXtaTvOAGODAssD^f+ zA0BW%KY{It?_zz-VY+H?vSU656BnQ|djKQw0%`ycF%pZ_A^+hNDpAl3>YyHIhAgY; zj(Tw>vMOdBmd8t2247-Dj3lo+u`brYC#ZoZ)HB8hYhfPNM`d&+vOUcDdgNb)b5u0O z0Hzay?U8+C`l32oj6LuR)c!2pzz!$@7573HjzVQ>spA?{W<NzO@i)kr&0*(r?;N)= zu~Y=-SZiSvaSvn?W<2V}eW<lPhS7Ki*^lNaYR}YYXlL39HK4b!CJsjzZbH3(9JMs( zQA_ZLn?iXCK8<WgRZwf0jG9Sftb}bGhhsV7e<K^&e1+QO4^i(WzGioKBWyw354D%R zL~lHT#qbAIX5HtU!b2pxCWLipitRBEm!Wp?EA+ykCLBo&MgB3J`ByVsh1yGZ(Fc8L z#215+qi!Nld#e>{NqQm!bDMW5D3y~?dto=m;9bX%*Nv$_oQi6=6KV<GLS<kgDudsk z3ooG`zCv~Er_p(^oTv=dYi^e!7fb5=_oh&U4@M%(X~q<Oz&S@x;-4`Q&!X1Um%OTj zY*c+?RAz>u)_#oRJXEIEqh@}`(W9j?U5G=m9Q~UiD&TC?T5ZNoxCb@Uh*ow9vXI-< zG{a)}9%{f-Q5iUngYXWr9Zc8O_E@jPAmUF^$8wKT{~fv$s5nC*7QNfphLcbO$#ml8 zsLyjzYdj8>nI+g6m!UH71mp1)>V}MOYj=Bn3?y!gdOr`fH%7K4|4P{eDm0_Ts5M%J zWpNkkn4ETefV$BF+gU52E~sp*jJe3sHt%77+=taMuD#vV-B3%o9+k0+?a99iFQ`z% z<=(KSVoBl_SRCKNP#lcGI0XZ65h}H-F$BMG;=`y-dm1a^GgN!74)(p8=uKSTO+gJd zL1my5YM1vyt<?Z09)TL@I8;X;qZ%l{Qn(BC{12!BpGUqP%<rgkUM1IV+8k6rEl~Zs zJ5tbE^v5`S7uC=*d<Qq6uFS}ew&PBynGL`aI0uK}O4Pt3*tr@|G^*V+)N^%F8EAw2 zV|w#1_Kw@^p-_#ANTM3p2$OImYSVp!iFgXxr^bV`GZ@>VGV(3zlw3pI8(v*)%45+* z+yZ;!AfyTNGq%K}H@W0={@<g}jEbMI5|-~~8*YTOX?mk(ybr734JQulZsQcx06Jkd zj>dG{iMl85<5GNvy>L+;8x^19FgJzvZ`rl{4vP|>LLIMP(S_$R6`!LrRK15iC4I0A z@mSQ%m!JmlHEO0$Q3H6Rr(K%vsAJj}bxa4MTbtk`3RQ6<hT<=%&2<~6;RDnQV;R0W z+<^N05NfX+N3H!?C%)pucTjuaZ&b=(;&g1mdeqhPy~)2Wpol*9oHj;no>5p1XQOue zX4F9UVl6z0k?7yo&ag7-I3}Y~n~fUq0@V56k0itVjg7HmKikj8{m8#&yp0N_>O0gP z_yzOu8EPP1``f<@Mxk!9C8%@1&T%_xmmfxD<SbUk8(0wo{$Vew6jXc7P!s6yrl1*5 z!t%HT>*G$;8a_j1sKeWK0F$sR@ha4Ndodb+!3=zaTI1vaHX~{1L!5)!l+7>=Ct?=5 zcTs3c;h|GeZ=n5J9fM7%-;PSTzFCyIOjJrIIBvt@#J^!pe1u^b&*h<k=3oQNL%p{O zBk))Ix!c^Mpp*o1sKYT1qp%^C#-6A>FxrV{p`KfdvA74b@iz>{%0ukZq+>F1WAwxk zsE)^C5-!3>o&UoWs!?$jwPu0u+PzQ{HS;>C0ggZyE<~k%J8EgZM-B8TYUUwB?H@8# zQSEj??XfB7i}|R5t-;FlZ+@jv0$-r^K+r$!%#tvOxFaf+{TwHwHt9;_B$*?)0u%pb zm*7X#jJ>#*^?otzgpsH<|0gEmXXsX{FH=wlFHr+1Gu(a`WT8^r7i;1i)bj_iBwk0| z2al2K-;^3*|C4PXY5+S>1Ko|q@EVrFKQSDOjwJta6v~dYYtsZZfF9_F6EFj3U<*8m zOwN=XWivJvLx`86H*P@<Y#T=6Q7nzuQK#xTY9Mt++le$CP5#rU=tqT4!E)4t|3x(r zH^#2jYZyj69CZq2VN3iKwWgKE+Egc^Qd<YL<^wShCpyl>Y~tlu7B9LfRH5(`mFk%H z>|Ngs<B7*(G;YBt{1MCGUDN>mnSdJ9Mp7nwp*GhX?11|m!^hbSzJqP4-;KJM+`;4R zg^`L%T^4F)tuO$Wp&HzXRq+C9X5JI*sVIw@Nha!8<zfWBj~eg_ROa@gPS<IS#+NpB z8`ng8Lp8=me9#Kj@dDKGS&8X*9AnUHlFd{sDidw691e8i>8R({p%)%Q?SUUro9{Q& zrhI`}I{y_W+s)J6u@9<&fvAzr!RENt`TP}DAoiYO2VM;u5?9Am9FE##o6!?@peD2% zQ}7rz!spn4{!N4T?WUTHm57g{Qur6DqreaB#gl@H+hRNpLuFtU>LS{Mv3LhHps=ZS zAYD-J^+A0;&4~-p?M=mL3ch#=i{mZy$A_pFicE8^X4G+Ph%Ow9t#KJDV|P)TGGw}a zJ^@=1zlKWvLew7Hi0W_8bn+ie;RqF)`B~I)d4(EC;0!y{vZxd`MGdF}Dur&Wh6hop zy@%Q>F*9vuI%6^7VW@jzJZkfPh#JU-ndDy;-%z2e@@MD4>sXoi5o+^9&9ZBmhPnx} zP%|2g8u(;XCO2YF+=^Plu-Udg8U2aVu?ps3Ccf>a;G(b=>)~PaLEky{SOud-o`4!q zJ*<j-Q8S<G)PIe+#MiJ6X3e#k7=>IFW-Iz($~>FlEL7}nN+F&?J5+<?Fc~+Zj@1R! z44>j6bj`Q!K-x5|KeQRVid~5xqc-Im3+zmXpx$4CakvM&;ccu=|K|0D_SlR?rKSKi z)AOhcqzJt#mC>l<l!d8S57p5y^ul?l4i;kq9&kQ?fI7y-7h97tl(=nS%=-7E5Jtr` z)UI5CIxZVf89Cw9Kfw^<B1`P^p_oG)k8N-;YQX!k7GA+DEc20FvRu^Cjz_gK6~lG@ z^C@U1+fXAriMmp6p&s;HYBynNj4Hx4i;Tsz{I|{6E!0o4LCd(T_<Z4V`;%;ym2^OT z=qme@Y~pH84RPce+QYoH<bM<mjaX-Yll=<^5cgScJNyatlk9EeDlla>*zfl>c#QZS zcE+zZ+SG?_vYV>`YDrpSHSB=dI3Ck+4>rL^n^^z46zXlZ7sxo&u3Uw_xEZy1zC<;2 z0oAb27JGgJu>^56>NwWGAZ&sG*bxJ<H|qEebv}1H@$4<+Ul+krDzpba#b7*y#ql({ z@FuDwpHFQ=5vYMyLVccu?XWf0$JMCzZaTg|wOi^lo7qYjL7eTTpaJA!B)*N|I0ZF> z<<94uFoAe4>cu}X4Sheie=*fX?V;{i5l7=r{1|Is=dE_&vrwDxBg{khN(xG8(E@vg z`Z;D{W9kQD2yVk<Jc8=z3HHFyFYKlrff~>(Cq9TS;`69XJ$LlpW-}X%EV0{^r%;Cn zVo?wF#aJBT_z~(@eT&*FS5bQ-=1aS_aTrZp3p20_YR`O#n&~bK#r;?l&!7tfx9fe@ zKaoN(6}3@I&;rY2KU7B_U>MFt4RAfGgRPEdP&egE%*3)g>@Lqmy*C?Ua4ojLqgVn< zvp(MRZ>mx#hRLYZW;y1fHq%gSirX*`UttjD?XpWZ81;QW44dFr*bF_tvU{mDDii%t z6B>f4I11e*DSSpjyZr!aWItgB-oO-$`r6K*wc}8%K>b22OfhN+_G2bqM`f`5Zky`5 zsLbV|I{pV54>sp+@~;%F_{Of~4%C1SAs3lBhdFrBsgK@czXMV+k@`&3n)XL^u*|7n zkJ{9yQEPwE@h?=S{Px;@TJCk*LJums@WC)Fho>Cxp)yi@pZ!lL7iy-XP)m@H)o~MQ z2`{4t{5zJ%#QpXs*_POdcsJ@;7yZ`0AMB=}o5_XxARcwjYhf(*MKwGJHISuFyxIAD z2ZmFB1wHX8cE(qz40JwVzuxn(6!A>dW?zZA8QldG)WAN}<~WB+*)>$hPf$zbdC-0- zmBC2j499j@ns|`o6pSEVhWZ-cfer97_Q#k*He)l8P0jCr6tsqZhi%I0ICeud{GQ`N z)ZW;F+N}Fg13ihF(JfR4AETDW>xjL$LQ!!nR=^Cbh+VPp_y6$}^x^{a#+9fBKS5<+ z7y95q)KVRH;<KnVzJj_TJ&xM<OQBL-2K9V0YQVLzHa5dD_yPK{|IBI%>Szn9<DKY> z$1o0mLN)XX-$DOl_Qo8I>UbAwX2(%`<US6=qTktpk3tP-0;=6bsOLV$!t=kCLMJK? zp*D}}d;4`e8fy@*#Uwn3u~_W5J$^N?HE|Cdj0LESR6Jo%Nkfbw?t@DCRCM7M?2SL1 zVExr$>JRomI_F?};>*|!YyN1j+Ht6c*P@Q;A=HdxPTIeKUPHx$oOm8a6Ys)oynyK# zdCJ}sZE-1a*Hh%b7lp@E<l>t@+0<=A?S=TCNh8)kPfSM_)<)fAZ=y0ZA9YF&qt^Bk zYUWQ-11R^4&1@I+BmNS#r}nxjcu_cl@puA*@flXdfM4w{PeTo;IZnfNsOK-CI`ltn zKd*xR#EGa5GM%`A6SqX|fezRb-Q6inr?3U<>V-4*0vd(YiPvK(Jde5=?_mfQKWhgX zjkSoYqwa+Ps2RSG0XP?PaT#jB4^iz_I9K@hgWGhV(3pyysE$0&+Zl(U8j8nCn1*@S z6*Z9E7=`CC5T9ZY`d+YxV+rC|R7NtfGQNh|i~})({b%M;P=lLLGdPAC$PLt{dy4fj z@}gbCu9!f)9W{U(SQb4m+4rJRn=cJBup?@T=b|#Q2(>h;F`fR+CJJeI9kZ~^W&3@f zi;7oZCSJrQ82%rd^0!c#TZ&5QHOH_k_QGk3HL352VK@^t(AB6bc^|s<qUTk6XQ!hc zXoKZ&5QgInjKVco8V{iMzy&A1i+axIn!O)fm`&UiwVB^XEzM#~#`UPvboLtgkDzdg ziX?oDT7uZ?_5#X5t=S;dURZ#&a5-v#XVHa^P)inm!!At%YM@<EGarg6I1Q`e*BFYo zZn*7nctM3m=6%z4n2y>!-LO0kM%{dKP&3(y%G6QEn^=js=q-D*RmBy=vr$Ws@|&G; zAJqGAV<#N#rl2+c1rxEve{HJkp*rY}8o(Hg!+eazBdCV&qn4)f@AliV5tbqDgdOo; z_&T0IPmH*22O5RNh}{h-D0Qt+YuF3pa4c$RK0yuOTlB+gn1Oe&1y=sU{v`WPRK|Ws z?TzQ?jX`(pz`{^VTMe}|jj%rbn>Q(FB+F4V*?>9?N3kiIKke~*9o4`L)KaZOt?e1q zDY%O*G5xMx(kZA^&&EVtj#~2*7>L&kW&Iye&~7#NY|86k6~Zp4R8PcI+=TIX6{9ie zz8!E1D&?(F0~~;A?|qEJgP4r>u>;0Du#UtQ^lyHo&=#ZqvNzKZ^deq}B{3g0v(GR9 zU!fWd_#gWnk&T*JU(~4>i`qL&F$s5|mhv}LhKu}dGZ&5S%2Z@f(2TmH;_>K%>#-4j zhU)ksR>PtX?bm4{#t`>GWojxa6I)ROIpM^Apq}%6WG5Df+5;(%SpQNKno^<T(+zbR zCZRUZUdO|z22P*`dLNr($;bA&Jgh+67d7zd*bwJqDxN{@vEomhQ-GRK)D!ZbLLrU{ z&Gb!dfU8iO>LzMniBD|`+oL)fgf5)t#03~nd>WMj&u8``a-lNQ5;dUVsDXTqYUi-q zdEmBFQR=y!Q3m?*KwT`3P0$~6Q4RLQaGZe|xCUK#30vbURK{Aru$yuy>iJpN3fG}B z?|wu<n=Ig^?a+n6#8pu<&qN)UJk&r2p=LT3mBJ0E0c}TR@IR<MQu&q5Y#U4`o`_}e zD^vzfV~EcGRSKb0{EZrjzws!H%VQ96D)JzWdlYWYj#!%5jk?hmVNJ|O&FCa*;5Siw zD8R#`@F&@l7(qN7RX-Q~X~it2p!2>OGx2+Lp-&MHQx9WNo2oyS#UZEx%|e})6<8II zpl1HSsV`U5qwp`EhFFLCd{idR<9k@r)5HG#KaYY^oUaPpfJ*Tfs0OcK;d%G+C_Gl# zs2O&_ML6Cu!rP<pC)v+Y8O`zWDEvvb6Dsvzq9%F@_5M?I>xOdqdKCU9+Z?MCZ$urN zOQ;u0`PrG)#wg;Rs8misEkQo&`4y;+PNNt8g=+r^CSavv_VaeAWBg7r4|ic<E)^Pa zf%Cyp3?sgcIt4}iJqnMDKPn?hsQS*RrRa%zei-K9Ol*TEQ3I|J;8FN@Lj%kr9)nu4 z9Rc<1+FqqX4gHQfCNEGk2@A9XtBzXxCaC9nqc-7)z=CRVpI4qg;Xto~KM(XOSJ40J xjmUy_FKz|TU%j+bvFZsa8Ls4%%+%`heezwtDK%XwX_+<B3X<|0#Qs0;{4Wa&&NKi3 diff --git a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po index f0c08ec0d..3e78b6f2b 100644 --- a/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sr_RS/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Serbian (Serbia) (http://www.transifex.com/sphinx-doc/sphinx-1/language/sr_RS/)\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -129,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -137,7 +137,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -586,44 +586,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -642,19 +642,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -663,76 +663,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -751,7 +751,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -804,7 +804,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -921,7 +921,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -965,24 +965,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1002,28 +1002,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1035,28 +1035,28 @@ msgstr "" msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1119,8 +1119,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1497,13 +1497,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1511,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1541,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1570,131 +1570,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1766,17 +1766,17 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1806,12 +1806,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "" @@ -1819,7 +1819,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "" @@ -1842,106 +1842,106 @@ msgstr "" msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1963,7 +1963,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "" @@ -1983,88 +1983,88 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2140,7 +2140,7 @@ msgstr "" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2200,21 +2200,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2234,6 +2234,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2259,22 +2260,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,38 +2419,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2467,7 +2468,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2477,14 +2478,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2494,23 +2495,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2529,31 +2530,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2573,26 +2574,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2648,29 +2649,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2678,39 +2679,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2746,17 +2747,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2771,25 +2772,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2867,6 +2868,7 @@ msgid "Warning" msgstr "" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "" @@ -2874,13 +2876,29 @@ msgstr "" msgid "Continued on next page" msgstr "" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "" @@ -3017,13 +3035,13 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3031,20 +3049,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3102,20 +3120,20 @@ msgstr "" msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3132,18 +3150,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3214,7 +3232,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3275,15 +3293,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3320,12 +3338,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3343,12 +3361,12 @@ msgstr "" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index ac597271df514affea2ed52f8c8d30aa6bb8c296..1899198cbcbe8e11810ca158b2e08a9f840a3ee8 100644 GIT binary patch delta 11333 zcmZwM3w+OI|Htub%x34=Y<6J#VY6YgnQe9mISs?G#&DM$nnN)na_n2EFo&cZySd4s zkV1|XQB+cjoNnn%N>P-Y{a^20-^b(s_&*;1?jAj_&-MF$ufyj$`1#!xOTD)(^LD-o z^M2Xz&*mz|)W+2jivIVXl*Yy^CQQX7Jc!SE8FL9=;GMCl#{5pbPr5Nt)c=JSiGwnX zX-|9uYhkNQV<u8xnq|yrJc`4OaZLMc9-v|irt#n*oJoAMxiN(}J%>6xf_-smt}*m& z{>C7zn`cZlOv6T)g)Oi@(u7%#9q|OV!uWh+>fyuaNB?Fjh3Zty#zcG>)zCYrhR<U- z{)RQs+-FQp2*VIe!a!_}8c;h7z+(6Fer{ZjYG)!w;#>@+f3t={Fm6W=9zb<;9@Wrw z^h0l^<-uTl0MoEFPD3?#!1ZekCBBNvtanReqOmq=0NEIWh3G_4D5IbmJmo%6fh?<8 zfqL;XWL3=17>{w}F&0~50`|pS=wLI<z26Re1o{$B!2b9QDx*JOQ@n6L`Bx!^X>`CY z7=|w)`^c<Ab#w{`;$Nu!S=z=9Xap)=jUL>M%G4RxbEwQ-MlJDOWDdr+t$nVbtz%3w z72T<j6EF@}A(JutP%nD5vuo>*b%~>p{b=$~du9x3rb|!*T8V6UvjaW&8)|O^wYN(X zi&}ydheAAs4ycZXpw@B}Y9`NPBF=Z+fpv(_A{*M=LhbVG0{dP$)+2rvyW(r8y>tzI zusUh>#}HIzofx-}jbzspV<&tG`{OsLUEZprUAu0`WK2)wU$d0|bjBZ1dnt{VeX%1} z$L`2cH+@i>Zyst%UPT7xm@O2P$`4U{;SOpBX@%BetWP`^)$kJ360AgJ-~&_!@1h6e z7>yscLUr6pqw}ICRA!&<VwYkOhU@&Vp-_bnb|K4c-mUzA0{QcXn%D%RQES=})xi|E z{&}oMydAan@46mEW$FTI=BY*2*7z^to>+(e&1Mzw2x_f<$3A!uHPb%b>=H~uZc|f% z{<sG<;7?E)2<mQ3Ii@1p!n}fk_ydOEWemW3Zhb%xvXV+g6oq6gKs7uPYv4pTo{jo^ z5o(R!$51?t%FwUa7cZkSQCMu3syn6-_eR~A&!XO2ib1%cnEb23T~uhZ97Uz@3~C^M zqSov-*2eG$?6FCA?TotN2D?6my08{v1AGfP^5!HC!<Z7A!Rg30GdoJizt+^Nr%hqD zYcEv8<6P%rIPqEx#@!f!pP**+Eh^Q2pi+GY!!W3qjXkJMoQ?@tf@*JqLqRXjL7mT~ zs0LS}GOz`;>)%7I-2pfL61C>1Q61ety&qU=Qyq?aJ{dLOOyrLd(-w8^pGIwB=M@U- zXf3Ma&8Vf=kB#wDR73yZNUYl1UZG=99dAL+>;TrlUvM1WLJfR0J6UT#5!LQI)N_lG z3^-;z1^zXA_>VSG6#r?2W3U-6$22^O+Jsd&J58`LcE`Rr3OArKQu{%BYVJebBmGb* ze+E6c7R&G>?5p#i`j9b2RLns3g*l0xF{PiqddH(0UXJu(_Mm1Q^RWF!)DjgBcH>#7 zW4i@g;8)lj!}{Bl7veJF5`4s=@COC5YkCf_se1#pmI(t%H#SBcvo!QzCT3wzRE8=r z68B;(p1^u|1vP+(K{m4wpw@g7YH4<&qx1Sc1)bA_s6B8M8>06kc9%Cn4X7Q?!p^AY zPoO%iN<Q^@JZi5rKy{Ge#(8dBfZ78^sEn7Ek^c$`YpH0Z7Y5re9-}dX_&=!4a}4X? z1=ObV8Da+-jk&~)Fa{sN%3X~*RWnhUU5Fa+B~-hyL+$s8qM_u!0~MR8P)9c~0)vOy zh7vH5xC!>h64XGpVH_Sq-DFo#=iWSO4Mpv84=N)W*Z^B%0+wMk&T=TI!PTf4>_-jc zEXLy%Y>i=$*)=RdUD<D<25=T@<89P?(ZlWLYl1n%-LV?Z#6X;fzW54iQ#z|DWK;MW z^D%scy&Air;w6}e$FU=ZmfMu~L1k_MDy3&!gSjMviCbePc1LZ_XHf%v#f^7i8=e0z zD5!yO4zW^FfO@b$Dl=0s3YVc~{5ICYW2n7w(T(q-o{N0k-V<rqg19$^;zA6;b(oGj z&|ByK0tI#aJEo!UXuA~6u@P}GYVD?=AFf7ix=pA7UO*4}jIm3QgsH^$p$7UWDg#ro zDK0^^`zc1yzqv-CItD&rM;3wVumEe|2-IG1Fd0{%X7VvAQ>R@2Ms3!xvG#_`!Ii|z zF%$0}XYY}*sP`wL(}%(=3R>%*unBsew5jff>YyAofC_Ak8&Cr|iE7x4x6fx`IAICu zUKonKaXJ>_S@g!_33i~V6Ue_m6%SBR6Z>HljzM)a8>4Y2Y5+%3OK=5q@HTeEtciR- z#A&FE-M}ymm}D=eIMl!rF$Qz77M4sR|2kg7sn9?+p*Gnr%*IpL2}35^=lY-;Sccj} z+c6S<MxBPcScC;r?2^8WO7(J7W;bC3p2Z-%>bM23r|fPG!P<P#6_fB$RH|RZEPMx3 z@K3CZaZDf%@5fkt7&SmmtOYJaW%4W3fX&m!^n#|Y&I}4l;kQ_fsn6IO>S@%)u?Cg8 z4XByz#Xt<6Y8#BjhQwV^GaH9>a5icp>rtobBaFs>Py?<ptuk|tNvELQ-T~`kxf{QL zx~X<xd)$laxY~4ke8R9faSN=6V^Nt}jLO75)IiR<@h#MIwVt&T%fnha|MyeS=If1# zI0Ex=0s7z(*Au7)&Y}ito@3Tf5B1zgtdHYR17C{ma20Clen#!FI?ubO00ZgYq*Bnu zkcaJYIJUtp*a82>L~Jp`rf?9dqbcaYm2SKrQ;5%_G7vt~UPNh_O#BdPK+mBD@+mrM z=!E;gO;lWemYq=ttWI2n!B~m`I2hI7Xw-3ChTix#>R9eV4_?9U7+zsB_XuipK972D zRR#I)M&TVQv;+aO?Pl|!I?lvUY=O!^5$f1Hff~?MOu_jWh<i{2`xKSQzpxSJ&9NCS zL+zPGs0<yML;n3KT%<x5#x>L~_M2-55|4_Tq0Vt9)N_5X0S-r9Bnwa(*nqkb-$G63 z9BSY<(FZ;Aj2VPUsMAp4P|yc!FaS4V67Ix2{0==B`vMyk??Ydlf;wK$q6V}IHK1+S z5Whyv+-JV6Z;GYFy|E>}h026;nF4o-NqW&<t!ptz54iCjOd<Xl)!^Tlj-Cbfc=bTd za3n6mmt9j|Vp)g}pfXtcvM~?h2vq71Arp1Xc?xPEc%i+iGO-_Vf6TzWn1xqRnMtM> z&9pn}B6$*(%7v&UcnkIXHdIF!u^Rd=w(SRDDse8x>iiF(pz}P<bqz)kf8@qzF_QQm zYEwoov8N;+m65in`f?1zCsEJO!nU{)d*C_LfSWJ1-yeEmzRv#(6trfCQEPh*)zDpx z!Wzr$Od6pER)AXj2T{*Wz*;yP4|wqf1sSV(^xrmPRhQeJY#XC~vfZ-6{$$&B75Ue1 zwoPBPzu6Y9=GYKtuc1Mlyp}HsH1yIs`<rdZYn8v*nyIJ`FQb04^?lv`WZQhb{d0aF z9^&)B4fadxNo-7<vC;0Wepr=w_(t-t6po@oe_AcW=6D)AVvRTK-wXO;J>sS4hwou^ z{0OyozCg8e4Yk&FH`(KxgrUUwZrlY!i2Gw8j@m^2gD6a)!XGQ#2Nt4^<62aTx1dsg z!2SFT>b;9tA8)wzb>6h?q@o6zgC1;y58xndjXO|#<c32*7e(k>c4UdD)MmMMMGc?~ zV{p7%zW_CZ4OjzrVk#a&?V0PCjWssgZ%!RCmUt*8;B?%D&g&GKQ5dwv&Ug`O6TXW5 zaRVx)fm`hr8s^##J5WCk!*CC36Mu=(cnb$&#M^d&<52^eh05eU^yvJbq@cCDj!LQ5 zHhZ^+pq3yG3$PI?rH^AWPI6t1I#!=yEBp=BUdncx;w-F7+y!&69JOcGp|8&WXB3pO z<Cuw;(1Z1N*rjQQ!Nh$q9*4TlKn>_MRBE@l@#m-xPPyJieGy66X|MD)*qnF@M$*68 zMnSv#Fc#uvtbutfkZ!at=z~457WPJUI106yW@9J(9Q$L`Zo8KzppMy0Y=?8OBOb-h z82gUSKZPL_wB}EvQa1y$a6X3PN2oPEgBsW+%t7<6-4nT}2|VUH7j-H&quM==T7t8f zhxbsK%zKagdnojM&vrZs)$w$kiMz2Ow%cQmRXJ(^6Hqg&z_vIKHNa!2jGf0OcoDUv zF?;Pmx}oYzQJea?y^h_Dv#Cg-VihV?M^FvceBZrD@L$CFSO*umZbJ>|81}()sF}Cg zXOHV3%piUWb-!#z4ftJ*N8{{gN1_MY<2=-Z$1xPYL!F90-THf|bMF6vJq0<a=LcX- z9FDpdo^d~)i(29xsP?`<ZQAd#FFF?~C=~@C+7xv`WugSt;4`Qf7h)u?Lp8Vu)zC>d z{vI`uo2cii9k4U3jWNXcVJw!SHt`rMzyDB(rs7r9pX=|T*6b%7hS3LY3a4Qw;_ax< z%}2I_EZ3f>hR3?jL2ceOsHNP65qKCip&u|%=l?2&5Gu^a_Q6n8Tp#OWGfcoz)LKtQ z&3rEU;$l>T|G~;NcI)58>ePSe)_;at^HZn+T}N;FHvylx9b<Lk`lvNb!TT^5mGW`u zhx1S!EkVt2HR`>cs6S@+q4v!0I1+DROML8*?Pon|V(+1&8GTP-99~7u=+RH@+K)yx z{5<Np7f>CpLhbhLs7(}l*#7bR7&aqbh-r8Tlkq0%*wz2c{(YbrM-jjJ8TnUAYJP4n zh)k?U+zXZR3FyJ)ScZF19VQ;Je;IumONftPXH59QUcIAG?Jh(e+wG_shka?k5oM#| zeqWORBnnfhsEg~d1s+D-(f&tms@vc);;#4z{(_}gbj)UME&34G`O02E3Ft@M5Ixuo zb+MJ8GBgWyO7=JubS#deX8tE?05y->nHHlOdIPmIJFpt=#S}b%p?C!wV$~CNm#3lz z)D~x9A?o?#sQ#*)w4Xb16auJ7M0L>AjdR_&J!%hh#Ukv56}Sdl>G@OkLV6rCh*w}F z9z|vJ7YxII({`Y7m`j|7+zXBwMnN4+$3UEerMMI|;wz|z<Ns^FP!wYa;%!(H?_dOm zow1op#zf)_?2o-sSN1N9!;`4faScOs{=L7p=e;I|^FadYfgEgr1*pw90;BOoRD&Ba z1`nYIat^iWZenYUIct~jK};pyff~R$tc~8^@E-k}x)hYEY|O#ls5PFC{<sLWG^?;V zuE%Wr0rN5XTYEG1M8zvG56@snjQq}~{9#n)mY_2FJvu7X{N8@U>42HUy-;gdflB2n zH~tvg5Pyq$uig(fBRx?w8i{pqHb&ukjKdGG7XE-?c+-u8ekA{TF!4uwQMAMs#6wWK zdJTr)c1*{E=#BrNmf|+1VdPJCDGIO=@c`7)%|`95t(c4Nq6T;kJy`RcW7jV0oL!?r z)JVspGVlU6#dWBLPop-Q_j%iJ3~FHYQ5}|G4V;AWI0uvQ4b((VpfYvdwW{;8O|b{d z_@Dq+;zra`6kV`0o`z~*2KK?lsI|U=O|Z!?Hq{TII+%<az!GeXyD%Bgq1p}p)jsdE zrJ!9u5Myy1_Qn^n5HF%PW?!@e%}0OY0T_(KQENI08{=Hm((FbJ;47?-e_;;Z!LFG7 zTjfu-j+stDDZ7bkDDZcCGsU9@)&O<P@=#0D6I<g5)Ii=uZL-~{Q*jzQVdy3MTwm1t zub`G{2Wn|AU<aN5dlZVO=y2JNbRjC$E3gT^iCXh-uyQ7-&3Om4S%d$uDer<w#KTaj zo{w3$8+DQWfpxLYpLW2lFqZyJKMES*L{x(>V`Dsq>39!&Vfq#8^VpU68!X0@tM-C& zup04dROZ&BCbkCyG3YPbUJN!Q?u?FRHkN{pMFnc}ypCyj5Ve-qP$>@m+omoJ8xR+u zW;DW$=b<0*c5ILDqdNAvW=~Hz>H=$tYJc1{@~>2_r9zwU2x=e~-PrFR`=??eYGxg= z78YSm9E^!L33VD)q7R-$J^vHd!(UMY4Z3cBvQ0yMKKVNNuTNnr6~4F@+u<h6!mFrF z*6@aHI1_`3^RX!wVtbs7ZE!z!z-l+`z`9~I@fcJ;bI^mE-T0_OL7U?mDg*Uz*^8(Z zDl;Qc16qh0$Qe{a=iSf!Z`-&TYUZV=P1+Aba0mwAlc@HlVH9pe9c$+Rg&Ycp(1TU) z*zafwsML+c7+j2caVvJi!>A>web;Wbrl_@UkE$<5EzJ-N!a1(XP!oO~dEPN6C}?Cq zqEZ=n&u*4tREnoyb9@t(%AZl0@Zx`A7>E%VkJ|NFZrll#frnAgjYMtQsaOkN$IAcz zZy$wBDh{GXehW47P%k~erGkSnAC-v}SPgfhQu{vY+#kj~{0lvpR>jNQkKIvwYd+S- zC8z;y#|93CPbla-{(+4!rm7ujdn_d$jxF&+R3@r=dsY5qn~!REH!8*ZQOEBKREqzL zYR|WtSLHpDfpv%np(gkYI*TZ*qaa)Pcvb#pdlHq>VZL6Kzu7t%OZ+uzrq@voc&d9< zUQ`9xk9ag@;FqY=<Lzgk&qJktAjaWL)Kb3Y=jBxXJ$^qGdf_0dquZzyNBP?h;xLuC z5cT<Z)Omi%bvtUnr`-4wMiPexcvYT;B-E)%M`fhMt#<+(yB0I3&<o43EpEXccnvk; zj)7j4Um%8HKJiM_lAT2@fp3s)Cj@m$>Y)ajj~ZAhYVAj$)_xY&!hd@OZT+>;<_5v# zsRM?O8aiNL*%QMC4H&*)agQNBMPo+{EE~P`PLIKLf}a>xKDKO(XJomjylngvTl<c@ z6tgw{_GGWEdn-N($!M0Ek?TosnwOr{I6XH#-M@Rc)Z(&n!^R97S)ST%z!PP8o{aRS zxvA+qm*Z)gotK`ob@#HBNufo2{(rjd`@wLx+XZ)e^xPW#VZ#5@^*2?vhW!*4MgPBr F{twn!_X7X` delta 11165 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 OD%f=+Ae3+4^8X)5qSq7v diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 431a16998..8f26be6f1 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -129,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -137,7 +137,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -586,44 +586,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -642,19 +642,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Inbyggda" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Modulnivå" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -663,76 +663,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -751,7 +751,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -804,7 +804,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -921,7 +921,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -965,24 +965,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "(i " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1002,28 +1002,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1035,28 +1035,28 @@ msgstr "" msgid "Index" msgstr "Index" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Utgåva" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1119,8 +1119,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1497,13 +1497,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1511,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1541,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1570,131 +1570,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1766,17 +1766,17 @@ msgstr "Upphovsman:" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametrar" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Returnerar" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Returtyp" @@ -1806,12 +1806,12 @@ msgstr "%s (C-typ)" msgid "%s (C variable)" msgstr "%s (C-variabel)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "funktion" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "medlem" @@ -1819,7 +1819,7 @@ msgstr "medlem" msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "typ" @@ -1842,106 +1842,106 @@ msgstr "Förändrat i version %s" msgid "Deprecated since version %s" msgstr "Ersatt sedan version %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Kastar" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "klass" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (inbyggd funktion)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metod)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (klass)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Argument" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "metod" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "attribut" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "modul" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1963,7 +1963,7 @@ msgstr "operator" msgid "object" msgstr "objekt" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "undantag" @@ -1983,88 +1983,88 @@ msgstr "Variabler" msgid "Raises" msgstr "Väcker" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (inbyggd variabel)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (inbyggd klass)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (klass i %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metod)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statisk metod)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metod)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klassmetod)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassmetod)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attribut)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Python Modulindex" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Ersatt" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "klassmetod" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "statisk metod" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2140,7 +2140,7 @@ msgstr "Söksida" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2200,21 +2200,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2234,6 +2234,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2259,22 +2260,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,38 +2419,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2467,7 +2468,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2477,14 +2478,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2494,23 +2495,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2529,31 +2530,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2573,26 +2574,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2648,29 +2649,29 @@ msgstr "Översikt: modulkällkod" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Alla moduler där källkod finns</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2678,39 +2679,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "alias för :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2746,17 +2747,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2771,25 +2772,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2867,6 +2868,7 @@ msgid "Warning" msgstr "Varning" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "fortsättning från föregående sida" @@ -2874,13 +2876,29 @@ msgstr "fortsättning från föregående sida" msgid "Continued on next page" msgstr "Fortsätter på nästa sida" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Sök" @@ -3017,13 +3035,13 @@ msgstr "Nästa titel" msgid "next chapter" msgstr "Nästa kapitel" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Var god aktivera JavaScript för sökfunktionalitet." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3031,20 +3049,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Här kan du söka bland dessa dokument. Ange sökord nedan och klicka \"sök\".\n Sökningen måste träffa på samtliga angivna sökord." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "sök" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Sökresultat" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3102,20 +3120,20 @@ msgstr "Permalink till denna definition" msgid "Hide Search Matches" msgstr "Dölj Sökresultat" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3132,18 +3150,18 @@ msgstr "Dölj sidolist" msgid "Contents" msgstr "Innehåll" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3214,7 +3232,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3275,15 +3293,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3320,12 +3338,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3343,12 +3361,12 @@ msgstr "[image]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.mo b/sphinx/locale/ta/LC_MESSAGES/sphinx.mo index d88a005bc370c6ed06a414fc6fa7e631af51f9bf..0b719e0723d1b7848a9017db7cf58a42c105fde7 100644 GIT binary patch delta 11322 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 YJ0mAGYsW_`DkuEEJAD#Ee>X$^7wg;XQvd(} delta 11160 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 Coz!gr diff --git a/sphinx/locale/ta/LC_MESSAGES/sphinx.po b/sphinx/locale/ta/LC_MESSAGES/sphinx.po index f7de45a27..9d42b0728 100644 --- a/sphinx/locale/ta/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ta/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Tamil (http://www.transifex.com/sphinx-doc/sphinx-1/language/ta/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -130,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -587,44 +587,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -643,19 +643,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -664,76 +664,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -752,7 +752,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -805,7 +805,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -966,24 +966,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1003,28 +1003,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1036,28 +1036,28 @@ msgstr "" msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1120,8 +1120,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1498,13 +1498,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1512,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1542,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1571,131 +1571,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1767,17 +1767,17 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1807,12 +1807,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "" @@ -1820,7 +1820,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "" @@ -1843,106 +1843,106 @@ msgstr "" msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "" @@ -1984,88 +1984,88 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2141,7 +2141,7 @@ msgstr "" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2201,21 +2201,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2235,6 +2235,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2260,22 +2261,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2419,38 +2420,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2468,7 +2469,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2478,14 +2479,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2495,23 +2496,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2530,31 +2531,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2574,26 +2575,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2649,29 +2650,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2679,39 +2680,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2747,17 +2748,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2772,25 +2773,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2868,6 +2869,7 @@ msgid "Warning" msgstr "" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "" @@ -2875,13 +2877,29 @@ msgstr "" msgid "Continued on next page" msgstr "" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "" @@ -3018,13 +3036,13 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3032,20 +3050,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3103,20 +3121,20 @@ msgstr "" msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3133,18 +3151,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3215,7 +3233,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3276,15 +3294,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3321,12 +3339,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3344,12 +3362,12 @@ msgstr "" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 136d35adb2560ab862d5cfc136ea01252844a8fc..51016e5be53ba7f96af85183d23c8dbf8554589c 100644 GIT binary patch delta 11387 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 Rm#8wM`i~pjpLzct^j``P1#SQU delta 11193 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 B+nE3W diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index f4a7e0687..4c1f310c4 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -9,9 +9,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: Fırat Özgül <ozgulfirat@gmail.com>\n" "Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -123,7 +123,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -131,7 +131,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -139,7 +139,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -588,44 +588,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -644,19 +644,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Gömülü Öğeler" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Modül düzeyi" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -665,76 +665,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -753,7 +753,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -806,7 +806,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -923,7 +923,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -967,24 +967,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (şurada: " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1004,28 +1004,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1037,28 +1037,28 @@ msgstr "" msgid "Index" msgstr "Dizin" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Sürüm" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1121,8 +1121,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1499,13 +1499,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1513,29 +1513,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1543,26 +1543,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1572,131 +1572,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1768,17 +1768,17 @@ msgstr "Yazarı: " msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Parametreler" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Dönüş değeri:" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Dönüş tipi" @@ -1808,12 +1808,12 @@ msgstr "%s (C tipi)" msgid "%s (C variable)" msgstr "%s (C değişkeni)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "fonksiyonu" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "öğesi" @@ -1821,7 +1821,7 @@ msgstr "öğesi" msgid "macro" msgstr "makrosu" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "tipi" @@ -1844,106 +1844,106 @@ msgstr "%s sürümünde değişti" msgid "Deprecated since version %s" msgstr "%s sürümünden beri önerilmiyor" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "Şablon Parametreleri" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Şunu verir: " -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "sınıfı" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "numaralandırıcı" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (gömülü fonksiyon)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodu)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (sınıfı)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (global değişken veya sabit)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s niteliği)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Argümanlar" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (modül)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "metodu" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "verisi" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "niteliği" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "modülü" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1965,7 +1965,7 @@ msgstr "işleç" msgid "object" msgstr "nesne" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "istisnası" @@ -1985,88 +1985,88 @@ msgstr "Değişkenler" msgid "Raises" msgstr "Şunu tetikler:" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modülü içinde)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (gömülü değişken)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modülü içinde)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (gömülü sınıf)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (%s içinde bir sınıf)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metodu)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statik metodu)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statik metodu)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s sınıf metodu)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s sınıf metodu)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s niteliği)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Python Modül Dizini" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "modüller" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Önerilmiyor" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "sınıf metodu" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "statik metodu" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (önerilmiyor)" @@ -2142,7 +2142,7 @@ msgstr "Arama Sayfası" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2202,21 +2202,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2236,6 +2236,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Simgeler" @@ -2261,22 +2262,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2420,38 +2421,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2469,7 +2470,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2479,14 +2480,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2496,23 +2497,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[çizim: %s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[çizim]" @@ -2531,31 +2532,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2575,26 +2576,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s içinde)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2650,29 +2651,29 @@ msgstr "Genel bakış: modül kodu" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>Kodları mevcut bütün modüller</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2680,39 +2681,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "şunun takma adı: :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2748,17 +2749,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2773,25 +2774,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2869,6 +2870,7 @@ msgid "Warning" msgstr "Uyarı" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "önceki sayfadan devam" @@ -2876,13 +2878,29 @@ msgstr "önceki sayfadan devam" msgid "Continued on next page" msgstr "Devamı sonraki sayfada" +#: 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 "sayfa" + #: sphinx/themes/agogo/layout.html:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Ara" @@ -3019,13 +3037,13 @@ msgstr "Sonraki konu" msgid "next chapter" msgstr "sonraki bölüm" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Arama işlevini kullanabilmek için lütfen JavaScript'i\n etkinleştirin." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3033,20 +3051,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Burada belgeler içinde arama yapabilirsiniz. Aradığınız kelimeyi \naşağıdaki kutuya yazıp \"ara\" düğmesine basınız. Arama işlevi \notomatik olarak bütün kelimeleri arayacaktır. Eksik kelime içeren \nsayfalar sonuç listesinde görünmez." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "ara" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Arama Sonuçları" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3104,20 +3122,20 @@ msgstr "Bu tanımın kalıcı bağlantısı" msgid "Hide Search Matches" msgstr "Arama Sonuçlarını Gizle" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "Aranıyor" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "Aramaya hazırlanıyor..." -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "Arama tamamlandı. Sorguyu içeren %s sayfa bulundu." -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ", şunun içinde:" @@ -3134,18 +3152,18 @@ msgstr "Yan çubuğu daralt" msgid "Contents" msgstr "İçindekiler" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3216,7 +3234,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3277,15 +3295,15 @@ msgstr "Bu tablonun kalıcı bağlantısı" msgid "Permalink to this code" msgstr "Bu kodun kalıcı bağlantısı" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "Bu resmin kalıcı bağlantısı" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "Bu içindekiler tablosunun kalıcı bağlantısı" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3322,12 +3340,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3345,12 +3363,12 @@ msgstr "[resim]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 66b95e66c2cbaf4898d91a5c66f6e09a295d7257..66c2f36f2cfffa9144c10bc1ea2e7ff82d87efed 100644 GIT binary patch delta 11340 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 Q*NOiBgD;EHxLJY!1DlfDH2?qr delta 11167 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 diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index d7c23e83b..9506624c0 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -130,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -587,44 +587,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -643,19 +643,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Вбудовані елементи" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Рівень модуля" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -664,76 +664,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -752,7 +752,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -805,7 +805,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -966,24 +966,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr " (в " -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1003,28 +1003,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1036,28 +1036,28 @@ msgstr "" msgid "Index" msgstr "Індекс" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "Реліз" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1120,8 +1120,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1498,13 +1498,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1512,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1542,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1571,131 +1571,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1767,17 +1767,17 @@ msgstr "Автор: " msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Повертає" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Тип повернення" @@ -1807,12 +1807,12 @@ msgstr "%s (C тип)" msgid "%s (C variable)" msgstr "%s (C змінна)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "функція" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "член" @@ -1820,7 +1820,7 @@ msgstr "член" msgid "macro" msgstr "макрос" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "тип" @@ -1843,106 +1843,106 @@ msgstr "Змінено в версії %s" msgid "Deprecated since version %s" msgstr "Застаріло починаючи з версії %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "клас" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (вбудована функція)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (клас)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s атрибут)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (модуль)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "атрибут" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "модуль" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "оператор" msgid "object" msgstr "об'єкт" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "виняткова ситуація" @@ -1984,88 +1984,88 @@ msgstr "" msgid "Raises" msgstr "Викликає" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модулі %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (вбудована змінна)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (в модулі %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (вбудований клас)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (клас в %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s метод)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s статичний метод)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s статичний метод)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s атрибут)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "модулі" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Застарілий" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "статичний метод" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (застарілий)" @@ -2141,7 +2141,7 @@ msgstr "Сторінка пошуку" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2201,21 +2201,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2235,6 +2235,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2260,22 +2261,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2419,38 +2420,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2468,7 +2469,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2478,14 +2479,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2495,23 +2496,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2530,31 +2531,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2574,26 +2575,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2649,29 +2650,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2679,39 +2680,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "синонім :class:`%s`" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2747,17 +2748,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2772,25 +2773,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2868,6 +2869,7 @@ msgid "Warning" msgstr "Попередження" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "" @@ -2875,13 +2877,29 @@ msgstr "" msgid "Continued on next page" msgstr "" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Пошук" @@ -3018,13 +3036,13 @@ msgstr "Наступна тема" msgid "next chapter" msgstr "наступний розділ" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Будь-ласка вімкніть підтримку JavaScript, щоб ввікнути\n\"\n\" пошук." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3032,20 +3050,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Звідси ви можете шукати ці документи. Введіть ваші пошукові\n слова в поле нижче та натисніть \"пошук\". Зауважте що функція\n пошуку автоматично шукатиме за всіма словами. Сторінки\n що містять менше слів не з'являться в результуючому списку." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "пошук" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "Результати пошуку" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3103,20 +3121,20 @@ msgstr "Постійне посилання на це визначення" msgid "Hide Search Matches" msgstr "Приховати співпадіння пошуку" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3133,18 +3151,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3215,7 +3233,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3276,15 +3294,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3321,12 +3339,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3344,12 +3362,12 @@ msgstr "" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.mo b/sphinx/locale/ur/LC_MESSAGES/sphinx.mo index 8f0ad5b771c6bf0014039673bd31a03b57a03ffc..4342f980201ccdf936d570823bfb959e89f06444 100644 GIT binary patch delta 11323 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 delta 11150 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¬sILfNQeI1IJ& z1<vz*m`8jan_^~ZkCIHdaRTu+EcyLE)zhOS#hIupwgW1~-B2A)!;<rk)rc>nR#=P+ zG1|+z8{Z~=#@nMLqt~z}@nfut-F@srN20#J6y3U^ifHu0KQReA`g)Wco5`rmY)7s1 zM~pz9GB%a9P{%0~b<DC+1C2#5T!`xb1Jr5w%K7|0>KIq_^Kh3mQvB?U^H3iQ$I3Vd zRg^1H$7LfbBi}mDpP;tF$KSpmhFQdk*co3%P52Nt#$PZUU1jZ-^(>oV_jWoD)X{9L zg3C}V*@-I7GZ>CHQ16uq@F*$5@PfKAn`^yuqw|1*c|`-N6@2^R&tV0-XJ%ILONvWu j<Vr|POG$diXNk)<G1--vn${q-Ab!a&wg2Dy*8=|sJ_Fbw diff --git a/sphinx/locale/ur/LC_MESSAGES/sphinx.po b/sphinx/locale/ur/LC_MESSAGES/sphinx.po index 733bd19ef..1464969b7 100644 --- a/sphinx/locale/ur/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ur/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Urdu (http://www.transifex.com/sphinx-doc/sphinx-1/language/ur/)\n" "MIME-Version: 1.0\n" @@ -121,7 +121,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -129,7 +129,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -137,7 +137,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -586,44 +586,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -642,19 +642,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -663,76 +663,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -751,7 +751,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -804,7 +804,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -921,7 +921,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -965,24 +965,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1002,28 +1002,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1035,28 +1035,28 @@ msgstr "" msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1119,8 +1119,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1497,13 +1497,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1511,29 +1511,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1541,26 +1541,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1570,131 +1570,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1766,17 +1766,17 @@ msgstr "" msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "" @@ -1806,12 +1806,12 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "" @@ -1819,7 +1819,7 @@ msgstr "" msgid "macro" msgstr "" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "" @@ -1842,106 +1842,106 @@ msgstr "" msgid "Deprecated since version %s" msgstr "" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1963,7 +1963,7 @@ msgstr "" msgid "object" msgstr "" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "" @@ -1983,88 +1983,88 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "" @@ -2140,7 +2140,7 @@ msgstr "" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2200,21 +2200,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2234,6 +2234,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "" @@ -2259,22 +2260,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2418,38 +2419,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2467,7 +2468,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2477,14 +2478,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2494,23 +2495,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2529,31 +2530,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2573,26 +2574,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2648,29 +2649,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2678,39 +2679,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2746,17 +2747,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2771,25 +2772,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2867,6 +2868,7 @@ msgid "Warning" msgstr "" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "" @@ -2874,13 +2876,29 @@ msgstr "" msgid "Continued on next page" msgstr "" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "" @@ -3017,13 +3035,13 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3031,20 +3049,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3102,20 +3120,20 @@ msgstr "" msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3132,18 +3150,18 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3214,7 +3232,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3275,15 +3293,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3320,12 +3338,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3343,12 +3361,12 @@ msgstr "" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 56e0adcb41a9cfb4b4ad6b5ba1eee7e610467ed2..11639fa8e2d9da8de437a9955415946111500066 100644 GIT binary patch delta 11340 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 JbRAgse*jbv?tB0M delta 11168 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 diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 29041f8db..01bae6d8c 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -8,8 +8,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:08+0000\n" "Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" "Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\n" "MIME-Version: 1.0\n" @@ -122,7 +122,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -130,7 +130,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -587,44 +587,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -643,19 +643,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "Dựng sẵn" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "Mức mô-đun" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -664,76 +664,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -752,7 +752,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -805,7 +805,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -922,7 +922,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -966,24 +966,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "(trong" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1003,28 +1003,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1036,28 +1036,28 @@ msgstr "" msgid "Index" msgstr "" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1120,8 +1120,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1498,13 +1498,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1512,29 +1512,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1542,26 +1542,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1571,131 +1571,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1767,17 +1767,17 @@ msgstr "Tác giả:" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "Tham số" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "Trả về" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "Kiểu trả về" @@ -1807,12 +1807,12 @@ msgstr "%s (kiểu C)" msgid "%s (C variable)" msgstr "%s (biến C)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "hàm" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "thuộc tính" @@ -1820,7 +1820,7 @@ msgstr "thuộc tính" msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "kiểu" @@ -1843,106 +1843,106 @@ msgstr "Thay đổi trong phiên bản %s" msgid "Deprecated since version %s" msgstr "Sắp loại bỏ từ phiên bản %s" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "Ném" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "lớp" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (hàm dựng sẵn)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (phương thức %s)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (lớp)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (biến toàn cục hoặc hằng số)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (thuộc tính %s)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "Đối số" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (mô-đun)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "phương thức" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "dữ liệu" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "thuộc tính" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "mô-đun" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1964,7 +1964,7 @@ msgstr "toán tử" msgid "object" msgstr "đối tượng" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "ngoại lệ" @@ -1984,88 +1984,88 @@ msgstr "Các biến" msgid "Raises" msgstr "Đưa ra" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (trong mô-đun %s)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (biến dựng sẵn)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (trong mô-đun %s)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (lớp dựng sẵn)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (lớp trong %s)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (phương thức %s.%s) " -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (phương thức tĩnh %s.%s)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (phương thức tĩnh %s)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (phương thức lớp %s.%s)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (phương thức lớp %s)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (thuộc tính %s.%s)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Chỉ Mục Mô-đun Python" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "các mô-đun" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "Sắp loại bỏ" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "phương thức lớp" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "phương thức tĩnh" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "(sắp loại bỏ)" @@ -2141,7 +2141,7 @@ msgstr "" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2201,21 +2201,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2235,6 +2235,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "Biểu tượng" @@ -2260,22 +2261,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2419,38 +2420,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2468,7 +2469,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2478,14 +2479,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2495,23 +2496,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "" @@ -2530,31 +2531,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "" @@ -2574,26 +2575,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2649,29 +2650,29 @@ msgstr "" msgid "<h1>All modules for which code is available</h1>" msgstr "" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2679,39 +2680,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2747,17 +2748,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2772,25 +2773,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2868,6 +2869,7 @@ msgid "Warning" msgstr "Cảnh báo" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "" @@ -2875,13 +2877,29 @@ msgstr "" msgid "Continued on next page" msgstr "" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Tìm Kiếm" @@ -3018,13 +3036,13 @@ msgstr "Chủ đề tiếp" msgid "next chapter" msgstr "chương tiếp" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Hãy bật JavaScript để dùng tính năng\ntìm kiếm." -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3032,20 +3050,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3103,20 +3121,20 @@ msgstr "" msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr "" @@ -3133,18 +3151,18 @@ msgstr "" msgid "Contents" msgstr "Nội dung" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3215,7 +3233,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3276,15 +3294,15 @@ msgstr "" msgid "Permalink to this code" msgstr "" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3321,12 +3339,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "" @@ -3344,12 +3362,12 @@ msgstr "" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 9b92ff0e83b78ec1566217bd6ba2f715f6b957f4..e346cd8990eebf724508406c9e85a648698346ed 100644 GIT binary patch delta 11495 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 delta 11204 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 X%M0i2`sZ}<`9l}Hw(de953m0NsoMI? diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index ebaaa5000..a5c28080b 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -16,9 +16,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: Yinian Chin <yinian1992@live.com>\n" "Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -130,7 +130,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -138,7 +138,7 @@ msgid "" "explicit" msgstr "扩展 %s 没有声明是否并行读取安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -146,7 +146,7 @@ msgid "" "explicit" msgstr "%s 扩展没有声明是否并行写入安全,默认假定为否 - 请联系扩展作者检查是否支持该特性并显式声明" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "执行顺序 %s" @@ -402,9 +402,7 @@ msgstr "公式渲染器 %s 已注册" msgid "" "the extension %r was already merged with Sphinx since version %s; this " "extension is ignored." -msgstr "" -"the extension %r was already merged with Sphinx since version %s; this " -"extension is ignored." +msgstr "自版本 %s 开始,扩展 %r 已合并至 Sphinx;该扩展被忽略。" #: sphinx/registry.py:475 msgid "Original exception:\n" @@ -597,44 +595,44 @@ msgstr "写入文档:%s" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "复制图像……" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "无法读取图像文件 %r:直接复制" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "无法复制图像文件 %r:%s" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "无法写入图像文件 %r:%s" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "正在写入 %s 文件……" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "%s 的 MIME 类型未知,将被忽略" @@ -653,19 +651,19 @@ msgstr "%s 版本中没有做出修改。" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "内置" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "模块级别" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "复制源文件……" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "创建变更记录时无法读取 %r" @@ -674,76 +672,76 @@ msgstr "创建变更记录时无法读取 %r" msgid "The dummy builder generates no files." msgstr "伪构建器不生成文件。" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "ePub 文件保存在 %(outdir)s 目录。" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_language”(或“language”)不能为空" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_uid”应为 XML 名称" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_title”(或“html_title”)不能为空" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_author”不能为空" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_contributor”不能为空" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_description”不能为空" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_publisher”不能为空" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_copyright”(或“copyright”)不能为空" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“epub_identifier”不能为空" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "对于 EPUB3 格式,配置项“version”不能为空" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "无效的 css_file:%r,已忽略" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "消息目录保存在 %(outdir)s 目录。" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "构建 [%s]:" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "%d 个模板文件的目标文件" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "读取模板……" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "写入消息目录……" @@ -762,7 +760,7 @@ msgstr "HTML 页面保存在 %(outdir)s 目录。" msgid "Failed to read build info file: %r" msgstr "读取构建信息文件失败:%r" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -815,7 +813,7 @@ msgstr "复制静态文件……" msgid "html_static_path entry %r does not exist" msgstr "html_static_path 指向的 %r 不存在" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "Logo 文件 %r 不存在" @@ -932,7 +930,7 @@ msgstr "手册页保存在 %(outdir)s 目录。" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "未找到“man_pages”配置项,不会写入手册页" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -976,24 +974,24 @@ msgstr "未找到“texinfo_documents”配置项,不会写入文档" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "配置项“texinfo_documents”引用了未知文档 %s" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "解析引用……" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "(在" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1013,28 +1011,28 @@ msgstr "XML 文件保存在 %(outdir)s 目录。" msgid "The pseudo-XML files are in %(outdir)s." msgstr "伪 XML 文件保存在 %(outdir)s。" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "LaTex 文件保存在 %(outdir)s 目录。" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 msgid "" "\n" "Run 'make' in that directory to run these through (pdf)latex\n" "(use `make latexpdf' here to do that automatically)." msgstr "\n在该目录下运行“make”以通过 (pdf)latex 运行这些 LaTex 文件\n(在此处用“make latexpdf”即可自动执行)。" -#: sphinx/builders/latex/__init__.py:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "未找到“latex_documents”配置项,不会写入文档" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "配置项“latex_documents”引用了未知文档 %s" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1046,28 +1044,28 @@ msgstr "配置项“latex_documents”引用了未知文档 %s" msgid "Index" msgstr "索引" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "发布" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "没有语种 %r 的 Babel 选项" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "复制 TeX 支持文件……" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "未知配置项:latex_elements[%r],已忽略。" @@ -1130,8 +1128,8 @@ msgstr "请向 Bug 追踪系统 <https://github.com/sphinx-doc/sphinx/issues> msgid "job number should be a positive number" msgstr "工作编号应为正值" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "更多信息请访问 <http://sphinx-doc.org/>。" @@ -1508,13 +1506,13 @@ msgstr "请输入新文件名,若要重命名现有文件请按回车" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "启用 Sphinx 扩展:" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "注意:imgmath 和 mathjax 不能同时启用。已取消选择 imgmath。" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1522,29 +1520,29 @@ msgid "" "directly." msgstr "\n生成 Makefile 和 Windows 批处理文件,可以直接像“make html”这样\n运行,而不需要直接调用 sphinx-build。" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "创建 Makefile?(y/n)" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "创建 Windows 批处理文件?(y/n)" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "创建文件 %s。" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "文件 %s 已存在,跳过。" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "完成:已创建初始目录结构。" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1552,26 +1550,26 @@ msgid "" "source files. " msgstr "\n你现在可以填写主文档文件 %s 并创建其他文档源文件了。" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "用 Makefile 构建文档,像这样:\n make builder\n" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "用 sphinx-build 命令构建文档,像这样:\n sphinx-build -b builder %s %s\n" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "此处的“builder”是支持的构建器名,比如 html、latex 或 linkcheck。\n" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1581,131 +1579,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "\n生成 Sphinx 项目的必需文件。\n\nsphinx-quickstart 是一个交互式工具,询问一些关于项目的问题,生成\n完整的文档目录和用于 sphinx-build 的示例 Makefile。\n" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "静默模式" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "输出路径" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "文档结构参数" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "如果指定了此选项,将使用独立的源文件目录和构建目录。" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "用点替代下划线,“ _templates”。" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "项目基本参数" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "项目名称" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "作者名称" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "项目版本" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "项目发行版本" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "项目语种" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "源文件后缀" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "主文档名" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "启用 ePub 支持" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "扩展程序选项" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "启用 %s 扩展" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "启用多个扩展" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "创建 Makefile 和批处理文件" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "创建 Makefile" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "不创建 Makefile" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "创建批处理文件" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "不创建批处理文件" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "使用用于 Makefile/make.bat 的 Make 模式" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "不使用用于 Makefile/make.bat 的 Make 模式" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "项目模板" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "放置模板文件的模板目录" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "定义一个模板变量" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "指定了“quiet”,但是没有指定“project”和“author”。" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "错误:指定的路径不是一个目录,或是 Sphinx 文件已存在。" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "sphinx-quickstart 只会在空目录中生成文件。请指定一个新的根路径。" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "无效模板变量:%s" @@ -1777,17 +1775,17 @@ msgstr "作者:" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "参数" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "返回" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "返回类型" @@ -1817,12 +1815,12 @@ msgstr "%s (C 类型)" msgid "%s (C variable)" msgstr "%s (C 变量)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "函数" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "成员" @@ -1830,7 +1828,7 @@ msgstr "成员" msgid "macro" msgstr "宏" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "类型" @@ -1853,106 +1851,106 @@ msgstr "在 %s 版更改" msgid "Deprecated since version %s" msgstr "%s 版后已移除" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "重复的声明,已经在“%s”处定义。\n定义为“%s”。" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "模板参数" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "抛出" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "类" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "联合体" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "概念" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "枚举" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "枚举子" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "重复的声明,已经在“%s”处定义。\n声明名称为“%s”。" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (內置函数)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 方法)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (类)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (全局变量或常量)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 属性)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "参数" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (模块)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "方法" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "数据" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "属性" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "模块" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "无效的 math_eqref_format:%r" @@ -1974,7 +1972,7 @@ msgstr "运算符" msgid "object" msgstr "对象" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "例外" @@ -1994,88 +1992,88 @@ msgstr "变量" msgid "Raises" msgstr "引发" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (內置变量)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (內置类)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的类)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s 方法)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s 静态方法)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 静态方法)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s 类方法)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 类方法)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s 属性)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Python 模块索引" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "模块" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "已移除" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "类方法" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "静态方法" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "交叉引用 %r 找到了多个目标:%s" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr " (已移除)" @@ -2151,7 +2149,7 @@ msgstr "搜索页面" msgid "duplicate citation %s, other instance in %s" msgstr "重复的引文 %s,已有引文出现在 %s" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "重复的标签 %s,已有标签出现在 %s" @@ -2211,21 +2209,21 @@ msgid "" "another doctree directory." msgstr "本环境与选择的构建器不兼容,请选择其他的文档树目录。" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "在 %s 中扫描文档失败:%r" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "没有注册 %r 域" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "目录树存在自引用,已忽略。" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "文档没有加入到任何目录树中" @@ -2245,6 +2243,7 @@ msgid "unknown index entry type %r" msgstr "未知的索引条目类型 %r" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "符号" @@ -2270,22 +2269,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "目录树引用的文档 %r 不存在" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "无法读取图像文件:%s" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "无法读取图像文件 %s:%s" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "无法读取下载文件:%s" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "已经给 %s 分配了章节编号(嵌套的带编号文档树?)" @@ -2429,38 +2428,38 @@ msgstr "coverage_c_regexes 中有无效的正则表达式 %r" msgid "module %s could not be imported: %s" msgstr "无法导入模块 %s:%s" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "'%s' 选项中缺少 '+' 或 '-'。" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "'%s' 不是一个有效选项。" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "'%s' 不是一个有效的 pyversion 选项。" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "无效的 TestCode 类型" -#: sphinx/ext/doctest.py:291 +#: 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 "已完成源文件的文档测试,请在 %(outdir)s/output.txt 中查看结果。" -#: sphinx/ext/doctest.py:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "块 %s 没有代码或没有输出,出现在 %s:%s" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "y已忽略无效的文档代码:%r" @@ -2478,7 +2477,7 @@ msgstr "外部 Graphviz 文件 %r 不存在或读取失败" msgid "Ignoring \"graphviz\" directive without content." msgstr "已忽略无内容的 \"graphviz 指令" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2488,14 +2487,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "无法运行 Dot 命令 %r (Graphviz 输出所需),请检查 graphviz_dot 配置" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2505,23 +2504,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "graphviz_output_format 必须是 'png' 或 'svg' 中之一,现为 %r" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "DOT 代码 %r:%s" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[图表:%s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[图表]" @@ -2540,31 +2539,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "无法运行 LaTeX 命令 %r (数学公式显示必需),请检查 imgmath_latex 设置" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "无法运行 %s 命令 %r (数学公式显示必需),请检查 imgmath_%s 设置" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "显示 LaTeX %r:%s" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "内联 LaTeX %r:%s" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "公式的永久链接" @@ -2584,26 +2583,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "访问对象清单时报错:" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(在 %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "(在 %s)" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "跨 Sphinx 标识 %r 不是字符串,已忽略" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2659,29 +2658,29 @@ msgstr "概览:模块代码" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>代码可用的所有模块</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "无效的 auto%s 签名(%r)" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "格式化 %s 参数时报错:%s" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "属性 %s 不存在,在对象 %s 上" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "autodoc:无法判断是否生成 %r 的文档。抛出了下列异常:\n%s" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2689,39 +2688,39 @@ msgid "" "explicit module name)" msgstr "无法判断导入哪个模块来自动生成文档 %r(尝试在文档中使用“module”或“currentmodule”指令,或者显式给定模块名)" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "automodule 名中的“::”无意义" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "automodule %s 给定了函数签名参数或返回类型标注" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "__all__ 应是一个字符串列表,而不是 %r (出现在模块 %s 中) -- 已忽略__all__" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr ":members: 或 __all__ 提及的属性不存在:模块 %s,属性 %s" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "基类:%s" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` 的别名" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "忽略 autodoc_default_flags 中的无效选项:%r" @@ -2757,17 +2756,17 @@ msgid "" "contain .rst. Skipped." msgstr "autosummary 内部生成 .rst 文件,但是 source_suffix 中不包含 .rst,已跳过。" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "[autosummary] 生成 autosummary:%s" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "[autosummary] 写入 %s" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2782,25 +2781,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "\n用 autosummary 指令生成 ReStructuredText\n\nsphinx-autogen 是 sphinx.ext.autosummary.generate 的前端,它根据给定\n的输入文件中的 autosummary 指令生成 reStructuredText  文件\n\nautosummary 指令的格式见 Python 模块 ``sphinx.ext.autosummary`` 的文\n档,并且可以这样调出文档阅读::\n\n pydoc sphinx.ext.autosummary\n" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "用于生成 rST 文件的源文件" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "输出目录" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "默认的文件名后缀(默认:%(default)s)" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "自定义模板目录(默认:%(default)s)" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "文档导入的成员(默认:%(default)s)" @@ -2878,6 +2877,7 @@ msgid "Warning" msgstr "警告" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "续上页" @@ -2885,13 +2885,29 @@ msgstr "续上页" msgid "Continued on next page" msgstr "下页继续" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "搜索" @@ -3028,13 +3044,13 @@ msgstr "下一个主题" msgid "next chapter" msgstr "下一章" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "请激活 JavaScript 以开启搜索功能" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3042,20 +3058,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "在这儿,你可以对这些文档进行搜索。向搜索框中输入你所要搜索的关键字并点击“搜索”。注意:搜索引擎会自动搜索所有的关键字。将不会搜索到部分关键字的页面." -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "搜索" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "搜索结果" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3113,20 +3129,20 @@ msgstr "永久链接至目标" msgid "Hide Search Matches" msgstr "隐藏搜索结果" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "搜索中" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "准备搜索……" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "搜索完成,有 %s 个页面匹配。" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr ",在" @@ -3143,18 +3159,18 @@ msgstr "折叠边栏" msgid "Contents" msgstr "目录" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "发现使用了 4 列布局的索引页。可能是你所用的扩展出现了 Bug:%r" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "脚注 [%s] 没有被引用过。" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "脚注 [#] 没有被引用过。" @@ -3185,7 +3201,7 @@ msgstr "译文中的术语引用与原文不一致。原始为:{0},翻译后 #: sphinx/transforms/post_transforms/__init__.py:110 #, python-format msgid "more than one target found for 'any' cross-reference %r: could be %s" -msgstr "more than one target found for 'any' cross-reference %r: could be %s" +msgstr "'any' 交叉引用的目标不唯一:可能是 %s" #: sphinx/transforms/post_transforms/__init__.py:142 #, python-format @@ -3225,7 +3241,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "当添加指令类时,不应该给定额外参数" @@ -3286,15 +3302,15 @@ msgstr "永久链接至表格" msgid "Permalink to this code" msgstr "永久链接至代码" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "永久链接至图片" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "永久链接至目录树" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "无法获取图像尺寸,已忽略 :scale: 选项。" @@ -3331,12 +3347,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "无效的量纲单位 %s,已忽略。" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "发现未知的索引条目类型 %s" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "未知配置项:latex_elements[%r],已忽略。" @@ -3354,12 +3370,12 @@ msgstr "[图片]" msgid "caption not inside a figure." msgstr "在图示之外发现了图示标题。" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "未实现的节点类型:%r" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "未知节点类型:%r" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index c2791173b2fdbc22e1d53616cf4e01cd3e329961..a75186081cec5191d5bdac6d14f3021c2eaf29d6 100644 GIT binary patch delta 11414 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 delta 11204 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 diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 65cc2f8dc..cafadd80a 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -13,9 +13,9 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2019-02-18 01:52+0900\n" -"PO-Revision-Date: 2019-03-14 16:36+0000\n" -"Last-Translator: Takeshi KOMIYA <i.tkomiya@gmail.com>\n" +"POT-Creation-Date: 2019-03-29 01:05+0900\n" +"PO-Revision-Date: 2019-03-28 16:09+0000\n" +"Last-Translator: Liang-Bo Wang <me@liang2.tw>\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" @@ -127,7 +127,7 @@ msgstr "" msgid "role %r is already registered, it will be overridden" msgstr "" -#: sphinx/application.py:1182 +#: sphinx/application.py:1179 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel reading, " @@ -135,7 +135,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1188 +#: sphinx/application.py:1185 #, python-format msgid "" "the %s extension does not declare if it is safe for parallel writing, " @@ -143,7 +143,7 @@ msgid "" "explicit" msgstr "" -#: sphinx/application.py:1199 +#: sphinx/application.py:1196 #, python-format msgid "doing serial %s" msgstr "" @@ -592,44 +592,44 @@ msgstr "" msgid "preparing documents" msgstr "" -#: sphinx/builders/_epub_base.py:219 +#: sphinx/builders/_epub_base.py:218 #, python-format msgid "duplicated ToC entry found: %s" msgstr "" -#: sphinx/builders/_epub_base.py:415 sphinx/builders/html.py:761 -#: sphinx/builders/latex/__init__.py:413 sphinx/builders/texinfo.py:190 +#: sphinx/builders/_epub_base.py:414 sphinx/builders/html.py:761 +#: sphinx/builders/latex/__init__.py:415 sphinx/builders/texinfo.py:190 msgid "copying images... " msgstr "" -#: sphinx/builders/_epub_base.py:422 +#: sphinx/builders/_epub_base.py:421 #, python-format msgid "cannot read image file %r: copying it instead" msgstr "" -#: sphinx/builders/_epub_base.py:428 sphinx/builders/html.py:769 -#: sphinx/builders/latex/__init__.py:421 sphinx/builders/texinfo.py:198 +#: sphinx/builders/_epub_base.py:427 sphinx/builders/html.py:769 +#: sphinx/builders/latex/__init__.py:423 sphinx/builders/texinfo.py:199 #, python-format msgid "cannot copy image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:445 +#: sphinx/builders/_epub_base.py:444 #, python-format msgid "cannot write image file %r: %s" msgstr "" -#: sphinx/builders/_epub_base.py:456 +#: sphinx/builders/_epub_base.py:455 msgid "Pillow not found - copying image files" msgstr "" -#: sphinx/builders/_epub_base.py:491 sphinx/builders/_epub_base.py:504 -#: sphinx/builders/_epub_base.py:540 sphinx/builders/_epub_base.py:725 -#: sphinx/builders/_epub_base.py:758 sphinx/builders/epub3.py:184 +#: sphinx/builders/_epub_base.py:490 sphinx/builders/_epub_base.py:503 +#: sphinx/builders/_epub_base.py:539 sphinx/builders/_epub_base.py:724 +#: sphinx/builders/_epub_base.py:757 sphinx/builders/epub3.py:183 #, python-format msgid "writing %s file..." msgstr "" -#: sphinx/builders/_epub_base.py:566 +#: sphinx/builders/_epub_base.py:565 #, python-format msgid "unknown mimetype for %s, ignoring" msgstr "" @@ -648,19 +648,19 @@ msgstr "" msgid "writing summary file..." msgstr "" -#: sphinx/builders/changes.py:87 +#: sphinx/builders/changes.py:86 msgid "Builtins" msgstr "內建" -#: sphinx/builders/changes.py:89 +#: sphinx/builders/changes.py:88 msgid "Module level" msgstr "模組層次" -#: sphinx/builders/changes.py:134 +#: sphinx/builders/changes.py:133 msgid "copying source files..." msgstr "" -#: sphinx/builders/changes.py:141 +#: sphinx/builders/changes.py:140 #, python-format msgid "could not read %r for changelog creation" msgstr "" @@ -669,76 +669,76 @@ msgstr "" msgid "The dummy builder generates no files." msgstr "" -#: sphinx/builders/epub3.py:69 +#: sphinx/builders/epub3.py:68 #, python-format msgid "The ePub file is in %(outdir)s." msgstr "" -#: sphinx/builders/epub3.py:212 +#: sphinx/builders/epub3.py:211 msgid "conf value \"epub_language\" (or \"language\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:216 +#: sphinx/builders/epub3.py:215 msgid "conf value \"epub_uid\" should be XML NAME for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:219 +#: sphinx/builders/epub3.py:218 msgid "conf value \"epub_title\" (or \"html_title\") should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:223 +#: sphinx/builders/epub3.py:222 msgid "conf value \"epub_author\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:226 +#: sphinx/builders/epub3.py:225 msgid "conf value \"epub_contributor\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:229 +#: sphinx/builders/epub3.py:228 msgid "conf value \"epub_description\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:232 +#: sphinx/builders/epub3.py:231 msgid "conf value \"epub_publisher\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:235 +#: sphinx/builders/epub3.py:234 msgid "conf value \"epub_copyright\" (or \"copyright\")should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:239 +#: sphinx/builders/epub3.py:238 msgid "conf value \"epub_identifier\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:242 +#: sphinx/builders/epub3.py:241 msgid "conf value \"version\" should not be empty for EPUB3" msgstr "" -#: sphinx/builders/epub3.py:257 sphinx/builders/html.py:1166 +#: sphinx/builders/epub3.py:256 sphinx/builders/html.py:1166 #, python-format msgid "invalid css_file: %r, ignored" msgstr "" -#: sphinx/builders/gettext.py:215 +#: sphinx/builders/gettext.py:221 #, python-format msgid "The message catalogs are in %(outdir)s." msgstr "" -#: sphinx/builders/gettext.py:239 +#: sphinx/builders/gettext.py:245 #, python-format msgid "building [%s]: " msgstr "" -#: sphinx/builders/gettext.py:240 +#: sphinx/builders/gettext.py:246 #, python-format msgid "targets for %d template files" msgstr "" -#: sphinx/builders/gettext.py:244 +#: sphinx/builders/gettext.py:250 msgid "reading templates... " msgstr "" -#: sphinx/builders/gettext.py:271 +#: sphinx/builders/gettext.py:277 msgid "writing message catalogs... " msgstr "" @@ -757,7 +757,7 @@ msgstr "" msgid "Failed to read build info file: %r" msgstr "" -#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:204 +#: sphinx/builders/html.py:488 sphinx/builders/latex/__init__.py:206 #: sphinx/transforms/__init__.py:121 sphinx/writers/manpage.py:118 #: sphinx/writers/texinfo.py:243 #, python-format @@ -810,7 +810,7 @@ msgstr "" msgid "html_static_path entry %r does not exist" msgstr "" -#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:398 +#: sphinx/builders/html.py:839 sphinx/builders/latex/__init__.py:400 #, python-format msgid "logo file %r does not exist" msgstr "" @@ -927,7 +927,7 @@ msgstr "" msgid "no \"man_pages\" config value found; no manual pages will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:270 sphinx/builders/manpage.py:64 +#: sphinx/builders/latex/__init__.py:272 sphinx/builders/manpage.py:64 #: sphinx/builders/singlehtml.py:174 sphinx/builders/texinfo.py:120 msgid "writing" msgstr "" @@ -971,24 +971,24 @@ msgstr "" msgid "\"texinfo_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:253 sphinx/builders/texinfo.py:116 +#: sphinx/builders/latex/__init__.py:255 sphinx/builders/texinfo.py:116 #, python-format msgid "processing %s" msgstr "" -#: sphinx/builders/latex/__init__.py:322 sphinx/builders/texinfo.py:163 +#: sphinx/builders/latex/__init__.py:323 sphinx/builders/texinfo.py:164 msgid "resolving references..." msgstr "" -#: sphinx/builders/latex/__init__.py:332 sphinx/builders/texinfo.py:172 +#: sphinx/builders/latex/__init__.py:333 sphinx/builders/texinfo.py:173 msgid " (in " msgstr "(於" -#: sphinx/builders/texinfo.py:204 +#: sphinx/builders/texinfo.py:205 msgid "copying Texinfo support files" msgstr "" -#: sphinx/builders/texinfo.py:208 +#: sphinx/builders/texinfo.py:209 #, python-format msgid "error writing file Makefile: %s" msgstr "" @@ -1008,28 +1008,28 @@ msgstr "" msgid "The pseudo-XML files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:121 +#: sphinx/builders/latex/__init__.py:123 #, python-format msgid "The LaTeX files are in %(outdir)s." msgstr "" -#: sphinx/builders/latex/__init__.py:123 +#: sphinx/builders/latex/__init__.py:125 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:163 +#: sphinx/builders/latex/__init__.py:165 msgid "no \"latex_documents\" config value found; no documents will be written" msgstr "" -#: sphinx/builders/latex/__init__.py:171 +#: sphinx/builders/latex/__init__.py:173 #, python-format msgid "\"latex_documents\" config value references unknown document %s" msgstr "" -#: sphinx/builders/latex/__init__.py:211 sphinx/domains/std.py:501 +#: sphinx/builders/latex/__init__.py:213 sphinx/domains/std.py:501 #: sphinx/templates/latex/latex.tex_t:79 #: sphinx/themes/basic/genindex-single.html:30 #: sphinx/themes/basic/genindex-single.html:55 @@ -1041,28 +1041,28 @@ msgstr "" msgid "Index" msgstr "索引" -#: sphinx/builders/latex/__init__.py:214 sphinx/templates/latex/latex.tex_t:64 +#: sphinx/builders/latex/__init__.py:216 sphinx/templates/latex/latex.tex_t:64 msgid "Release" msgstr "發佈" -#: sphinx/builders/latex/__init__.py:222 sphinx/writers/latex.py:549 +#: sphinx/builders/latex/__init__.py:224 sphinx/writers/latex.py:549 #, python-format msgid "no Babel option known for language %r" msgstr "" -#: sphinx/builders/latex/__init__.py:361 +#: sphinx/builders/latex/__init__.py:363 msgid "copying TeX support files" msgstr "" -#: sphinx/builders/latex/__init__.py:382 +#: sphinx/builders/latex/__init__.py:384 msgid "copying TeX support files..." msgstr "" -#: sphinx/builders/latex/__init__.py:402 +#: sphinx/builders/latex/__init__.py:404 msgid "copying additional files" msgstr "" -#: sphinx/builders/latex/__init__.py:445 +#: sphinx/builders/latex/__init__.py:447 #, python-format msgid "Unknown configure key: latex_elements[%r]. ignored." msgstr "" @@ -1125,8 +1125,8 @@ msgstr "" msgid "job number should be a positive number" msgstr "" -#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:498 -#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:365 +#: sphinx/cmd/build.py:106 sphinx/cmd/quickstart.py:497 +#: sphinx/ext/apidoc.py:298 sphinx/ext/autosummary/generate.py:363 msgid "For more information, visit <http://sphinx-doc.org/>." msgstr "" @@ -1503,13 +1503,13 @@ msgstr "" msgid "Indicate which of the following Sphinx extensions should be enabled:" msgstr "" -#: sphinx/cmd/quickstart.py:354 +#: sphinx/cmd/quickstart.py:353 msgid "" "Note: imgmath and mathjax cannot be enabled at the same time. imgmath has " "been deselected." msgstr "" -#: sphinx/cmd/quickstart.py:359 +#: sphinx/cmd/quickstart.py:358 msgid "" "\n" "A Makefile and a Windows command file can be generated for you so that you\n" @@ -1517,29 +1517,29 @@ msgid "" "directly." msgstr "" -#: sphinx/cmd/quickstart.py:363 +#: sphinx/cmd/quickstart.py:362 msgid "Create Makefile? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:366 +#: sphinx/cmd/quickstart.py:365 msgid "Create Windows command file? (y/n)" msgstr "" -#: sphinx/cmd/quickstart.py:409 sphinx/ext/apidoc.py:74 +#: sphinx/cmd/quickstart.py:408 sphinx/ext/apidoc.py:74 #, python-format msgid "Creating file %s." msgstr "" -#: sphinx/cmd/quickstart.py:414 sphinx/ext/apidoc.py:72 +#: sphinx/cmd/quickstart.py:413 sphinx/ext/apidoc.py:72 #, python-format msgid "File %s already exists, skipping." msgstr "" -#: sphinx/cmd/quickstart.py:450 +#: sphinx/cmd/quickstart.py:449 msgid "Finished: An initial directory structure has been created." msgstr "" -#: sphinx/cmd/quickstart.py:451 +#: sphinx/cmd/quickstart.py:450 #, python-format msgid "" "\n" @@ -1547,26 +1547,26 @@ msgid "" "source files. " msgstr "" -#: sphinx/cmd/quickstart.py:453 +#: sphinx/cmd/quickstart.py:452 msgid "" "Use the Makefile to build the docs, like so:\n" " make builder\n" msgstr "" -#: sphinx/cmd/quickstart.py:456 +#: sphinx/cmd/quickstart.py:455 #, python-format msgid "" "Use the sphinx-build command to build the docs, like so:\n" " sphinx-build -b builder %s %s\n" msgstr "" -#: sphinx/cmd/quickstart.py:459 +#: sphinx/cmd/quickstart.py:458 msgid "" "where \"builder\" is one of the supported builders, e.g. html, latex or " "linkcheck.\n" msgstr "" -#: sphinx/cmd/quickstart.py:499 +#: sphinx/cmd/quickstart.py:498 msgid "" "\n" "Generate required files for a Sphinx project.\n" @@ -1576,131 +1576,131 @@ msgid "" "Makefile to be used with sphinx-build.\n" msgstr "" -#: sphinx/cmd/quickstart.py:509 +#: sphinx/cmd/quickstart.py:508 msgid "quiet mode" msgstr "" -#: sphinx/cmd/quickstart.py:514 +#: sphinx/cmd/quickstart.py:513 msgid "output path" msgstr "" -#: sphinx/cmd/quickstart.py:516 +#: sphinx/cmd/quickstart.py:515 msgid "Structure options" msgstr "" -#: sphinx/cmd/quickstart.py:518 +#: sphinx/cmd/quickstart.py:517 msgid "if specified, separate source and build dirs" msgstr "" -#: sphinx/cmd/quickstart.py:520 +#: sphinx/cmd/quickstart.py:519 msgid "replacement for dot in _templates etc." msgstr "" -#: sphinx/cmd/quickstart.py:522 +#: sphinx/cmd/quickstart.py:521 msgid "Project basic options" msgstr "" -#: sphinx/cmd/quickstart.py:524 +#: sphinx/cmd/quickstart.py:523 msgid "project name" msgstr "" -#: sphinx/cmd/quickstart.py:526 +#: sphinx/cmd/quickstart.py:525 msgid "author names" msgstr "" -#: sphinx/cmd/quickstart.py:528 +#: sphinx/cmd/quickstart.py:527 msgid "version of project" msgstr "" -#: sphinx/cmd/quickstart.py:530 +#: sphinx/cmd/quickstart.py:529 msgid "release of project" msgstr "" -#: sphinx/cmd/quickstart.py:532 +#: sphinx/cmd/quickstart.py:531 msgid "document language" msgstr "" -#: sphinx/cmd/quickstart.py:534 +#: sphinx/cmd/quickstart.py:533 msgid "source file suffix" msgstr "" -#: sphinx/cmd/quickstart.py:536 +#: sphinx/cmd/quickstart.py:535 msgid "master document name" msgstr "" -#: sphinx/cmd/quickstart.py:538 +#: sphinx/cmd/quickstart.py:537 msgid "use epub" msgstr "" -#: sphinx/cmd/quickstart.py:540 +#: sphinx/cmd/quickstart.py:539 msgid "Extension options" msgstr "" -#: sphinx/cmd/quickstart.py:544 sphinx/ext/apidoc.py:379 +#: sphinx/cmd/quickstart.py:543 sphinx/ext/apidoc.py:379 #, python-format msgid "enable %s extension" msgstr "" -#: sphinx/cmd/quickstart.py:546 sphinx/ext/apidoc.py:375 +#: sphinx/cmd/quickstart.py:545 sphinx/ext/apidoc.py:375 msgid "enable arbitrary extensions" msgstr "" -#: sphinx/cmd/quickstart.py:548 +#: sphinx/cmd/quickstart.py:547 msgid "Makefile and Batchfile creation" msgstr "" -#: sphinx/cmd/quickstart.py:550 +#: sphinx/cmd/quickstart.py:549 msgid "create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:552 +#: sphinx/cmd/quickstart.py:551 msgid "do not create makefile" msgstr "" -#: sphinx/cmd/quickstart.py:554 +#: sphinx/cmd/quickstart.py:553 msgid "create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:557 +#: sphinx/cmd/quickstart.py:556 msgid "do not create batchfile" msgstr "" -#: sphinx/cmd/quickstart.py:560 +#: sphinx/cmd/quickstart.py:559 msgid "use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:563 +#: sphinx/cmd/quickstart.py:562 msgid "do not use make-mode for Makefile/make.bat" msgstr "" -#: sphinx/cmd/quickstart.py:565 +#: sphinx/cmd/quickstart.py:564 msgid "Project templating" msgstr "" -#: sphinx/cmd/quickstart.py:568 +#: sphinx/cmd/quickstart.py:567 msgid "template directory for template files" msgstr "" -#: sphinx/cmd/quickstart.py:571 +#: sphinx/cmd/quickstart.py:570 msgid "define a template variable" msgstr "" -#: sphinx/cmd/quickstart.py:605 +#: sphinx/cmd/quickstart.py:604 msgid "\"quiet\" is specified, but any of \"project\" or \"author\" is not specified." msgstr "" -#: sphinx/cmd/quickstart.py:619 +#: sphinx/cmd/quickstart.py:618 msgid "" "Error: specified path is not a directory, or sphinx files already exist." msgstr "" -#: sphinx/cmd/quickstart.py:621 +#: sphinx/cmd/quickstart.py:620 msgid "" "sphinx-quickstart only generate into a empty directory. Please specify a new" " root path." msgstr "" -#: sphinx/cmd/quickstart.py:636 +#: sphinx/cmd/quickstart.py:635 #, python-format msgid "Invalid template variable: %s" msgstr "" @@ -1772,17 +1772,17 @@ msgstr "作者:" msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6371 +#: sphinx/domains/c.py:64 sphinx/domains/cpp.py:6445 #: sphinx/domains/python.py:210 sphinx/ext/napoleon/docstring.py:696 msgid "Parameters" msgstr "參數" -#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6380 -#: sphinx/domains/javascript.py:210 sphinx/domains/python.py:222 +#: sphinx/domains/c.py:67 sphinx/domains/cpp.py:6454 +#: sphinx/domains/javascript.py:209 sphinx/domains/python.py:222 msgid "Returns" msgstr "傳回" -#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:212 +#: sphinx/domains/c.py:69 sphinx/domains/javascript.py:211 #: sphinx/domains/python.py:224 msgid "Return type" msgstr "傳回型態" @@ -1812,12 +1812,12 @@ msgstr "%s (C 型態)" msgid "%s (C variable)" msgstr "%s (C 變數)" -#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:6956 -#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:741 +#: sphinx/domains/c.py:258 sphinx/domains/cpp.py:7029 +#: sphinx/domains/javascript.py:297 sphinx/domains/python.py:742 msgid "function" msgstr "函式" -#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:6957 +#: sphinx/domains/c.py:259 sphinx/domains/cpp.py:7030 msgid "member" msgstr "成員函數" @@ -1825,7 +1825,7 @@ msgstr "成員函數" msgid "macro" msgstr "巨集" -#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:6958 +#: sphinx/domains/c.py:261 sphinx/domains/cpp.py:7031 msgid "type" msgstr "類型" @@ -1848,106 +1848,106 @@ msgstr "%s 版更變" msgid "Deprecated since version %s" msgstr "%s 版後已棄用" -#: sphinx/domains/cpp.py:4297 +#: sphinx/domains/cpp.py:4323 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Declaration is '%s'." msgstr "" -#: sphinx/domains/cpp.py:6374 +#: sphinx/domains/cpp.py:6448 msgid "Template Parameters" msgstr "範本參數" -#: sphinx/domains/cpp.py:6377 sphinx/domains/javascript.py:207 +#: sphinx/domains/cpp.py:6451 sphinx/domains/javascript.py:206 msgid "Throws" msgstr "拋出" -#: sphinx/domains/cpp.py:6505 +#: sphinx/domains/cpp.py:6579 #, python-format msgid "%s (C++ %s)" msgstr "" -#: sphinx/domains/cpp.py:6954 sphinx/domains/javascript.py:300 -#: sphinx/domains/python.py:743 +#: sphinx/domains/cpp.py:7027 sphinx/domains/javascript.py:299 +#: sphinx/domains/python.py:744 msgid "class" msgstr "類別" -#: sphinx/domains/cpp.py:6955 +#: sphinx/domains/cpp.py:7028 msgid "union" msgstr "" -#: sphinx/domains/cpp.py:6959 +#: sphinx/domains/cpp.py:7032 msgid "concept" msgstr "concept" -#: sphinx/domains/cpp.py:6960 +#: sphinx/domains/cpp.py:7033 msgid "enum" msgstr "enum" -#: sphinx/domains/cpp.py:6961 +#: sphinx/domains/cpp.py:7034 msgid "enumerator" msgstr "enumerator" -#: sphinx/domains/cpp.py:7054 +#: sphinx/domains/cpp.py:7127 #, python-format msgid "" "Duplicate declaration, also defined in '%s'.\n" "Name of declaration is '%s'." msgstr "" -#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:429 +#: sphinx/domains/javascript.py:130 sphinx/domains/python.py:430 #, python-format msgid "%s() (built-in function)" msgstr "%s() (內建函式)" -#: sphinx/domains/javascript.py:132 sphinx/domains/python.py:494 +#: sphinx/domains/javascript.py:131 sphinx/domains/python.py:495 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 的方法)" -#: sphinx/domains/javascript.py:134 +#: sphinx/domains/javascript.py:133 #, python-format msgid "%s() (class)" msgstr "%s() (類別)" -#: sphinx/domains/javascript.py:136 +#: sphinx/domains/javascript.py:135 #, python-format msgid "%s (global variable or constant)" msgstr "%s (全域變數或常數)" -#: sphinx/domains/javascript.py:138 sphinx/domains/python.py:532 +#: sphinx/domains/javascript.py:137 sphinx/domains/python.py:533 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 的屬性)" -#: sphinx/domains/javascript.py:204 +#: sphinx/domains/javascript.py:203 msgid "Arguments" msgstr "引數" -#: sphinx/domains/javascript.py:265 sphinx/domains/python.py:609 +#: sphinx/domains/javascript.py:264 sphinx/domains/python.py:610 #, python-format msgid "%s (module)" msgstr "%s (模組)" -#: sphinx/domains/javascript.py:299 sphinx/domains/python.py:745 +#: sphinx/domains/javascript.py:298 sphinx/domains/python.py:746 msgid "method" msgstr "成員函式" -#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:742 +#: sphinx/domains/javascript.py:300 sphinx/domains/python.py:743 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:748 +#: sphinx/domains/javascript.py:301 sphinx/domains/python.py:749 msgid "attribute" msgstr "屬性" -#: sphinx/domains/javascript.py:303 sphinx/domains/python.py:49 -#: sphinx/domains/python.py:749 +#: sphinx/domains/javascript.py:302 sphinx/domains/python.py:49 +#: sphinx/domains/python.py:750 msgid "module" msgstr "模組" -#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2451 +#: sphinx/domains/math.py:101 sphinx/writers/latex.py:2459 #, python-format msgid "Invalid math_eqref_format: %r" msgstr "" @@ -1969,7 +1969,7 @@ msgstr "運算子" msgid "object" msgstr "物件" -#: sphinx/domains/python.py:53 sphinx/domains/python.py:744 +#: sphinx/domains/python.py:53 sphinx/domains/python.py:745 msgid "exception" msgstr "例外" @@ -1989,88 +1989,88 @@ msgstr "變數" msgid "Raises" msgstr "丟出" -#: sphinx/domains/python.py:430 sphinx/domains/python.py:488 -#: sphinx/domains/python.py:500 sphinx/domains/python.py:513 +#: sphinx/domains/python.py:431 sphinx/domains/python.py:489 +#: sphinx/domains/python.py:501 sphinx/domains/python.py:514 #, python-format msgid "%s() (in module %s)" msgstr "%s() (於 %s 模組中)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (built-in variable)" msgstr "%s (內建變數)" -#: sphinx/domains/python.py:434 sphinx/domains/python.py:526 +#: sphinx/domains/python.py:435 sphinx/domains/python.py:527 #, python-format msgid "%s (in module %s)" msgstr "%s (於 %s 模組中)" -#: sphinx/domains/python.py:454 +#: sphinx/domains/python.py:455 #, python-format msgid "%s (built-in class)" msgstr "%s (內建類別)" -#: sphinx/domains/python.py:455 +#: sphinx/domains/python.py:456 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的類別)" -#: sphinx/domains/python.py:492 +#: sphinx/domains/python.py:493 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s 的成員函數)" -#: sphinx/domains/python.py:504 +#: sphinx/domains/python.py:505 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s 的靜態成員)" -#: sphinx/domains/python.py:507 +#: sphinx/domains/python.py:508 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 的靜態成員)" -#: sphinx/domains/python.py:517 +#: sphinx/domains/python.py:518 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s 的類別成員)" -#: sphinx/domains/python.py:520 +#: sphinx/domains/python.py:521 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 的類別成員)" -#: sphinx/domains/python.py:530 +#: sphinx/domains/python.py:531 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s 的屬性)" -#: sphinx/domains/python.py:667 +#: sphinx/domains/python.py:668 msgid "Python Module Index" msgstr "Python 模組索引" -#: sphinx/domains/python.py:668 +#: sphinx/domains/python.py:669 msgid "modules" msgstr "模組" -#: sphinx/domains/python.py:719 +#: sphinx/domains/python.py:720 msgid "Deprecated" msgstr "已棄用" -#: sphinx/domains/python.py:746 +#: sphinx/domains/python.py:747 msgid "class method" msgstr "類別成員" -#: sphinx/domains/python.py:747 +#: sphinx/domains/python.py:748 msgid "static method" msgstr "靜態成員" -#: sphinx/domains/python.py:879 +#: sphinx/domains/python.py:880 #, python-format msgid "more than one target found for cross-reference %r: %s" msgstr "" -#: sphinx/domains/python.py:917 +#: sphinx/domains/python.py:918 msgid " (deprecated)" msgstr "(已棄用)" @@ -2146,7 +2146,7 @@ msgstr "搜尋頁面" msgid "duplicate citation %s, other instance in %s" msgstr "" -#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:61 +#: sphinx/domains/std.py:631 sphinx/ext/autosectionlabel.py:56 #, python-format msgid "duplicate label %s, other instance in %s" msgstr "" @@ -2206,21 +2206,21 @@ msgid "" "another doctree directory." msgstr "" -#: sphinx/environment/__init__.py:408 +#: sphinx/environment/__init__.py:404 #, python-format msgid "Failed to scan documents in %s: %r" msgstr "" -#: sphinx/environment/__init__.py:536 +#: sphinx/environment/__init__.py:532 #, python-format msgid "Domain %r is not registered" msgstr "" -#: sphinx/environment/__init__.py:621 +#: sphinx/environment/__init__.py:617 msgid "self referenced toctree found. Ignored." msgstr "" -#: sphinx/environment/__init__.py:662 +#: sphinx/environment/__init__.py:658 msgid "document isn't included in any toctree" msgstr "" @@ -2240,6 +2240,7 @@ msgid "unknown index entry type %r" msgstr "" #: sphinx/environment/adapters/indexentries.py:156 +#: sphinx/templates/latex/sphinxmessages.sty_t:11 msgid "Symbols" msgstr "符號" @@ -2265,22 +2266,22 @@ msgstr "" msgid "toctree contains reference to nonexisting document %r" msgstr "" -#: sphinx/environment/collectors/asset.py:91 +#: sphinx/environment/collectors/asset.py:90 #, python-format msgid "image file not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:107 +#: sphinx/environment/collectors/asset.py:106 #, python-format msgid "image file %s not readable: %s" msgstr "" -#: sphinx/environment/collectors/asset.py:135 +#: sphinx/environment/collectors/asset.py:134 #, python-format msgid "download file not readable: %s" msgstr "" -#: sphinx/environment/collectors/toctree.py:197 +#: sphinx/environment/collectors/toctree.py:196 #, python-format msgid "%s is already assigned section numbers (nested numbered toctree?)" msgstr "" @@ -2424,38 +2425,38 @@ msgstr "" msgid "module %s could not be imported: %s" msgstr "" -#: sphinx/ext/doctest.py:142 +#: sphinx/ext/doctest.py:132 #, python-format msgid "missing '+' or '-' in '%s' option." msgstr "" -#: sphinx/ext/doctest.py:147 +#: sphinx/ext/doctest.py:137 #, python-format msgid "'%s' is not a valid option." msgstr "" -#: sphinx/ext/doctest.py:161 +#: sphinx/ext/doctest.py:151 #, python-format msgid "'%s' is not a valid pyversion option" msgstr "" -#: sphinx/ext/doctest.py:230 +#: sphinx/ext/doctest.py:222 msgid "invalid TestCode type" msgstr "" -#: sphinx/ext/doctest.py:291 +#: 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:438 +#: sphinx/ext/doctest.py:446 #, python-format msgid "no code/output in %s block at %s:%s" msgstr "" -#: sphinx/ext/doctest.py:527 +#: sphinx/ext/doctest.py:535 #, python-format msgid "ignoring invalid doctest code: %r" msgstr "" @@ -2473,7 +2474,7 @@ msgstr "" msgid "Ignoring \"graphviz\" directive without content." msgstr "" -#: sphinx/ext/graphviz.py:252 +#: sphinx/ext/graphviz.py:250 #, python-format msgid "" "dot did not produce an output file:\n" @@ -2483,14 +2484,14 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:256 +#: sphinx/ext/graphviz.py:254 #, python-format msgid "" "dot command %r cannot be run (needed for graphviz output), check the " "graphviz_dot setting" msgstr "" -#: sphinx/ext/graphviz.py:263 +#: sphinx/ext/graphviz.py:261 #, python-format msgid "" "dot exited with error:\n" @@ -2500,23 +2501,23 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/graphviz.py:273 +#: sphinx/ext/graphviz.py:271 #, python-format msgid "graphviz_output_format must be one of 'png', 'svg', but is %r" msgstr "" -#: sphinx/ext/graphviz.py:277 sphinx/ext/graphviz.py:331 -#: sphinx/ext/graphviz.py:369 +#: sphinx/ext/graphviz.py:275 sphinx/ext/graphviz.py:329 +#: sphinx/ext/graphviz.py:367 #, python-format msgid "dot code %r: %s" msgstr "" -#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 +#: sphinx/ext/graphviz.py:382 sphinx/ext/graphviz.py:391 #, python-format msgid "[graph: %s]" msgstr "[圖:%s]" -#: sphinx/ext/graphviz.py:386 sphinx/ext/graphviz.py:395 +#: sphinx/ext/graphviz.py:384 sphinx/ext/graphviz.py:393 msgid "[graph]" msgstr "[圖]" @@ -2535,31 +2536,31 @@ msgid "" "%r" msgstr "" -#: sphinx/ext/imgmath.py:140 +#: sphinx/ext/imgmath.py:139 #, python-format msgid "" "LaTeX command %r cannot be run (needed for math display), check the " "imgmath_latex setting" msgstr "" -#: sphinx/ext/imgmath.py:155 +#: sphinx/ext/imgmath.py:154 #, python-format msgid "" "%s command %r cannot be run (needed for math display), check the imgmath_%s " "setting" msgstr "" -#: sphinx/ext/imgmath.py:290 +#: sphinx/ext/imgmath.py:289 #, python-format msgid "display latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:317 +#: sphinx/ext/imgmath.py:316 #, python-format msgid "inline latex %r: %s" msgstr "" -#: sphinx/ext/imgmath.py:324 sphinx/ext/mathjax.py:54 +#: sphinx/ext/imgmath.py:323 sphinx/ext/mathjax.py:54 msgid "Permalink to this equation" msgstr "本公式的永久連結" @@ -2579,26 +2580,26 @@ msgid "" "alternatives:" msgstr "" -#: sphinx/ext/intersphinx.py:237 +#: sphinx/ext/intersphinx.py:238 msgid "failed to reach any of the inventories with the following issues:" msgstr "" -#: sphinx/ext/intersphinx.py:312 +#: sphinx/ext/intersphinx.py:311 #, python-format msgid "(in %s v%s)" msgstr "(於 %s v%s)" -#: sphinx/ext/intersphinx.py:314 +#: sphinx/ext/intersphinx.py:313 #, python-format msgid "(in %s)" msgstr "" -#: sphinx/ext/intersphinx.py:348 +#: sphinx/ext/intersphinx.py:347 #, python-format msgid "intersphinx identifier %r is not string. Ignored" msgstr "" -#: sphinx/ext/intersphinx.py:361 +#: sphinx/ext/intersphinx.py:360 #, python-format msgid "Fail to read intersphinx_mapping[%s], Ignored: %r" msgstr "" @@ -2654,29 +2655,29 @@ msgstr "概要:模組原始碼" msgid "<h1>All modules for which code is available</h1>" msgstr "<h1>所有可得程式碼的模組</h1>" -#: sphinx/ext/autodoc/__init__.py:302 +#: sphinx/ext/autodoc/__init__.py:300 #, python-format msgid "invalid signature for auto%s (%r)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:402 +#: sphinx/ext/autodoc/__init__.py:400 #, python-format msgid "error while formatting arguments for %s: %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:514 +#: sphinx/ext/autodoc/__init__.py:512 #, python-format msgid "missing attribute %s in object %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:602 +#: sphinx/ext/autodoc/__init__.py:600 #, python-format msgid "" "autodoc: failed to determine %r to be documented.the following exception was raised:\n" "%s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:694 +#: sphinx/ext/autodoc/__init__.py:692 #, python-format msgid "" "don't know which module to import for autodocumenting %r (try placing a " @@ -2684,39 +2685,39 @@ msgid "" "explicit module name)" msgstr "" -#: sphinx/ext/autodoc/__init__.py:788 +#: sphinx/ext/autodoc/__init__.py:786 msgid "\"::\" in automodule name doesn't make sense" msgstr "" -#: sphinx/ext/autodoc/__init__.py:796 +#: sphinx/ext/autodoc/__init__.py:794 #, python-format msgid "signature arguments or return annotation given for automodule %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:829 +#: sphinx/ext/autodoc/__init__.py:827 #, python-format msgid "" "__all__ should be a list of strings, not %r (in module %s) -- ignoring " "__all__" msgstr "" -#: sphinx/ext/autodoc/__init__.py:844 +#: sphinx/ext/autodoc/__init__.py:842 #, python-format msgid "" "missing attribute mentioned in :members: or __all__: module %s, attribute %s" msgstr "" -#: sphinx/ext/autodoc/__init__.py:1128 +#: sphinx/ext/autodoc/__init__.py:1126 #, python-format msgid "Bases: %s" msgstr "基礎類別:%s" -#: sphinx/ext/autodoc/__init__.py:1185 +#: sphinx/ext/autodoc/__init__.py:1183 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` 的別名" -#: sphinx/ext/autodoc/__init__.py:1470 +#: sphinx/ext/autodoc/__init__.py:1468 #, python-format msgid "Ignoring invalid option in autodoc_default_flags: %r" msgstr "" @@ -2752,17 +2753,17 @@ msgid "" "contain .rst. Skipped." msgstr "" -#: sphinx/ext/autosummary/generate.py:102 +#: sphinx/ext/autosummary/generate.py:100 #, python-format msgid "[autosummary] generating autosummary for: %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:106 +#: sphinx/ext/autosummary/generate.py:104 #, python-format msgid "[autosummary] writing to %s" msgstr "" -#: sphinx/ext/autosummary/generate.py:366 +#: sphinx/ext/autosummary/generate.py:364 msgid "" "\n" "Generate ReStructuredText using autosummary directives.\n" @@ -2777,25 +2778,25 @@ msgid "" " pydoc sphinx.ext.autosummary\n" msgstr "" -#: sphinx/ext/autosummary/generate.py:383 +#: sphinx/ext/autosummary/generate.py:381 msgid "source files to generate rST files for" msgstr "" -#: sphinx/ext/autosummary/generate.py:387 +#: sphinx/ext/autosummary/generate.py:385 msgid "directory to place all output in" msgstr "" -#: sphinx/ext/autosummary/generate.py:390 +#: sphinx/ext/autosummary/generate.py:388 #, python-format msgid "default suffix for files (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:394 +#: sphinx/ext/autosummary/generate.py:392 #, python-format msgid "custom template directory (default: %(default)s)" msgstr "" -#: sphinx/ext/autosummary/generate.py:398 +#: sphinx/ext/autosummary/generate.py:396 #, python-format msgid "document imported members (default: %(default)s)" msgstr "" @@ -2873,6 +2874,7 @@ msgid "Warning" msgstr "警告" #: sphinx/templates/latex/longtable.tex_t:23 +#: sphinx/templates/latex/sphinxmessages.sty_t:8 msgid "continued from previous page" msgstr "繼續上一頁" @@ -2880,13 +2882,29 @@ msgstr "繼續上一頁" msgid "Continued on next page" msgstr "繼續下一頁" +#: 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:46 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:51 sphinx/themes/basic/layout.html:153 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:26 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:21 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "搜尋" @@ -3023,13 +3041,13 @@ msgstr "下個主題" msgid "next chapter" msgstr "下一章" -#: sphinx/themes/basic/search.html:30 +#: sphinx/themes/basic/search.html:25 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "請啟用 Javascript 以開啟搜尋功能。" -#: sphinx/themes/basic/search.html:35 +#: sphinx/themes/basic/search.html:30 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -3037,20 +3055,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "你可以從這裡搜尋文件。輸入搜尋詞至底下的文字框並點擊「搜尋」。注意搜尋功能會自動尋找滿足所有詞的結果。只滿足少部份搜尋詞的頁面將不予顯示在結果清單中。" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:37 #: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "搜尋" -#: sphinx/themes/basic/search.html:46 +#: sphinx/themes/basic/search.html:41 #: sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js:295 +#: sphinx/themes/basic/static/searchtools.js:285 msgid "Search Results" msgstr "搜尋結果" -#: sphinx/themes/basic/search.html:48 +#: sphinx/themes/basic/search.html:43 #: sphinx/themes/basic/searchresults.html:23 -#: sphinx/themes/basic/static/searchtools.js:297 +#: sphinx/themes/basic/static/searchtools.js:287 msgid "" "Your search did not match any documents. Please make sure that all words are" " spelled correctly and that you've selected enough categories." @@ -3108,20 +3126,20 @@ msgstr "本定義的永久連結" msgid "Hide Search Matches" msgstr "隱藏符合搜尋" -#: sphinx/themes/basic/static/searchtools.js:131 +#: sphinx/themes/basic/static/searchtools.js:121 msgid "Searching" msgstr "搜尋中" -#: sphinx/themes/basic/static/searchtools.js:136 +#: sphinx/themes/basic/static/searchtools.js:126 msgid "Preparing search..." msgstr "準備搜尋中…" -#: sphinx/themes/basic/static/searchtools.js:299 +#: sphinx/themes/basic/static/searchtools.js:289 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "搜尋完成,共找到 %s 頁面滿足搜尋條件。" -#: sphinx/themes/basic/static/searchtools.js:352 +#: sphinx/themes/basic/static/searchtools.js:342 msgid ", in " msgstr " 於 " @@ -3138,18 +3156,18 @@ msgstr "收合側邊欄" msgid "Contents" msgstr "內容" -#: sphinx/transforms/__init__.py:259 +#: sphinx/transforms/__init__.py:261 #, python-format msgid "" "4 column based index found. It might be a bug of extensions you use: %r" msgstr "" -#: sphinx/transforms/__init__.py:301 +#: sphinx/transforms/__init__.py:303 #, python-format msgid "Footnote [%s] is not referenced." msgstr "" -#: sphinx/transforms/__init__.py:307 +#: sphinx/transforms/__init__.py:309 msgid "Footnote [#] is not referenced." msgstr "" @@ -3220,7 +3238,7 @@ msgstr "" msgid "failed" msgstr "" -#: sphinx/util/docutils.py:321 +#: sphinx/util/docutils.py:320 msgid "when adding directive classes, no additional arguments may be given" msgstr "" @@ -3281,15 +3299,15 @@ msgstr "本表格的永久連結" msgid "Permalink to this code" msgstr "本原始碼的永久連結" -#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 +#: sphinx/writers/html.py:512 sphinx/writers/html5.py:458 msgid "Permalink to this image" msgstr "本圖片的永久連結" -#: sphinx/writers/html.py:516 sphinx/writers/html5.py:462 +#: sphinx/writers/html.py:514 sphinx/writers/html5.py:460 msgid "Permalink to this toctree" msgstr "本目錄的永久連結" -#: sphinx/writers/html.py:674 sphinx/writers/html5.py:608 +#: sphinx/writers/html.py:672 sphinx/writers/html5.py:606 msgid "Could not obtain image size. :scale: option is ignored." msgstr "" @@ -3326,12 +3344,12 @@ msgstr "" msgid "dimension unit %s is invalid. Ignored." msgstr "" -#: sphinx/writers/latex.py:1843 +#: sphinx/writers/latex.py:1847 #, python-format msgid "unknown index entry type %s found" msgstr "" -#: sphinx/writers/latex.py:2552 +#: sphinx/writers/latex.py:2560 #, python-format msgid "Unknown configure key: latex_elements[%r] is ignored." msgstr "未知設定鍵:latex_elements[%r] 將被忽略。" @@ -3349,12 +3367,12 @@ msgstr "[圖片]" msgid "caption not inside a figure." msgstr "" -#: sphinx/writers/texinfo.py:1421 +#: sphinx/writers/texinfo.py:1422 #, python-format msgid "unimplemented node type: %r" msgstr "" -#: sphinx/writers/texinfo.py:1426 +#: sphinx/writers/texinfo.py:1427 #, python-format msgid "unknown node type: %r" msgstr "" From 02a916a1a6f5c98adccd815bfd02c46014b0d123 Mon Sep 17 00:00:00 2001 From: George Feng <von198@gmail.com> Date: Thu, 28 Mar 2019 23:17:32 -0500 Subject: [PATCH 116/121] Update Example --- EXAMPLES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/EXAMPLES b/EXAMPLES index 4920967d9..24d480e8b 100644 --- a/EXAMPLES +++ b/EXAMPLES @@ -206,6 +206,7 @@ Documentation using sphinx_rtd_theme * `Jupyter Notebook <https://jupyter-notebook.readthedocs.io/>`__ * `Lasagne <https://lasagne.readthedocs.io/>`__ * `latexindent.pl <https://latexindentpl.readthedocs.io/>`__ +* `Learning Apache Spark with Python <https://runawayhorse001.github.io/LearningApacheSpark>`__ * `Linguistica <https://linguistica-uchicago.github.io/lxa5/>`__ * `Linux kernel <https://www.kernel.org/doc/html/latest/index.html>`__ * `MathJax <https://docs.mathjax.org/>`__ @@ -252,6 +253,7 @@ Documentation using sphinx_rtd_theme * `Sphinx AutoAPI <https://sphinx-autoapi.readthedocs.io/>`__ * `sphinx-argparse <https://sphinx-argparse.readthedocs.io/>`__ * `Sphinx-Gallery <https://sphinx-gallery.readthedocs.io/>`__ (customized) +* `Sphinx with Github Webpages<https://runawayhorse001.github.io/SphinxGithub>`__ * `SpotBugs <https://spotbugs.readthedocs.io/>`__ * `StarUML <https://docs.staruml.io/>`__ * `Sublime Text Unofficial Documentation <http://docs.sublimetext.info/>`__ From c1a254f2491436ac304f1f169aa488438abe4193 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Fri, 29 Mar 2019 22:24:02 +0900 Subject: [PATCH 117/121] Bump version --- CHANGES | 21 +++++++++++++++++++++ sphinx/__init__.py | 6 +++--- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/CHANGES b/CHANGES index 1acf3ba1c..934c553e3 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,24 @@ +Release 3.0.0 (in development) +============================== + +Dependencies +------------ + +Incompatible changes +-------------------- + +Deprecated +---------- + +Features added +-------------- + +Bugs fixed +---------- + +Testing +-------- + Release 2.1.0 (in development) ============================== diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 0a6f26584..1c8338643 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -32,8 +32,8 @@ if 'PYTHONWARNINGS' not in os.environ: warnings.filterwarnings('ignore', "'U' mode is deprecated", DeprecationWarning, module='docutils.io') -__version__ = '2.1.0+' -__released__ = '2.1.0' # used when Sphinx builds its own docs +__version__ = '3.0.0+' +__released__ = '3.0.0' # used when Sphinx builds its own docs #: Version info for better programmatic use. #: @@ -43,7 +43,7 @@ __released__ = '2.1.0' # used when Sphinx builds its own docs #: #: .. versionadded:: 1.2 #: Before version 1.2, check the string ``sphinx.__version__``. -version_info = (2, 1, 0, 'beta', 0) +version_info = (3, 0, 0, 'beta', 0) package_dir = path.abspath(path.dirname(__file__)) From 4dda1e2d5b3aaf93c6be806574585720f8e2c03f Mon Sep 17 00:00:00 2001 From: George Feng <von198@gmail.com> Date: Fri, 29 Mar 2019 11:32:42 -0500 Subject: [PATCH 118/121] Update EXAMPLES White space added before < --- EXAMPLES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EXAMPLES b/EXAMPLES index 24d480e8b..989c0f969 100644 --- a/EXAMPLES +++ b/EXAMPLES @@ -253,7 +253,7 @@ Documentation using sphinx_rtd_theme * `Sphinx AutoAPI <https://sphinx-autoapi.readthedocs.io/>`__ * `sphinx-argparse <https://sphinx-argparse.readthedocs.io/>`__ * `Sphinx-Gallery <https://sphinx-gallery.readthedocs.io/>`__ (customized) -* `Sphinx with Github Webpages<https://runawayhorse001.github.io/SphinxGithub>`__ +* `Sphinx with Github Webpages <https://runawayhorse001.github.io/SphinxGithub>`__ * `SpotBugs <https://spotbugs.readthedocs.io/>`__ * `StarUML <https://docs.staruml.io/>`__ * `Sublime Text Unofficial Documentation <http://docs.sublimetext.info/>`__ From 61098a0ae2e696a804459d36bd74ca57db76eda5 Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Fri, 29 Mar 2019 23:52:32 +0900 Subject: [PATCH 119/121] Drop features and APIs deprecated in 1.8 --- CHANGES | 2 + doc/extdev/appapi.rst | 2 - sphinx/addnodes.py | 56 +------- sphinx/application.py | 97 ++------------ sphinx/builders/html.py | 49 +------ sphinx/builders/latex/util.py | 11 -- sphinx/cmdline.py | 49 ------- sphinx/config.py | 37 +----- sphinx/deprecation.py | 6 +- sphinx/domains/changeset.py | 9 -- sphinx/domains/math.py | 2 - sphinx/domains/python.py | 10 +- sphinx/domains/std.py | 13 -- sphinx/environment/__init__.py | 135 +------------------- sphinx/ext/autodoc/__init__.py | 39 +----- sphinx/ext/autodoc/importer.py | 3 +- sphinx/ext/autodoc/mock.py | 52 +------- sphinx/ext/mathbase.py | 84 ------------ sphinx/ext/viewcode.py | 10 -- sphinx/highlighting.py | 33 +---- sphinx/io.py | 102 --------------- sphinx/locale/__init__.py | 29 ----- sphinx/make_mode.py | 38 ------ sphinx/registry.py | 66 +--------- sphinx/search/ja.py | 16 +-- sphinx/transforms/post_transforms/compat.py | 90 ------------- sphinx/util/__init__.py | 37 +----- sphinx/util/compat.py | 16 +-- sphinx/util/docutils.py | 26 +--- sphinx/util/i18n.py | 12 +- sphinx/util/images.py | 14 +- sphinx/util/inspect.py | 22 ---- sphinx/util/osutil.py | 25 +--- sphinx/versioning.py | 11 -- sphinx/writers/html.py | 33 +---- sphinx/writers/html5.py | 33 +---- sphinx/writers/latex.py | 130 +------------------ sphinx/writers/texinfo.py | 12 -- sphinx/writers/text.py | 12 -- tests/roots/test-add_source_parser/conf.py | 11 +- tests/roots/test-ext-math-compat/conf.py | 9 +- tests/test_application.py | 9 +- tests/test_autodoc.py | 26 +--- tests/test_ext_autodoc_mock.py | 2 +- tests/test_util_images.py | 38 ++---- 45 files changed, 73 insertions(+), 1445 deletions(-) delete mode 100644 sphinx/cmdline.py delete mode 100644 sphinx/ext/mathbase.py delete mode 100644 sphinx/make_mode.py delete mode 100644 sphinx/transforms/post_transforms/compat.py diff --git a/CHANGES b/CHANGES index 934c553e3..33cc8ccf7 100644 --- a/CHANGES +++ b/CHANGES @@ -7,6 +7,8 @@ Dependencies Incompatible changes -------------------- +* Drop features and APIs deprecated in 1.8.x + Deprecated ---------- diff --git a/doc/extdev/appapi.rst b/doc/extdev/appapi.rst index fe64628a4..4cb8501be 100644 --- a/doc/extdev/appapi.rst +++ b/doc/extdev/appapi.rst @@ -54,8 +54,6 @@ package. .. automethod:: Sphinx.add_domain(domain) -.. automethod:: Sphinx.override_domain(domain) - .. method:: Sphinx.add_directive_to_domain(domain, name, func, content, arguments, \*\*options) .. automethod:: Sphinx.add_directive_to_domain(domain, name, directiveclass) diff --git a/sphinx/addnodes.py b/sphinx/addnodes.py index ef3bf3f9e..4180625ca 100644 --- a/sphinx/addnodes.py +++ b/sphinx/addnodes.py @@ -12,7 +12,7 @@ import warnings from docutils import nodes -from sphinx.deprecation import RemovedInSphinx30Warning, RemovedInSphinx40Warning +from sphinx.deprecation import RemovedInSphinx40Warning if False: # For type annotation @@ -188,59 +188,6 @@ class production(nodes.Part, nodes.Inline, nodes.FixedTextElement): """Node for a single grammar production rule.""" -# math nodes - - -class math(nodes.math): - """Node for inline equations. - - .. warning:: This node is provided to keep compatibility only. - It will be removed in nearly future. Don't use this from your extension. - - .. deprecated:: 1.8 - Use ``docutils.nodes.math`` instead. - """ - - def __getitem__(self, key): - """Special accessor for supporting ``node['latex']``.""" - if key == 'latex' and 'latex' not in self.attributes: - warnings.warn("math node for Sphinx was replaced by docutils'. " - "Therefore please use ``node.astext()`` to get an equation instead.", - RemovedInSphinx30Warning, stacklevel=2) - return self.astext() - else: - return super().__getitem__(key) - - -class math_block(nodes.math_block): - """Node for block level equations. - - .. warning:: This node is provided to keep compatibility only. - It will be removed in nearly future. Don't use this from your extension. - - .. deprecated:: 1.8 - """ - - def __getitem__(self, key): - if key == 'latex' and 'latex' not in self.attributes: - warnings.warn("displaymath node for Sphinx was replaced by docutils'. " - "Therefore please use ``node.astext()`` to get an equation instead.", - RemovedInSphinx30Warning, stacklevel=2) - return self.astext() - else: - return super().__getitem__(key) - - -class displaymath(math_block): - """Node for block level equations. - - .. warning:: This node is provided to keep compatibility only. - It will be removed in nearly future. Don't use this from your extension. - - .. deprecated:: 1.8 - """ - - # other directive-level nodes class index(nodes.Invisible, nodes.Inline, nodes.TextElement): @@ -379,7 +326,6 @@ def setup(app): app.add_node(seealso) app.add_node(productionlist) app.add_node(production) - app.add_node(displaymath) app.add_node(index) app.add_node(centered) app.add_node(acks) diff --git a/sphinx/application.py b/sphinx/application.py index aee9f4410..516b7be58 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -15,7 +15,6 @@ import pickle import sys import warnings from collections import deque -from inspect import isclass from io import StringIO from os import path @@ -25,9 +24,7 @@ import sphinx from sphinx import package_dir, locale from sphinx.config import Config from sphinx.config import CONFIG_FILENAME # NOQA # for compatibility (RemovedInSphinx30) -from sphinx.deprecation import ( - RemovedInSphinx30Warning, RemovedInSphinx40Warning -) +from sphinx.deprecation import RemovedInSphinx40Warning from sphinx.environment import BuildEnvironment from sphinx.errors import ApplicationError, ConfigError, VersionRequirementError from sphinx.events import EventManager @@ -35,11 +32,10 @@ from sphinx.locale import __ from sphinx.project import Project from sphinx.registry import SphinxComponentRegistry from sphinx.util import docutils -from sphinx.util import import_object, progress_message from sphinx.util import logging +from sphinx.util import progress_message from sphinx.util.build_phase import BuildPhase from sphinx.util.console import bold # type: ignore -from sphinx.util.docutils import directive_helper from sphinx.util.i18n import CatalogRepository from sphinx.util.logging import prefixed_warnings from sphinx.util.osutil import abspath, ensuredir, relpath @@ -98,7 +94,6 @@ builtin_extensions = ( 'sphinx.transforms.post_transforms', 'sphinx.transforms.post_transforms.code', 'sphinx.transforms.post_transforms.images', - 'sphinx.transforms.post_transforms.compat', 'sphinx.util.compat', 'sphinx.versioning', # collectors should be loaded by specific order @@ -397,18 +392,6 @@ class Sphinx: if version > sphinx.__display_version__[:3]: raise VersionRequirementError(version) - def import_object(self, objname, source=None): - # type: (str, str) -> Any - """Import an object from a ``module.name`` string. - - .. deprecated:: 1.8 - Use ``sphinx.util.import_object()`` instead. - """ - warnings.warn('app.import_object() is deprecated. ' - 'Use sphinx.util.add_object_type() instead.', - RemovedInSphinx30Warning, stacklevel=2) - return import_object(objname, source=None) - # event interface def connect(self, event, callback): # type: (str, Callable) -> int @@ -593,36 +576,14 @@ class Sphinx: self.registry.add_enumerable_node(node, figtype, title_getter, override=override) self.add_node(node, override=override, **kwds) - @property - def enumerable_nodes(self): - # type: () -> Dict[Type[nodes.Node], Tuple[str, TitleGetter]] - warnings.warn('app.enumerable_nodes() is deprecated. ' - 'Use app.get_domain("std").enumerable_nodes instead.', - RemovedInSphinx30Warning, stacklevel=2) - return self.registry.enumerable_nodes - - def add_directive(self, name, obj, content=None, arguments=None, override=False, **options): # NOQA - # type: (str, Any, bool, Tuple[int, int, bool], bool, Any) -> None + def add_directive(self, name, cls, override=False): + # type: (str, Type[Directive], bool) -> None """Register a Docutils directive. - *name* must be the prospective directive name. There are two possible - ways to write a directive: - - - In the docutils 0.4 style, *obj* is the directive function. - *content*, *arguments* and *options* are set as attributes on the - function and determine whether the directive has content, arguments - and options, respectively. **This style is deprecated.** - - - In the docutils 0.5 style, *obj* is the directive class. - It must already have attributes named *has_content*, - *required_arguments*, *optional_arguments*, - *final_argument_whitespace* and *option_spec* that correspond to the - options for the function way. See `the Docutils docs - <http://docutils.sourceforge.net/docs/howto/rst-directives.html>`_ - for details. - - The directive class must inherit from the class - ``docutils.parsers.rst.Directive``. + *name* must be the prospective directive name. *cls* is a directive + class which inherits ``docutils.parsers.rst.Directive``. For more + details, see `the Docutils docs + <http://docutils.sourceforge.net/docs/howto/rst-directives.html>`_ . For example, the (already existing) :rst:dir:`literalinclude` directive would be added like this: @@ -653,17 +614,12 @@ class Sphinx: .. versionchanged:: 1.8 Add *override* keyword. """ - logger.debug('[app] adding directive: %r', - (name, obj, content, arguments, options)) + logger.debug('[app] adding directive: %r', (name, cls)) if not override and docutils.is_directive_registered(name): logger.warning(__('directive %r is already registered, it will be overridden'), name, type='app', subtype='add_directive') - if not isclass(obj) or not issubclass(obj, Directive): - directive = directive_helper(obj, content, arguments, **options) - docutils.register_directive(name, directive) - else: - docutils.register_directive(name, obj) + docutils.register_directive(name, cls) def add_role(self, name, role, override=False): # type: (str, Any, bool) -> None @@ -716,26 +672,8 @@ class Sphinx: """ self.registry.add_domain(domain, override=override) - def override_domain(self, domain): - # type: (Type[Domain]) -> None - """Override a registered domain. - - Make the given *domain* class known to Sphinx, assuming that there is - already a domain with its ``.name``. The new domain must be a subclass - of the existing one. - - .. versionadded:: 1.0 - .. deprecated:: 1.8 - Integrated to :meth:`add_domain`. - """ - warnings.warn('app.override_domain() is deprecated. ' - 'Use app.add_domain() with override option instead.', - RemovedInSphinx30Warning, stacklevel=2) - self.registry.add_domain(domain, override=True) - - def add_directive_to_domain(self, domain, name, obj, has_content=None, argument_spec=None, - override=False, **option_spec): - # type: (str, str, Any, bool, Any, bool, Any) -> None + def add_directive_to_domain(self, domain, name, cls, override=False): + # type: (str, str, Type[Directive], bool) -> None """Register a Docutils directive in a domain. Like :meth:`add_directive`, but the directive is added to the domain @@ -745,9 +683,7 @@ class Sphinx: .. versionchanged:: 1.8 Add *override* keyword. """ - self.registry.add_directive_to_domain(domain, name, obj, - has_content, argument_spec, override=override, - **option_spec) + self.registry.add_directive_to_domain(domain, name, cls, override=override) def add_role_to_domain(self, domain, name, role, override=False): # type: (str, str, Union[RoleFunction, XRefRole], bool) -> None @@ -1205,13 +1141,6 @@ class Sphinx: return True - @property - def _setting_up_extension(self): - # type: () -> List[str] - warnings.warn('app._setting_up_extension is deprecated.', - RemovedInSphinx30Warning) - return ['?'] - class TemplateBridge: """ diff --git a/sphinx/builders/html.py b/sphinx/builders/html.py index 3f167d0d3..5621f9a75 100644 --- a/sphinx/builders/html.py +++ b/sphinx/builders/html.py @@ -24,9 +24,7 @@ from docutils.utils import relative_path from sphinx import package_dir, __display_version__ from sphinx.builders import Builder -from sphinx.deprecation import ( - RemovedInSphinx30Warning, RemovedInSphinx40Warning, deprecated_alias -) +from sphinx.deprecation import RemovedInSphinx40Warning, deprecated_alias from sphinx.environment.adapters.asset import ImageAdapter from sphinx.environment.adapters.indexentries import IndexEntries from sphinx.environment.adapters.toctree import TocTree @@ -105,39 +103,6 @@ class Stylesheet(str): return self -class JSContainer(list): - """The container for JavaScript scripts.""" - def insert(self, index, obj): - # type: (int, str) -> None - warnings.warn('To modify script_files in the theme is deprecated. ' - 'Please insert a <script> tag directly in your theme instead.', - RemovedInSphinx30Warning, stacklevel=3) - super().insert(index, obj) - - def extend(self, other): # type: ignore - # type: (List[str]) -> None - warnings.warn('To modify script_files in the theme is deprecated. ' - 'Please insert a <script> tag directly in your theme instead.', - RemovedInSphinx30Warning, stacklevel=3) - for item in other: - self.append(item) - - def __iadd__(self, other): # type: ignore - # type: (List[str]) -> JSContainer - warnings.warn('To modify script_files in the theme is deprecated. ' - 'Please insert a <script> tag directly in your theme instead.', - RemovedInSphinx30Warning, stacklevel=3) - for item in other: - self.append(item) - return self - - def __add__(self, other): - # type: (List[str]) -> JSContainer - ret = JSContainer(self) - ret += other - return ret - - class JavaScript(str): """A metadata of javascript file. @@ -247,7 +212,7 @@ class StandaloneHTMLBuilder(Builder): self.css_files = [] # type: List[Dict[str, str]] # JS files - self.script_files = JSContainer() # type: List[JavaScript] + self.script_files = [] # type: List[JavaScript] def init(self): # type: () -> None @@ -1068,16 +1033,6 @@ class StandaloneHTMLBuilder(Builder): return False ctx['hasdoc'] = hasdoc - def warn(*args, **kwargs): - # type: (Any, Any) -> str - """Simple warn() wrapper for themes.""" - warnings.warn('The template function warn() was deprecated. ' - 'Use warning() instead.', - RemovedInSphinx30Warning, stacklevel=2) - logger.warning(*args, **kwargs) - return '' # return empty string - ctx['warn'] = warn - ctx['toctree'] = lambda **kw: self._get_local_toctree(pagename, **kw) self.add_sidebars(pagename, ctx) ctx.update(addctx) diff --git a/sphinx/builders/latex/util.py b/sphinx/builders/latex/util.py index 156ea89ad..1765cb0ce 100644 --- a/sphinx/builders/latex/util.py +++ b/sphinx/builders/latex/util.py @@ -8,12 +8,8 @@ :license: BSD, see LICENSE for details. """ -import warnings - from docutils.writers.latex2e import Babel -from sphinx.deprecation import RemovedInSphinx30Warning - class ExtBabel(Babel): cyrillic_languages = ('bulgarian', 'kazakh', 'mongolian', 'russian', 'ukrainian') @@ -25,13 +21,6 @@ class ExtBabel(Babel): self.supported = True super().__init__(language_code or '') - def get_shorthandoff(self): - # type: () -> str - warnings.warn('ExtBabel.get_shorthandoff() is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - from sphinx.writers.latex import SHORTHANDOFF - return SHORTHANDOFF - def uses_cyrillic(self): # type: () -> bool return self.language in self.cyrillic_languages diff --git a/sphinx/cmdline.py b/sphinx/cmdline.py deleted file mode 100644 index 5247eb157..000000000 --- a/sphinx/cmdline.py +++ /dev/null @@ -1,49 +0,0 @@ -""" - sphinx.cmdline - ~~~~~~~~~~~~~~ - - sphinx-build command-line handling. - - :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. - :license: BSD, see LICENSE for details. -""" - -import sys -import warnings - -from sphinx.cmd import build -from sphinx.deprecation import RemovedInSphinx30Warning - -if False: - # For type annotation - import argparse # NOQA - from typing import Any, IO, List, Union # NOQA - from sphinx.application import Sphinx # NOQA - - -def handle_exception(app, args, exception, stderr=sys.stderr): - # type: (Sphinx, Any, Union[Exception, KeyboardInterrupt], IO) -> None - warnings.warn('sphinx.cmdline module is deprecated. Use sphinx.cmd.build instead.', - RemovedInSphinx30Warning, stacklevel=2) - build.handle_exception(app, args, exception, stderr) - - -def jobs_argument(value): - # type: (str) -> int - warnings.warn('sphinx.cmdline module is deprecated. Use sphinx.cmd.build instead.', - RemovedInSphinx30Warning, stacklevel=2) - return build.jobs_argument(value) - - -def get_parser(): - # type: () -> argparse.ArgumentParser - warnings.warn('sphinx.cmdline module is deprecated. Use sphinx.cmd.build instead.', - RemovedInSphinx30Warning, stacklevel=2) - return build.get_parser() - - -def main(argv=sys.argv[1:]): - # type: (List[str]) -> int - warnings.warn('sphinx.cmdline module is deprecated. Use sphinx.cmd.build instead.', - RemovedInSphinx30Warning, stacklevel=2) - return build.main(argv) diff --git a/sphinx/config.py b/sphinx/config.py index 5ba2c2a3d..06718eb2b 100644 --- a/sphinx/config.py +++ b/sphinx/config.py @@ -16,7 +16,7 @@ from collections import OrderedDict from os import path, getenv from typing import Any, NamedTuple, Union -from sphinx.deprecation import RemovedInSphinx30Warning, RemovedInSphinx40Warning +from sphinx.deprecation import RemovedInSphinx40Warning from sphinx.errors import ConfigError, ExtensionError from sphinx.locale import _, __ from sphinx.util import logging @@ -155,27 +155,8 @@ class Config: 'env', []), } # type: Dict[str, Tuple] - def __init__(self, *args): - # type: (Any) -> None - if len(args) == 4: - # old style arguments: (dirname, filename, overrides, tags) - warnings.warn('The argument of Config() class has been changed. ' - 'Use Config.read() to read configuration from conf.py.', - RemovedInSphinx30Warning, stacklevel=2) - dirname, filename, overrides, tags = args - if dirname is None: - config = {} # type: Dict[str, Any] - else: - config = eval_config_file(path.join(dirname, filename), tags) - else: - # new style arguments: (config={}, overrides={}) - if len(args) == 0: - config, overrides = {}, {} - elif len(args) == 1: - config, overrides = args[0], {} - else: - config, overrides = args[:2] - + def __init__(self, config={}, overrides={}): + # type: (Dict[str, Any], Dict[str, Any]) -> None self.overrides = overrides self.values = Config.config_values.copy() self._raw_config = config @@ -196,18 +177,6 @@ class Config: namespace = eval_config_file(filename, tags) return cls(namespace, overrides or {}) - def check_types(self): - # type: () -> None - warnings.warn('Config.check_types() is deprecated. Use check_confval_types() instead.', - RemovedInSphinx30Warning, stacklevel=2) - check_confval_types(None, self) - - def check_unicode(self): - # type: () -> None - warnings.warn('Config.check_unicode() is deprecated. Use check_unicode() instead.', - RemovedInSphinx30Warning, stacklevel=2) - check_unicode(self) - def convert_overrides(self, name, value): # type: (str, Any) -> Any if not isinstance(value, str): diff --git a/sphinx/deprecation.py b/sphinx/deprecation.py index 6cdd22ec1..1169280d0 100644 --- a/sphinx/deprecation.py +++ b/sphinx/deprecation.py @@ -17,15 +17,11 @@ if False: from typing import Any, Dict, Type # NOQA -class RemovedInSphinx30Warning(PendingDeprecationWarning): - pass - - class RemovedInSphinx40Warning(PendingDeprecationWarning): pass -RemovedInNextVersionWarning = RemovedInSphinx30Warning +RemovedInNextVersionWarning = RemovedInSphinx40Warning def deprecated_alias(modname, objects, warning): diff --git a/sphinx/domains/changeset.py b/sphinx/domains/changeset.py index aeea645c1..d731fe183 100644 --- a/sphinx/domains/changeset.py +++ b/sphinx/domains/changeset.py @@ -14,8 +14,6 @@ from typing import cast from docutils import nodes from sphinx import addnodes -from sphinx import locale -from sphinx.deprecation import DeprecatedDict, RemovedInSphinx30Warning from sphinx.domains import Domain from sphinx.locale import _ from sphinx.util.docutils import SphinxDirective @@ -40,13 +38,6 @@ versionlabel_classes = { 'deprecated': 'deprecated', } -locale.versionlabels = DeprecatedDict( - versionlabels, - 'sphinx.locale.versionlabels is deprecated. ' - 'Please use sphinx.domains.changeset.versionlabels instead.', - RemovedInSphinx30Warning -) - # TODO: move to typing.NamedTuple after dropping py35 support (see #5958) ChangeSet = namedtuple('ChangeSet', diff --git a/sphinx/domains/math.py b/sphinx/domains/math.py index bc0ef8328..be5838794 100644 --- a/sphinx/domains/math.py +++ b/sphinx/domains/math.py @@ -11,7 +11,6 @@ from docutils import nodes from docutils.nodes import make_id -from sphinx.addnodes import math_block as displaymath from sphinx.domains import Domain from sphinx.locale import __ from sphinx.roles import XRefRole @@ -49,7 +48,6 @@ class MathDomain(Domain): 'eq': 'equation not found: %(target)s', } enumerable_nodes = { # node_class -> (figtype, title_getter) - displaymath: ('displaymath', None), nodes.math_block: ('displaymath', None), } roles = { diff --git a/sphinx/domains/python.py b/sphinx/domains/python.py index ea71aa976..2203ee6e3 100644 --- a/sphinx/domains/python.py +++ b/sphinx/domains/python.py @@ -13,8 +13,7 @@ import re from docutils import nodes from docutils.parsers.rst import directives -from sphinx import addnodes, locale -from sphinx.deprecation import DeprecatedDict, RemovedInSphinx30Warning +from sphinx import addnodes from sphinx.directives import ObjectDescription from sphinx.domains import Domain, ObjType, Index, IndexEntry from sphinx.locale import _, __ @@ -55,13 +54,6 @@ pairindextypes = { 'builtin': _('built-in function'), } -locale.pairindextypes = DeprecatedDict( - pairindextypes, - 'sphinx.locale.pairindextypes is deprecated. ' - 'Please use sphinx.domains.python.pairindextypes instead.', - RemovedInSphinx30Warning -) - def _pseudo_parse_arglist(signode, arglist): # type: (addnodes.desc_signature, str) -> None diff --git a/sphinx/domains/std.py b/sphinx/domains/std.py index 04e8219c4..e73c660e6 100644 --- a/sphinx/domains/std.py +++ b/sphinx/domains/std.py @@ -10,7 +10,6 @@ import re import unicodedata -import warnings from copy import copy from typing import cast @@ -19,7 +18,6 @@ from docutils.parsers.rst import directives from docutils.statemachine import StringList from sphinx import addnodes -from sphinx.deprecation import RemovedInSphinx30Warning from sphinx.directives import ObjectDescription from sphinx.domains import Domain, ObjType from sphinx.errors import NoUri @@ -957,17 +955,6 @@ class StandardDomain(Domain): figtype, _ = self.enumerable_nodes.get(node.__class__, (None, None)) return figtype - def get_figtype(self, node): - # type: (nodes.Node) -> str - """Get figure type of nodes. - - .. deprecated:: 1.8 - """ - warnings.warn('StandardDomain.get_figtype() is deprecated. ' - 'Please use get_enumerable_node_type() instead.', - RemovedInSphinx30Warning, stacklevel=2) - return self.get_enumerable_node_type(node) - def get_fignumber(self, env, builder, figtype, docname, target_node): # type: (BuildEnvironment, Builder, str, str, nodes.Element) -> Tuple[int, ...] if figtype == 'section': diff --git a/sphinx/environment/__init__.py b/sphinx/environment/__init__.py index e3d2c1f49..f931b3b13 100644 --- a/sphinx/environment/__init__.py +++ b/sphinx/environment/__init__.py @@ -13,13 +13,10 @@ import pickle import warnings from collections import defaultdict from copy import copy -from io import BytesIO from os import path from sphinx import addnodes -from sphinx.deprecation import ( - RemovedInSphinx30Warning, RemovedInSphinx40Warning, deprecated_alias -) +from sphinx.deprecation import RemovedInSphinx40Warning from sphinx.environment.adapters.toctree import TocTree from sphinx.errors import SphinxError, BuildEnvironmentError, DocumentError, ExtensionError from sphinx.locale import __ @@ -657,133 +654,3 @@ class BuildEnvironment: for domain in self.domains.values(): domain.check_consistency() self.app.emit('env-check-consistency', self) - - # --------- METHODS FOR COMPATIBILITY -------------------------------------- - - def update(self, config, srcdir, doctreedir): - # type: (Config, str, str) -> List[str] - warnings.warn('env.update() is deprecated. Please use builder.read() instead.', - RemovedInSphinx30Warning, stacklevel=2) - return self.app.builder.read() - - def _read_serial(self, docnames, app): - # type: (List[str], Sphinx) -> None - warnings.warn('env._read_serial() is deprecated. Please use builder.read() instead.', - RemovedInSphinx30Warning, stacklevel=2) - return self.app.builder._read_serial(docnames) - - def _read_parallel(self, docnames, app, nproc): - # type: (List[str], Sphinx, int) -> None - warnings.warn('env._read_parallel() is deprecated. Please use builder.read() instead.', - RemovedInSphinx30Warning, stacklevel=2) - return self.app.builder._read_parallel(docnames, nproc) - - def read_doc(self, docname, app=None): - # type: (str, Sphinx) -> None - warnings.warn('env.read_doc() is deprecated. Please use builder.read_doc() instead.', - RemovedInSphinx30Warning, stacklevel=2) - self.app.builder.read_doc(docname) - - def write_doctree(self, docname, doctree): - # type: (str, nodes.document) -> None - warnings.warn('env.write_doctree() is deprecated. ' - 'Please use builder.write_doctree() instead.', - RemovedInSphinx30Warning, stacklevel=2) - self.app.builder.write_doctree(docname, doctree) - - @property - def _nitpick_ignore(self): - # type: () -> List[str] - warnings.warn('env._nitpick_ignore is deprecated. ' - 'Please use config.nitpick_ignore instead.', - RemovedInSphinx30Warning, stacklevel=2) - return self.config.nitpick_ignore - - @staticmethod - def load(f, app=None): - # type: (IO, Sphinx) -> BuildEnvironment - warnings.warn('BuildEnvironment.load() is deprecated. ' - 'Please use pickle.load() instead.', - RemovedInSphinx30Warning, stacklevel=2) - try: - env = pickle.load(f) - except Exception as exc: - # This can happen for example when the pickle is from a - # different version of Sphinx. - raise OSError(exc) - if app: - env.app = app - env.config.values = app.config.values - return env - - @classmethod - def loads(cls, string, app=None): - # type: (bytes, Sphinx) -> BuildEnvironment - warnings.warn('BuildEnvironment.loads() is deprecated. ' - 'Please use pickle.loads() instead.', - RemovedInSphinx30Warning, stacklevel=2) - io = BytesIO(string) - return cls.load(io, app) - - @classmethod - def frompickle(cls, filename, app): - # type: (str, Sphinx) -> BuildEnvironment - warnings.warn('BuildEnvironment.frompickle() is deprecated. ' - 'Please use pickle.load() instead.', - RemovedInSphinx30Warning, stacklevel=2) - with open(filename, 'rb') as f: - return cls.load(f, app) - - @staticmethod - def dump(env, f): - # type: (BuildEnvironment, IO) -> None - warnings.warn('BuildEnvironment.dump() is deprecated. ' - 'Please use pickle.dump() instead.', - RemovedInSphinx30Warning, stacklevel=2) - pickle.dump(env, f, pickle.HIGHEST_PROTOCOL) - - @classmethod - def dumps(cls, env): - # type: (BuildEnvironment) -> bytes - warnings.warn('BuildEnvironment.dumps() is deprecated. ' - 'Please use pickle.dumps() instead.', - RemovedInSphinx30Warning, stacklevel=2) - io = BytesIO() - cls.dump(env, io) - return io.getvalue() - - def topickle(self, filename): - # type: (str) -> None - warnings.warn('env.topickle() is deprecated. ' - 'Please use pickle.dump() instead.', - RemovedInSphinx30Warning, stacklevel=2) - with open(filename, 'wb') as f: - self.dump(self, f) - - @property - def versionchanges(self): - # type: () -> Dict[str, List[Tuple[str, str, int, str, str, str]]] - warnings.warn('env.versionchanges() is deprecated. ' - 'Please use ChangeSetDomain instead.', - RemovedInSphinx30Warning, stacklevel=2) - return self.domaindata['changeset']['changes'] - - def note_versionchange(self, type, version, node, lineno): - # type: (str, str, addnodes.versionmodified, int) -> None - warnings.warn('env.note_versionchange() is deprecated. ' - 'Please use ChangeSetDomain.note_changeset() instead.', - RemovedInSphinx30Warning, stacklevel=2) - node['type'] = type - node['version'] = version - node.line = lineno - self.get_domain('changeset').note_changeset(node) # type: ignore - - -from sphinx.errors import NoUri # NOQA - - -deprecated_alias('sphinx.environment', - { - 'NoUri': NoUri, - }, - RemovedInSphinx30Warning) diff --git a/sphinx/ext/autodoc/__init__.py b/sphinx/ext/autodoc/__init__.py index 5d96affa4..8446ab66b 100644 --- a/sphinx/ext/autodoc/__init__.py +++ b/sphinx/ext/autodoc/__init__.py @@ -18,9 +18,7 @@ from typing import Any from docutils.statemachine import StringList import sphinx -from sphinx.deprecation import ( - RemovedInSphinx30Warning, RemovedInSphinx40Warning, deprecated_alias -) +from sphinx.deprecation import RemovedInSphinx40Warning from sphinx.ext.autodoc.importer import import_object, get_object_members from sphinx.ext.autodoc.mock import mock from sphinx.locale import _, __ @@ -1448,39 +1446,6 @@ def autodoc_attrgetter(app, obj, name, *defargs): return safe_getattr(obj, name, *defargs) -def merge_autodoc_default_flags(app, config): - # type: (Sphinx, Config) -> None - """This merges the autodoc_default_flags to autodoc_default_options.""" - if not config.autodoc_default_flags: - return - - # Note: this option will be removed in Sphinx-4.0. But I marked this as - # RemovedInSphinx *30* Warning because we have to emit warnings for users - # who will be still in use with Sphinx-3.x. So we should replace this by - # logger.warning() on 3.0.0 release. - warnings.warn('autodoc_default_flags is now deprecated. ' - 'Please use autodoc_default_options instead.', - RemovedInSphinx30Warning, stacklevel=2) - - for option in config.autodoc_default_flags: - if isinstance(option, str): - config.autodoc_default_options[option] = None - else: - logger.warning( - __("Ignoring invalid option in autodoc_default_flags: %r"), - option, type='autodoc' - ) - - -from sphinx.ext.autodoc.mock import _MockImporter # NOQA - -deprecated_alias('sphinx.ext.autodoc', - { - '_MockImporter': _MockImporter, - }, - RemovedInSphinx40Warning) - - def setup(app): # type: (Sphinx) -> Dict[str, Any] app.add_autodocumenter(ModuleDocumenter) @@ -1505,6 +1470,4 @@ def setup(app): app.add_event('autodoc-process-signature') app.add_event('autodoc-skip-member') - app.connect('config-inited', merge_autodoc_default_flags) - return {'version': sphinx.__display_version__, 'parallel_read_safe': True} diff --git a/sphinx/ext/autodoc/importer.py b/sphinx/ext/autodoc/importer.py index a06d93d52..557461fd4 100644 --- a/sphinx/ext/autodoc/importer.py +++ b/sphinx/ext/autodoc/importer.py @@ -150,12 +150,11 @@ def get_object_members(subject, objpath, attrgetter, analyzer=None): from sphinx.ext.autodoc.mock import ( # NOQA - _MockImporter, _MockModule, _MockObject, MockFinder, MockLoader, mock + _MockModule, _MockObject, MockFinder, MockLoader, mock ) deprecated_alias('sphinx.ext.autodoc.importer', { - '_MockImporter': _MockImporter, '_MockModule': _MockModule, '_MockObject': _MockObject, 'MockFinder': MockFinder, diff --git a/sphinx/ext/autodoc/mock.py b/sphinx/ext/autodoc/mock.py index 6ae389258..d896bdde2 100644 --- a/sphinx/ext/autodoc/mock.py +++ b/sphinx/ext/autodoc/mock.py @@ -11,12 +11,10 @@ import contextlib import os import sys -import warnings from importlib.abc import Loader, MetaPathFinder from importlib.machinery import ModuleSpec from types import FunctionType, MethodType, ModuleType -from sphinx.deprecation import RemovedInSphinx30Warning from sphinx.util import logging if False: @@ -94,16 +92,12 @@ class _MockModule(ModuleType): """Used by autodoc_mock_imports.""" __file__ = os.devnull - def __init__(self, name, loader=None): - # type: (str, _MockImporter) -> None + def __init__(self, name): + # type: (str) -> None super().__init__(name) self.__all__ = [] # type: List[str] self.__path__ = [] # type: List[str] - if loader is not None: - warnings.warn('The loader argument for _MockModule is deprecated.', - RemovedInSphinx30Warning) - def __getattr__(self, name): # type: (str) -> _MockObject return _make_subclass(name, self.__name__)() @@ -113,48 +107,6 @@ class _MockModule(ModuleType): return self.__name__ -class _MockImporter(MetaPathFinder): - def __init__(self, names): - # type: (List[str]) -> None - self.names = names - self.mocked_modules = [] # type: List[str] - # enable hook by adding itself to meta_path - sys.meta_path.insert(0, self) - - warnings.warn('_MockImporter is now deprecated.', - RemovedInSphinx30Warning) - - def disable(self): - # type: () -> None - # remove `self` from `sys.meta_path` to disable import hook - sys.meta_path = [i for i in sys.meta_path if i is not self] - # remove mocked modules from sys.modules to avoid side effects after - # running auto-documenter - for m in self.mocked_modules: - if m in sys.modules: - del sys.modules[m] - - def find_module(self, name, path=None): - # type: (str, Sequence[Union[bytes, str]]) -> Any - # check if name is (or is a descendant of) one of our base_packages - for n in self.names: - if n == name or name.startswith(n + '.'): - return self - return None - - def load_module(self, name): - # type: (str) -> ModuleType - if name in sys.modules: - # module has already been imported, return it - return sys.modules[name] - else: - logger.debug('[autodoc] adding a mock module %s!', name) - module = _MockModule(name, self) - sys.modules[name] = module - self.mocked_modules.append(name) - return module - - class MockLoader(Loader): """A loader for mocking.""" def __init__(self, finder): diff --git a/sphinx/ext/mathbase.py b/sphinx/ext/mathbase.py deleted file mode 100644 index 0c89fd1ed..000000000 --- a/sphinx/ext/mathbase.py +++ /dev/null @@ -1,84 +0,0 @@ -""" - sphinx.ext.mathbase - ~~~~~~~~~~~~~~~~~~~ - - Set up math support in source files and LaTeX/text output. - - :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. - :license: BSD, see LICENSE for details. -""" - -import warnings - -from docutils import nodes -from docutils.parsers.rst.roles import math_role as math_role_base - -from sphinx.addnodes import math, math_block as displaymath # NOQA # to keep compatibility -from sphinx.builders.latex.nodes import math_reference as eqref # NOQA # to keep compatibility -from sphinx.deprecation import RemovedInSphinx30Warning -from sphinx.directives.patches import MathDirective as MathDirectiveBase -from sphinx.domains.math import MathDomain # NOQA # to keep compatibility -from sphinx.domains.math import MathReferenceRole as EqXRefRole # NOQA # to keep compatibility - -if False: - # For type annotation - from typing import Callable, Tuple # NOQA - from sphinx.application import Sphinx # NOQA - from sphinx.writers.html import HTMLTranslator # NOQA - - -class MathDirective(MathDirectiveBase): - def run(self): - warnings.warn('sphinx.ext.mathbase.MathDirective is moved to ' - 'sphinx.directives.patches package.', - RemovedInSphinx30Warning, stacklevel=2) - return super().run() - - -def math_role(role, rawtext, text, lineno, inliner, options={}, content=[]): - warnings.warn('sphinx.ext.mathbase.math_role() is deprecated. ' - 'Please use docutils.parsers.rst.roles.math_role() instead.', - RemovedInSphinx30Warning, stacklevel=2) - return math_role_base(role, rawtext, text, lineno, inliner, options, content) - - -def get_node_equation_number(writer, node): - # type: (HTMLTranslator, nodes.math_block) -> str - warnings.warn('sphinx.ext.mathbase.get_node_equation_number() is moved to ' - 'sphinx.util.math package.', - RemovedInSphinx30Warning, stacklevel=2) - from sphinx.util.math import get_node_equation_number - return get_node_equation_number(writer, node) - - -def wrap_displaymath(text, label, numbering): - # type: (str, str, bool) -> str - warnings.warn('sphinx.ext.mathbase.wrap_displaymath() is moved to ' - 'sphinx.util.math package.', - RemovedInSphinx30Warning, stacklevel=2) - from sphinx.util.math import wrap_displaymath - return wrap_displaymath(text, label, numbering) - - -def is_in_section_title(node): - # type: (nodes.Element) -> bool - """Determine whether the node is in a section title""" - from sphinx.util.nodes import traverse_parent - - warnings.warn('is_in_section_title() is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - - for ancestor in traverse_parent(node): - if isinstance(ancestor, nodes.title) and \ - isinstance(ancestor.parent, nodes.section): - return True - return False - - -def setup_math(app, htmlinlinevisitors, htmldisplayvisitors): - # type: (Sphinx, Tuple[Callable, Callable], Tuple[Callable, Callable]) -> None - warnings.warn('setup_math() is deprecated. ' - 'Please use app.add_html_math_renderer() instead.', - RemovedInSphinx30Warning, stacklevel=2) - - app.add_html_math_renderer('unknown', htmlinlinevisitors, htmldisplayvisitors) diff --git a/sphinx/ext/viewcode.py b/sphinx/ext/viewcode.py index 2997dc216..5de8f7f5e 100644 --- a/sphinx/ext/viewcode.py +++ b/sphinx/ext/viewcode.py @@ -9,13 +9,11 @@ """ import traceback -import warnings from docutils import nodes import sphinx from sphinx import addnodes -from sphinx.deprecation import RemovedInSphinx30Warning from sphinx.locale import _, __ from sphinx.pycode import ModuleAnalyzer from sphinx.util import get_full_modname, logging, status_iterator @@ -238,14 +236,6 @@ def collect_pages(app): yield ('_modules/index', context, 'page.html') -def migrate_viewcode_import(app, config): - # type: (Sphinx, Config) -> None - if config.viewcode_import is not None: - warnings.warn('viewcode_import was renamed to viewcode_follow_imported_members. ' - 'Please update your configuration.', - RemovedInSphinx30Warning, stacklevel=2) - - def setup(app): # type: (Sphinx) -> Dict[str, Any] app.add_config_value('viewcode_import', None, False) diff --git a/sphinx/highlighting.py b/sphinx/highlighting.py index c53149ce6..c194738f8 100644 --- a/sphinx/highlighting.py +++ b/sphinx/highlighting.py @@ -8,9 +8,6 @@ :license: BSD, see LICENSE for details. """ -import html -import warnings - from pygments import highlight from pygments.filters import ErrorToken from pygments.formatters import HtmlFormatter, LatexFormatter @@ -21,8 +18,6 @@ from pygments.lexers import PythonLexer, Python3Lexer, PythonConsoleLexer, \ from pygments.styles import get_style_by_name from pygments.util import ClassNotFound -from sphinx.deprecation import RemovedInSphinx30Warning -from sphinx.ext import doctest from sphinx.locale import __ from sphinx.pygments_styles import SphinxStyle, NoneStyle from sphinx.util import logging @@ -66,8 +61,8 @@ class PygmentsBridge: html_formatter = HtmlFormatter latex_formatter = LatexFormatter - def __init__(self, dest='html', stylename='sphinx', trim_doctest_flags=None): - # type: (str, str, bool) -> None + def __init__(self, dest='html', stylename='sphinx'): + # type: (str, str) -> None self.dest = dest if stylename is None or stylename == 'sphinx': style = SphinxStyle @@ -86,30 +81,11 @@ class PygmentsBridge: self.formatter = self.latex_formatter self.formatter_args['commandprefix'] = 'PYG' - self.trim_doctest_flags = trim_doctest_flags - if trim_doctest_flags is not None: - warnings.warn('trim_doctest_flags option for PygmentsBridge is now deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - def get_formatter(self, **kwargs): # type: (Any) -> Formatter kwargs.update(self.formatter_args) return self.formatter(**kwargs) - def unhighlighted(self, source): - # type: (str) -> str - warnings.warn('PygmentsBridge.unhighlighted() is now deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - if self.dest == 'html': - return '<pre>' + html.escape(source) + '</pre>\n' - else: - # first, escape highlighting characters like Pygments does - source = source.translate(escape_hl_chars) - # then, escape all characters nonrepresentable in LaTeX - source = source.translate(tex_hl_escape_map_new) - return '\\begin{Verbatim}[commandchars=\\\\\\{\\}]\n' + \ - source + '\\end{Verbatim}\n' - def highlight_block(self, source, lang, opts=None, location=None, force=False, **kwargs): # type: (str, str, Any, Any, bool, Any) -> str if not isinstance(source, str): @@ -145,11 +121,6 @@ class PygmentsBridge: else: lexer.add_filter('raiseonerror') - # trim doctest options if wanted - if isinstance(lexer, PythonConsoleLexer) and self.trim_doctest_flags: - source = doctest.blankline_re.sub('', source) - source = doctest.doctestopt_re.sub('', source) - # highlight via Pygments formatter = self.get_formatter(**kwargs) try: diff --git a/sphinx/io.py b/sphinx/io.py index b5b57d065..105ed4397 100644 --- a/sphinx/io.py +++ b/sphinx/io.py @@ -8,17 +8,14 @@ :license: BSD, see LICENSE for details. """ import codecs -import warnings from typing import Any from docutils.core import Publisher from docutils.io import FileInput, NullOutput from docutils.parsers.rst import Parser as RSTParser from docutils.readers import standalone -from docutils.statemachine import StringList, string2lines from docutils.writers import UnfilteredWriter -from sphinx.deprecation import RemovedInSphinx30Warning from sphinx.transforms import ( AutoIndexUpgrader, DoctreeReadEvent, FigureAligner, SphinxTransformer ) @@ -29,7 +26,6 @@ from sphinx.transforms.references import SphinxDomains from sphinx.util import logging from sphinx.util import UnicodeDecodeErrorHandler from sphinx.util.docutils import LoggingReporter -from sphinx.util.rst import append_epilog, docinfo_re, prepend_prolog from sphinx.versioning import UIDTransform if False: @@ -136,19 +132,6 @@ class SphinxI18nReader(SphinxBaseReader): super().__init__(app, *args, **kwargs) - def set_lineno_for_reporter(self, lineno): - # type: (int) -> None - """Stores the source line number of original text.""" - warnings.warn('SphinxI18nReader.set_lineno_for_reporter() is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - - @property - def line(self): - # type: () -> int - warnings.warn('SphinxI18nReader.line is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return 0 - class SphinxDummyWriter(UnfilteredWriter): """Dummy writer module used for generating doctree.""" @@ -166,99 +149,14 @@ def SphinxDummySourceClass(source, *args, **kwargs): return source -class SphinxBaseFileInput(FileInput): - """A base class of SphinxFileInput. - - It supports to replace unknown Unicode characters to '?'. - """ - - def __init__(self, app, env, *args, **kwds): - # type: (Sphinx, BuildEnvironment, Any, Any) -> None - self.app = app - self.env = env - - warnings.warn('%s is deprecated.' % self.__class__.__name__, - RemovedInSphinx30Warning, stacklevel=2) - - kwds['error_handler'] = 'sphinx' # py3: handle error on open. - super().__init__(*args, **kwds) - - def warn_and_replace(self, error): - # type: (Any) -> Tuple - return UnicodeDecodeErrorHandler(self.env.docname)(error) - - class SphinxFileInput(FileInput): """A basic FileInput for Sphinx.""" - supported = ('*',) # RemovedInSphinx30Warning - def __init__(self, *args, **kwargs): # type: (Any, Any) -> None kwargs['error_handler'] = 'sphinx' super().__init__(*args, **kwargs) -class SphinxRSTFileInput(SphinxBaseFileInput): - """A reST FileInput for Sphinx. - - This FileInput automatically prepends and appends text by :confval:`rst_prolog` and - :confval:`rst_epilog`. - - .. important:: - - This FileInput uses an instance of ``StringList`` as a return value of ``read()`` - method to indicate original source filename and line numbers after prepending and - appending. - For that reason, ``sphinx.parsers.RSTParser`` should be used with this to parse - a content correctly. - """ - supported = ('restructuredtext',) - - def prepend_prolog(self, text, prolog): - # type: (StringList, str) -> None - docinfo = self.count_docinfo_lines(text) - if docinfo: - # insert a blank line after docinfo - text.insert(docinfo, '', '<generated>', 0) - docinfo += 1 - - # insert prolog (after docinfo if exists) - for lineno, line in enumerate(prolog.splitlines()): - text.insert(docinfo + lineno, line, '<rst_prolog>', lineno) - - text.insert(docinfo + lineno + 1, '', '<generated>', 0) - - def append_epilog(self, text, epilog): - # type: (StringList, str) -> None - # append a blank line and rst_epilog - text.append('', '<generated>', 0) - for lineno, line in enumerate(epilog.splitlines()): - text.append(line, '<rst_epilog>', lineno) - - def read(self): # type: ignore - # type: () -> StringList - inputstring = super().read() - lines = string2lines(inputstring, convert_whitespace=True) - content = StringList() - for lineno, line in enumerate(lines): - content.append(line, self.source_path, lineno) - - prepend_prolog(content, self.env.config.rst_prolog) - append_epilog(content, self.env.config.rst_epilog) - - return content - - def count_docinfo_lines(self, content): - # type: (StringList) -> int - if len(content) == 0: - return 0 - else: - for lineno, line in enumerate(content.data): - if not docinfo_re.match(line): - break - return lineno - - class FiletypeNotFoundError(Exception): pass diff --git a/sphinx/locale/__init__.py b/sphinx/locale/__init__.py index 6ae20d0d0..d18d075d4 100644 --- a/sphinx/locale/__init__.py +++ b/sphinx/locale/__init__.py @@ -10,12 +10,9 @@ import gettext import locale -import warnings from collections import UserString, defaultdict from gettext import NullTranslations -from sphinx.deprecation import RemovedInSphinx30Warning - if False: # For type annotation from typing import Any, Callable, Dict, Iterable, List, Tuple, Union # NOQA @@ -127,26 +124,6 @@ class _TranslationProxy(UserString): return '<%s broken>' % self.__class__.__name__ -def mygettext(string): - # type: (str) -> str - """Used instead of _ when creating TranslationProxies, because _ is - not bound yet at that time. - """ - warnings.warn('sphinx.locale.mygettext() is deprecated. Please use `_()` instead.', - RemovedInSphinx30Warning, stacklevel=2) - return _(string) - - -def lazy_gettext(string): - # type: (str) -> str - """A lazy version of `gettext`.""" - # if isinstance(string, _TranslationProxy): - # return string - warnings.warn('sphinx.locale.laxy_gettext() is deprecated. Please use `_()` instead.', - RemovedInSphinx30Warning, stacklevel=2) - return _TranslationProxy(mygettext, string) # type: ignore - - translators = defaultdict(NullTranslations) # type: Dict[Tuple[str, str], NullTranslations] @@ -295,12 +272,6 @@ _ = get_translation('sphinx') __ = get_translation('sphinx', 'console') -def l_(*args): - warnings.warn('sphinx.locale.l_() is deprecated. Please use `_()` instead.', - RemovedInSphinx30Warning, stacklevel=2) - return _(*args) - - # labels admonitionlabels = { 'attention': _('Attention'), diff --git a/sphinx/make_mode.py b/sphinx/make_mode.py deleted file mode 100644 index c1da2a5fa..000000000 --- a/sphinx/make_mode.py +++ /dev/null @@ -1,38 +0,0 @@ -""" - sphinx.make_mode - ~~~~~~~~~~~~~~~~ - - sphinx-build -M command-line handling. - - This replaces the old, platform-dependent and once-generated content - of Makefile / make.bat. - - This is in its own module so that importing it is fast. It should not - import the main Sphinx modules (like sphinx.applications, sphinx.builders). - - :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. - :license: BSD, see LICENSE for details. -""" - -import warnings - -from sphinx.cmd import make_mode -from sphinx.deprecation import RemovedInSphinx30Warning - - -BUILDERS = make_mode.BUILDERS - - -class Make(make_mode.Make): - def __init__(self, *args): - warnings.warn('sphinx.make_mode.Make is deprecated. ' - 'Please use sphinx.cmd.make_mode.Make instead.', - RemovedInSphinx30Warning, stacklevel=2) - super().__init__(*args) - - -def run_make_mode(args): - warnings.warn('sphinx.make_mode.run_make_mode() is deprecated. ' - 'Please use sphinx.cmd.make_mode.run_make_mode() instead.', - RemovedInSphinx30Warning, stacklevel=2) - return make_mode.run_make_mode(args) diff --git a/sphinx/registry.py b/sphinx/registry.py index 311270ccb..32dbd2f55 100644 --- a/sphinx/registry.py +++ b/sphinx/registry.py @@ -9,14 +9,11 @@ """ import traceback -import warnings -from inspect import isclass from types import MethodType from docutils.parsers.rst import Directive from pkg_resources import iter_entry_points -from sphinx.deprecation import RemovedInSphinx30Warning from sphinx.domains import ObjType from sphinx.domains.std import GenericObject, Target from sphinx.errors import ExtensionError, SphinxError, VersionRequirementError @@ -25,7 +22,6 @@ from sphinx.locale import __ from sphinx.parsers import Parser as SphinxParser from sphinx.roles import XRefRole from sphinx.util import logging -from sphinx.util.docutils import directive_helper from sphinx.util.logging import prefixed_warnings if False: @@ -181,18 +177,9 @@ class SphinxComponentRegistry: yield domain - def override_domain(self, domain): - # type: (Type[Domain]) -> None - warnings.warn('registry.override_domain() is deprecated. ' - 'Use app.add_domain(domain, override=True) instead.', - RemovedInSphinx30Warning, stacklevel=2) - self.add_domain(domain, override=True) - - def add_directive_to_domain(self, domain, name, obj, has_content=None, argument_spec=None, - override=False, **option_spec): - # type: (str, str, Any, bool, Any, bool, Any) -> None - logger.debug('[app] adding directive to domain: %r', - (domain, name, obj, has_content, argument_spec, option_spec)) + def add_directive_to_domain(self, domain, name, cls, override=False): + # type: (str, str, Type[Directive], bool) -> None + logger.debug('[app] adding directive to domain: %r', (domain, name, cls)) if domain not in self.domains: raise ExtensionError(__('domain %s not yet registered') % domain) @@ -200,10 +187,7 @@ class SphinxComponentRegistry: if name in directives and not override: raise ExtensionError(__('The %r directive is already registered to domain %s') % (name, domain)) - if not isclass(obj) or not issubclass(obj, Directive): - directives[name] = directive_helper(obj, has_content, argument_spec, **option_spec) - else: - directives[name] = obj + directives[name] = cls def add_role_to_domain(self, domain, name, role, override=False): # type: (str, str, Union[RoleFunction, XRefRole], bool) -> None @@ -279,29 +263,9 @@ class SphinxComponentRegistry: else: self.source_suffix[suffix] = filetype - def add_source_parser(self, *args, **kwargs): - # type: (Any, bool) -> None - logger.debug('[app] adding search source_parser: %r', args) - if len(args) == 1: - # new sytle arguments: (source_parser) - suffix = None # type: str - parser = args[0] # type: Type[Parser] - else: - # old style arguments: (suffix, source_parser) - warnings.warn('app.add_source_parser() does not support suffix argument. ' - 'Use app.add_source_suffix() instead.', - RemovedInSphinx30Warning, stacklevel=3) - suffix = args[0] - parser = args[1] - - if suffix: - self.add_source_suffix(suffix, suffix, override=True) - - if len(parser.supported) == 0: - warnings.warn('Old source_parser has been detected. Please fill Parser.supported ' - 'attribute: %s' % parser.__name__, - RemovedInSphinx30Warning, stacklevel=3) - + def add_source_parser(self, parser, **kwargs): + # type: (Type[Parser], bool) -> None + logger.debug('[app] adding search source_parser: %r', parser) # create a map from filetype to parser for filetype in parser.supported: if filetype in self.source_parsers and not kwargs.get('override'): @@ -310,12 +274,6 @@ class SphinxComponentRegistry: else: self.source_parsers[filetype] = parser - # also maps suffix to parser - # - # This rescues old styled parsers which does not have ``supported`` filetypes. - if suffix: - self.source_parsers[suffix] = parser - def get_source_parser(self, filetype): # type: (str) -> Type[Parser] try: @@ -335,16 +293,6 @@ class SphinxComponentRegistry: parser.set_application(app) return parser - def add_source_input(self, input_class, override=False): - # type: (Type[SphinxFileInput], bool) -> None - warnings.warn('registry.source_input() is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - for filetype in input_class.supported: - if filetype in self.source_inputs and not override: - raise ExtensionError(__('source_input for %r is already registered') % - filetype) - self.source_inputs[filetype] = input_class - def get_source_input(self, filetype): # type: (str) -> Type[Input] try: diff --git a/sphinx/search/ja.py b/sphinx/search/ja.py index 0c11af74d..e1f18209a 100644 --- a/sphinx/search/ja.py +++ b/sphinx/search/ja.py @@ -19,7 +19,6 @@ import os import re import sys -import warnings try: import MeCab @@ -33,7 +32,6 @@ try: except ImportError: janome_module = False -from sphinx.deprecation import RemovedInSphinx30Warning from sphinx.errors import SphinxError, ExtensionError from sphinx.search import SearchLanguage from sphinx.util import import_object @@ -543,22 +541,10 @@ class SearchJapanese(SearchLanguage): """ lang = 'ja' language_name = 'Japanese' - splitters = { - 'default': 'sphinx.search.ja.DefaultSplitter', - 'mecab': 'sphinx.search.ja.MecabSplitter', - 'janome': 'sphinx.search.ja.JanomeSplitter', - } def init(self, options): # type: (Dict) -> None - type = options.get('type', 'sphinx.search.ja.DefaultSplitter') - if type in self.splitters: - dotted_path = self.splitters[type] - warnings.warn('html_search_options["type"]: %s is deprecated. ' - 'Please give "%s" instead.' % (type, dotted_path), - RemovedInSphinx30Warning, stacklevel=2) - else: - dotted_path = type + dotted_path = options.get('type', 'sphinx.search.ja.DefaultSplitter') try: self.splitter = import_object(dotted_path)(options) except ExtensionError: diff --git a/sphinx/transforms/post_transforms/compat.py b/sphinx/transforms/post_transforms/compat.py deleted file mode 100644 index 67b67f8d4..000000000 --- a/sphinx/transforms/post_transforms/compat.py +++ /dev/null @@ -1,90 +0,0 @@ -""" - sphinx.transforms.post_transforms.compat - ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - - Post transforms for compatibility - - :copyright: Copyright 2007-2019 by the Sphinx team, see AUTHORS. - :license: BSD, see LICENSE for details. -""" - -import warnings - -from docutils import nodes -from docutils.writers.docutils_xml import XMLTranslator - -from sphinx.addnodes import math_block, displaymath -from sphinx.deprecation import RemovedInSphinx30Warning -from sphinx.transforms import SphinxTransform -from sphinx.util import logging - -if False: - # For type annotation - from typing import Any, Dict # NOQA - from sphinx.application import Sphinx # NOQA - -logger = logging.getLogger(__name__) - - -class MathNodeMigrator(SphinxTransform): - """Migrate a math node to docutils'. - - For a long time, Sphinx uses an original node for math. Since 1.8, - Sphinx starts to use a math node of docutils'. This transform converts - old and new nodes to keep compatibility. - """ - default_priority = 999 - - def apply(self, **kwargs): - # type: (Any) -> None - for math_node in self.document.traverse(nodes.math): - # case: old styled ``math`` node generated by old extensions - if len(math_node) == 0: - warnings.warn("math node for Sphinx was replaced by docutils'. " - "Please use ``docutils.nodes.math`` instead.", - RemovedInSphinx30Warning) - equation = math_node['latex'] - math_node += nodes.Text(equation, equation) - - translator = self.app.builder.get_translator_class() - if hasattr(translator, 'visit_displaymath') and translator != XMLTranslator: - # case: old translators which does not support ``math_block`` node - warnings.warn("Translator for %s does not support math_block node'. " - "Please update your extension." % translator, - RemovedInSphinx30Warning) - for old_math_block_node in self.document.traverse(math_block): - alt = displaymath(latex=old_math_block_node.astext(), - number=old_math_block_node.get('number'), - label=old_math_block_node.get('label'), - nowrap=old_math_block_node.get('nowrap'), - docname=old_math_block_node.get('docname')) - old_math_block_node.replace_self(alt) - elif getattr(self.app.builder, 'math_renderer_name', None) == 'unknown': - # case: math extension provides old styled math renderer - for math_block_node in self.document.traverse(nodes.math_block): - math_block_node['latex'] = math_block_node.astext() - - # case: old styled ``displaymath`` node generated by old extensions - for math_block_node in self.document.traverse(math_block): - if len(math_block_node) == 0: - warnings.warn("math node for Sphinx was replaced by docutils'. " - "Please use ``docutils.nodes.math_block`` instead.", - RemovedInSphinx30Warning) - if isinstance(math_block_node, displaymath): - newnode = nodes.math_block('', math_block_node['latex'], - **math_block_node.attributes) - math_block_node.replace_self(newnode) - else: - latex = math_block_node['latex'] - math_block_node += nodes.Text(latex, latex) - - -def setup(app): - # type: (Sphinx) -> Dict[str, Any] - app.add_post_transform(MathNodeMigrator) - - return { - 'version': 'builtin', - 'parallel_read_safe': True, - 'parallel_write_safe': True, - } diff --git a/sphinx/util/__init__.py b/sphinx/util/__init__.py index 2ebae8768..cc2cd9aa1 100644 --- a/sphinx/util/__init__.py +++ b/sphinx/util/__init__.py @@ -26,21 +26,18 @@ from os import path from time import mktime, strptime from urllib.parse import urlsplit, urlunsplit, quote_plus, parse_qsl, urlencode -from docutils.utils import relative_path - -from sphinx.deprecation import RemovedInSphinx30Warning, RemovedInSphinx40Warning +from sphinx.deprecation import RemovedInSphinx40Warning from sphinx.errors import PycodeError, SphinxParallelError, ExtensionError from sphinx.locale import __ from sphinx.util import logging from sphinx.util.console import strip_colors, colorize, bold, term_width_line # type: ignore -from sphinx.util.fileutil import copy_asset_file from sphinx.util import smartypants # noqa # import other utilities; partly for backwards compatibility, so don't # prune unused ones indiscriminately from sphinx.util.osutil import ( # noqa SEP, os_path, relative_uri, ensuredir, walk, mtimes_of_files, movefile, - copyfile, copytimes, make_filename, ustrftime) + copyfile, copytimes, make_filename) from sphinx.util.nodes import ( # noqa nested_parse_with_titles, split_explicit_title, explicit_title_re, caption_ref_re) @@ -196,36 +193,6 @@ class DownloadFiles(dict): self.add_file(docname, filename) -def copy_static_entry(source, targetdir, builder, context={}, - exclude_matchers=(), level=0): - # type: (str, str, Any, Dict, Tuple[Callable, ...], int) -> None - """[DEPRECATED] Copy a HTML builder static_path entry from source to targetdir. - - Handles all possible cases of files, directories and subdirectories. - """ - warnings.warn('sphinx.util.copy_static_entry is deprecated for removal', - RemovedInSphinx30Warning, stacklevel=2) - - if exclude_matchers: - relpath = relative_path(path.join(builder.srcdir, 'dummy'), source) - for matcher in exclude_matchers: - if matcher(relpath): - return - if path.isfile(source): - copy_asset_file(source, targetdir, context, builder.templates) - elif path.isdir(source): - ensuredir(targetdir) - for entry in os.listdir(source): - if entry.startswith('.'): - continue - newtarget = targetdir - if path.isdir(path.join(source, entry)): - newtarget = path.join(targetdir, entry) - copy_static_entry(path.join(source, entry), newtarget, - builder, context, level=level + 1, - exclude_matchers=exclude_matchers) - - _DEBUG_HEADER = '''\ # Sphinx version: %s # Python version: %s (%s) diff --git a/sphinx/util/compat.py b/sphinx/util/compat.py index 5d8cbb3db..805c17e5d 100644 --- a/sphinx/util/compat.py +++ b/sphinx/util/compat.py @@ -14,9 +14,8 @@ import warnings from docutils.utils import get_source_line from sphinx import addnodes -from sphinx.deprecation import RemovedInSphinx30Warning, RemovedInSphinx40Warning +from sphinx.deprecation import RemovedInSphinx40Warning from sphinx.transforms import SphinxTransform -from sphinx.util import import_object if False: # For type annotation @@ -25,18 +24,6 @@ if False: from sphinx.config import Config # NOQA -def deprecate_source_parsers(app, config): - # type: (Sphinx, Config) -> None - if config.source_parsers: - warnings.warn('The config variable "source_parsers" is deprecated. ' - 'Please use app.add_source_parser() API instead.', - RemovedInSphinx30Warning) - for suffix, parser in config.source_parsers.items(): - if isinstance(parser, str): - parser = import_object(parser, 'source parser') - app.add_source_parser(suffix, parser) - - def register_application_for_autosummary(app): # type: (Sphinx) -> None """Register application object to autosummary module. @@ -69,7 +56,6 @@ class IndexEntriesMigrator(SphinxTransform): def setup(app): # type: (Sphinx) -> Dict[str, Any] app.add_transform(IndexEntriesMigrator) - app.connect('config-inited', deprecate_source_parsers) app.connect('builder-inited', register_application_for_autosummary) return { diff --git a/sphinx/util/docutils.py b/sphinx/util/docutils.py index eebfec464..d38c780f4 100644 --- a/sphinx/util/docutils.py +++ b/sphinx/util/docutils.py @@ -10,8 +10,6 @@ import os import re -import types -import warnings from contextlib import contextmanager from copy import copy from distutils.version import LooseVersion @@ -21,13 +19,11 @@ from typing import IO, cast import docutils from docutils import nodes from docutils.io import FileOutput -from docutils.parsers.rst import Directive, directives, roles, convert_directive_function +from docutils.parsers.rst import Directive, directives, roles from docutils.statemachine import StateMachine from docutils.utils import Reporter, unescape -from sphinx.deprecation import RemovedInSphinx30Warning -from sphinx.errors import ExtensionError, SphinxError -from sphinx.locale import __ +from sphinx.errors import SphinxError from sphinx.util import logging logger = logging.getLogger(__name__) @@ -304,24 +300,6 @@ def is_html5_writer_available(): return __version_info__ > (0, 13, 0) -def directive_helper(obj, has_content=None, argument_spec=None, **option_spec): - # type: (Any, bool, Tuple[int, int, bool], Any) -> Any - warnings.warn('function based directive support is now deprecated. ' - 'Use class based directive instead.', - RemovedInSphinx30Warning) - - if isinstance(obj, (types.FunctionType, types.MethodType)): - obj.content = has_content # type: ignore - obj.arguments = argument_spec or (0, 0, False) # type: ignore - obj.options = option_spec # type: ignore - return convert_directive_function(obj) - else: - if has_content or argument_spec or option_spec: - raise ExtensionError(__('when adding directive classes, no ' - 'additional arguments may be given')) - return obj - - @contextmanager def switch_source_input(state, content): # type: (State, StringList) -> Generator[None, None, None] diff --git a/sphinx/util/i18n.py b/sphinx/util/i18n.py index e342b1246..89534f5ae 100644 --- a/sphinx/util/i18n.py +++ b/sphinx/util/i18n.py @@ -19,7 +19,7 @@ import babel.dates from babel.messages.mofile import write_mo from babel.messages.pofile import read_po -from sphinx.deprecation import RemovedInSphinx30Warning, RemovedInSphinx40Warning +from sphinx.deprecation import RemovedInSphinx40Warning from sphinx.errors import SphinxError from sphinx.locale import __ from sphinx.util import logging @@ -161,10 +161,9 @@ def find_catalog_files(docname, srcdir, locale_dirs, lang, compaction): return files -def find_catalog_source_files(locale_dirs, locale, domains=None, gettext_compact=None, - charset='utf-8', force_all=False, - excluded=Matcher([])): - # type: (List[str], str, List[str], bool, str, bool, Matcher) -> Set[CatalogInfo] +def find_catalog_source_files(locale_dirs, locale, domains=None, charset='utf-8', + force_all=False, excluded=Matcher([])): + # type: (List[str], str, List[str], str, bool, Matcher) -> Set[CatalogInfo] """ :param list locale_dirs: list of path as `['locale_dir1', 'locale_dir2', ...]` to find @@ -180,9 +179,6 @@ def find_catalog_source_files(locale_dirs, locale, domains=None, gettext_compact """ warnings.warn('find_catalog_source_files() is deprecated.', RemovedInSphinx40Warning, stacklevel=2) - if gettext_compact is not None: - warnings.warn('gettext_compact argument for find_catalog_source_files() ' - 'is deprecated.', RemovedInSphinx30Warning, stacklevel=2) catalogs = set() # type: Set[CatalogInfo] diff --git a/sphinx/util/images.py b/sphinx/util/images.py index 0e5f3e81b..76bffd88c 100644 --- a/sphinx/util/images.py +++ b/sphinx/util/images.py @@ -10,16 +10,12 @@ import base64 import imghdr -import warnings from collections import OrderedDict -from io import BytesIO from os import path from typing import NamedTuple import imagesize -from sphinx.deprecation import RemovedInSphinx30Warning - try: from PIL import Image except ImportError: @@ -72,17 +68,11 @@ def guess_mimetype_for_stream(stream, default=None): return default -def guess_mimetype(filename='', content=None, default=None): - # type: (str, bytes, str) -> str +def guess_mimetype(filename, default=None): + # type: (str, str) -> str _, ext = path.splitext(filename.lower()) if ext in mime_suffixes: return mime_suffixes[ext] - elif content: - # TODO: When the content argument is removed, make filename a required - # argument. - warnings.warn('The content argument of guess_mimetype() is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return guess_mimetype_for_stream(BytesIO(content), default=default) elif path.exists(filename): with open(filename, 'rb') as f: return guess_mimetype_for_stream(f, default=default) diff --git a/sphinx/util/inspect.py b/sphinx/util/inspect.py index 89dd842e3..ff399c439 100644 --- a/sphinx/util/inspect.py +++ b/sphinx/util/inspect.py @@ -14,11 +14,9 @@ import inspect import re import sys import typing -import warnings from functools import partial from io import StringIO -from sphinx.deprecation import RemovedInSphinx30Warning from sphinx.util import logging from sphinx.util.typing import NoneType @@ -264,26 +262,6 @@ def is_builtin_class_method(obj, attr_name): return getattr(builtins, safe_getattr(cls, '__name__', '')) is cls # type: ignore -class Parameter: - """Fake parameter class for python2.""" - POSITIONAL_ONLY = 0 - POSITIONAL_OR_KEYWORD = 1 - VAR_POSITIONAL = 2 - KEYWORD_ONLY = 3 - VAR_KEYWORD = 4 - empty = object() - - def __init__(self, name, kind=POSITIONAL_OR_KEYWORD, default=empty): - # type: (str, int, Any) -> None - self.name = name - self.kind = kind - self.default = default - self.annotation = self.empty - - warnings.warn('sphinx.util.inspect.Parameter is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - - class Signature: """The Signature object represents the call signature of a callable object and its return annotation. diff --git a/sphinx/util/osutil.py b/sphinx/util/osutil.py index 6a070a27a..4cd646f96 100644 --- a/sphinx/util/osutil.py +++ b/sphinx/util/osutil.py @@ -15,12 +15,11 @@ import os import re import shutil import sys -import time import warnings from io import StringIO from os import path -from sphinx.deprecation import RemovedInSphinx30Warning, RemovedInSphinx40Warning +from sphinx.deprecation import RemovedInSphinx40Warning if False: # For type annotation @@ -148,28 +147,6 @@ def make_filename_from_project(project): return make_filename(project_suffix_re.sub('', project)).lower() -def ustrftime(format, *args): - # type: (str, Any) -> str - """[DEPRECATED] strftime for unicode strings.""" - warnings.warn('sphinx.util.osutil.ustrtime is deprecated for removal', - RemovedInSphinx30Warning, stacklevel=2) - - if not args: - # If time is not specified, try to use $SOURCE_DATE_EPOCH variable - # See https://wiki.debian.org/ReproducibleBuilds/TimestampsProposal - source_date_epoch = os.getenv('SOURCE_DATE_EPOCH') - if source_date_epoch is not None: - time_struct = time.gmtime(float(source_date_epoch)) - args = [time_struct] # type: ignore - # On Windows, time.strftime() and Unicode characters will raise UnicodeEncodeError. - # https://bugs.python.org/issue8304 - try: - return time.strftime(format, *args) - except UnicodeEncodeError: - r = time.strftime(format.encode('unicode-escape').decode(), *args) - return r.encode().decode('unicode-escape') - - def relpath(path, start=os.curdir): # type: (str, str) -> str """Return a relative filepath to *path* either from the current directory or diff --git a/sphinx/versioning.py b/sphinx/versioning.py index c98d166bc..56c126da2 100644 --- a/sphinx/versioning.py +++ b/sphinx/versioning.py @@ -9,13 +9,11 @@ :license: BSD, see LICENSE for details. """ import pickle -import warnings from itertools import product, zip_longest from operator import itemgetter from os import path from uuid import uuid4 -from sphinx.deprecation import RemovedInSphinx30Warning from sphinx.transforms import SphinxTransform if False: @@ -180,15 +178,6 @@ class UIDTransform(SphinxTransform): list(merge_doctrees(old_doctree, self.document, env.versioning_condition)) -def prepare(document): - # type: (nodes.document) -> None - """Simple wrapper for UIDTransform.""" - warnings.warn('versioning.prepare() is deprecated. Use UIDTransform instead.', - RemovedInSphinx30Warning, stacklevel=2) - transform = UIDTransform(document) - transform.apply() - - def setup(app): # type: (Sphinx) -> Dict[str, Any] app.add_transform(UIDTransform) diff --git a/sphinx/writers/html.py b/sphinx/writers/html.py index 3eb9a0911..60cc7d999 100644 --- a/sphinx/writers/html.py +++ b/sphinx/writers/html.py @@ -11,7 +11,6 @@ import copy import os import posixpath -import sys import warnings from typing import Iterable, cast @@ -20,7 +19,7 @@ from docutils.writers.html4css1 import Writer, HTMLTranslator as BaseTranslator from sphinx import addnodes from sphinx.builders import Builder -from sphinx.deprecation import RemovedInSphinx30Warning, RemovedInSphinx40Warning +from sphinx.deprecation import RemovedInSphinx40Warning from sphinx.locale import admonitionlabels, _, __ from sphinx.util import logging from sphinx.util.docutils import SphinxTranslator @@ -945,33 +944,3 @@ class HTMLTranslator(SphinxTranslator, BaseTranslator): def unknown_visit(self, node): # type: (nodes.Node) -> None raise NotImplementedError('Unknown node: ' + node.__class__.__name__) - - # --------- METHODS FOR COMPATIBILITY -------------------------------------- - - @property - def highlightlang(self): - # type: () -> str - warnings.warn('HTMLTranslator.highlightlang is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return self.builder.config.highlight_language - - @property - def highlightlang_base(self): - # type: () -> str - warnings.warn('HTMLTranslator.highlightlang_base is deprecated.', - RemovedInSphinx30Warning) - return self.builder.config.highlight_language - - @property - def highlightopts(self): - # type: () -> str - warnings.warn('HTMLTranslator.highlightopts is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return self.builder.config.highlight_options - - @property - def highlightlinenothreshold(self): - # type: () -> int - warnings.warn('HTMLTranslator.highlightlinenothreshold is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return sys.maxsize diff --git a/sphinx/writers/html5.py b/sphinx/writers/html5.py index 646d6cc31..afab35950 100644 --- a/sphinx/writers/html5.py +++ b/sphinx/writers/html5.py @@ -10,7 +10,6 @@ import os import posixpath -import sys import warnings from typing import Iterable, cast @@ -19,7 +18,7 @@ from docutils.writers.html5_polyglot import HTMLTranslator as BaseTranslator from sphinx import addnodes from sphinx.builders import Builder -from sphinx.deprecation import RemovedInSphinx30Warning, RemovedInSphinx40Warning +from sphinx.deprecation import RemovedInSphinx40Warning from sphinx.locale import admonitionlabels, _, __ from sphinx.util import logging from sphinx.util.docutils import SphinxTranslator @@ -882,33 +881,3 @@ class HTML5Translator(SphinxTranslator, BaseTranslator): def unknown_visit(self, node): # type: (nodes.Node) -> None raise NotImplementedError('Unknown node: ' + node.__class__.__name__) - - # --------- METHODS FOR COMPATIBILITY -------------------------------------- - - @property - def highlightlang(self): - # type: () -> str - warnings.warn('HTMLTranslator.highlightlang is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return self.builder.config.highlight_language - - @property - def highlightlang_base(self): - # type: () -> str - warnings.warn('HTMLTranslator.highlightlang_base is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return self.builder.config.highlight_language - - @property - def highlightopts(self): - # type: () -> str - warnings.warn('HTMLTranslator.highlightopts is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return self.builder.config.highlight_options - - @property - def highlightlinenothreshold(self): - # type: () -> int - warnings.warn('HTMLTranslator.highlightlinenothreshold is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return sys.maxsize diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index c5be44b18..b45a95eef 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -12,7 +12,6 @@ """ import re -import sys import warnings from collections import defaultdict from os import path @@ -22,9 +21,7 @@ from docutils import nodes, writers from sphinx import addnodes from sphinx import highlighting -from sphinx.deprecation import ( - RemovedInSphinx30Warning, RemovedInSphinx40Warning, deprecated_alias -) +from sphinx.deprecation import RemovedInSphinx40Warning, deprecated_alias from sphinx.domains.std import StandardDomain from sphinx.errors import SphinxError from sphinx.locale import admonitionlabels, _, __ @@ -284,20 +281,6 @@ class Table: # (cell = rectangular area) self.cell_id = 0 # last assigned cell_id - @property - def caption_footnotetexts(self): - # type: () -> List[str] - warnings.warn('table.caption_footnotetexts is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return [] - - @property - def header_footnotetexts(self): - # type: () -> List[str] - warnings.warn('table.header_footnotetexts is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return [] - def is_longtable(self): # type: () -> bool """True if and only if table uses longtable environment.""" @@ -653,27 +636,6 @@ class LaTeXTranslator(SphinxTranslator): self.body = self.bodystack.pop() return body - def restrict_footnote(self, node): - # type: (nodes.Element) -> None - warnings.warn('LaTeXWriter.restrict_footnote() is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - - if self.footnote_restricted is None: - self.footnote_restricted = node - self.pending_footnotes = [] - - def unrestrict_footnote(self, node): - # type: (nodes.Element) -> None - warnings.warn('LaTeXWriter.unrestrict_footnote() is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - - if self.footnote_restricted == node: - self.footnote_restricted = None - for footnode in self.pending_footnotes: - footnode['footnotetext'] = True - footnode.walkabout(self) - self.pending_footnotes = [] - def format_docclass(self, docclass): # type: (str) -> str """ prepends prefix to sphinx document classes @@ -1781,8 +1743,8 @@ class LaTeXTranslator(SphinxTranslator): # type: (nodes.Element) -> None self.body.append('\n\\end{flushright}\n') - def visit_index(self, node, scre = None): - # type: (nodes.Element, Pattern) -> None + def visit_index(self, node): + # type: (nodes.Element) -> None def escape(value): value = self.encode(value) value = value.replace(r'\{', r'\sphinxleftcurlybrace{}') @@ -1799,10 +1761,6 @@ class LaTeXTranslator(SphinxTranslator): else: return '\\spxentry{%s}' % string - if scre: - warnings.warn(('LaTeXTranslator.visit_index() optional argument ' - '"scre" is deprecated. It is ignored.'), - RemovedInSphinx30Warning, stacklevel=2) if not node.get('inline', True): self.body.append('\n') entries = node['entries'] @@ -2496,70 +2454,6 @@ class LaTeXTranslator(SphinxTranslator): fnotes[num] = [newnode, False] return fnotes - @property - def footnotestack(self): - # type: () -> List[Dict[str, List[Union[collected_footnote, bool]]]] - warnings.warn('LaTeXWriter.footnotestack is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return [] - - @property - def bibitems(self): - # type: () -> List[List[str]] - warnings.warn('LaTeXTranslator.bibitems() is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return [] - - @property - def in_container_literal_block(self): - # type: () -> int - warnings.warn('LaTeXTranslator.in_container_literal_block is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return 0 - - @property - def next_section_ids(self): - # type: () -> Set[str] - warnings.warn('LaTeXTranslator.next_section_ids is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return set() - - @property - def next_hyperlink_ids(self): - # type: () -> Dict - warnings.warn('LaTeXTranslator.next_hyperlink_ids is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return {} - - def push_hyperlink_ids(self, figtype, ids): - # type: (str, Set[str]) -> None - warnings.warn('LaTeXTranslator.push_hyperlink_ids() is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - pass - - def pop_hyperlink_ids(self, figtype): - # type: (str) -> Set[str] - warnings.warn('LaTeXTranslator.pop_hyperlink_ids() is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return set() - - @property - def hlsettingstack(self): - # type: () -> List[List[Union[str, int]]] - warnings.warn('LaTeXTranslator.hlsettingstack is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - return [[self.builder.config.highlight_language, sys.maxsize]] - - def check_latex_elements(self): - # type: () -> None - warnings.warn('check_latex_elements() is deprecated.', - RemovedInSphinx30Warning, stacklevel=2) - - for key in self.builder.config.latex_elements: - if key not in self.elements: - msg = __("Unknown configure key: latex_elements[%r] is ignored.") - logger.warning(msg % key) - def babel_defmacro(self, name, definition): # type: (str, str) -> str warnings.warn('babel_defmacro() is deprecated.', @@ -2574,17 +2468,6 @@ class LaTeXTranslator(SphinxTranslator): return ('%s\\def%s{%s}%s\n' % (prefix, name, definition, suffix)) - def _make_visit_admonition(name): # type: ignore - # type: (str) -> Callable[[LaTeXTranslator, nodes.Element], None] - warnings.warn('LaTeXTranslator._make_visit_admonition() is deprecated.', - RemovedInSphinx30Warning) - - def visit_admonition(self, node): - # type: (nodes.Element) -> None - self.body.append('\n\\begin{sphinxadmonition}{%s}{%s:}' % - (name, admonitionlabels[name])) - return visit_admonition - def generate_numfig_format(self, builder): # type: (LaTeXBuilder) -> str warnings.warn('generate_numfig_format() is deprecated.', @@ -2627,16 +2510,9 @@ class LaTeXTranslator(SphinxTranslator): # Import old modules here for compatibility -from sphinx.builders.latex.transforms import URI_SCHEMES, ShowUrlsTransform # NOQA from sphinx.builders.latex.util import ExtBabel # NOQA -deprecated_alias('sphinx.writers.latex', - { - 'ShowUrlsTransform': ShowUrlsTransform, - 'URI_SCHEMES': URI_SCHEMES, - }, - RemovedInSphinx30Warning) deprecated_alias('sphinx.writers.latex', { 'ExtBabel': ExtBabel, diff --git a/sphinx/writers/texinfo.py b/sphinx/writers/texinfo.py index 4262ccd66..77d3dcb69 100644 --- a/sphinx/writers/texinfo.py +++ b/sphinx/writers/texinfo.py @@ -10,14 +10,12 @@ import re import textwrap -import warnings from os import path from typing import Iterable, cast from docutils import nodes, writers from sphinx import addnodes, __display_version__ -from sphinx.deprecation import RemovedInSphinx30Warning from sphinx.errors import ExtensionError from sphinx.locale import admonitionlabels, _, __ from sphinx.util import logging @@ -1745,13 +1743,3 @@ class TexinfoTranslator(SphinxTranslator): self.body.append('\n\n@example\n%s\n@end example\n\n' % self.escape_arg(node.astext())) raise nodes.SkipNode - - def _make_visit_admonition(name): # type: ignore - # type: (str) -> Callable[[TexinfoTranslator, nodes.Element], None] - warnings.warn('TexinfoTranslator._make_visit_admonition() is deprecated.', - RemovedInSphinx30Warning) - - def visit(self, node): - # type: (nodes.Element) -> None - self.visit_admonition(node, admonitionlabels[name]) - return visit diff --git a/sphinx/writers/text.py b/sphinx/writers/text.py index 1447510c3..47ab9f2e4 100644 --- a/sphinx/writers/text.py +++ b/sphinx/writers/text.py @@ -11,7 +11,6 @@ import math import os import re import textwrap -import warnings from itertools import groupby, chain from typing import Iterable, cast @@ -19,7 +18,6 @@ from docutils import nodes, writers from docutils.utils import column_width from sphinx import addnodes -from sphinx.deprecation import RemovedInSphinx30Warning from sphinx.locale import admonitionlabels, _ from sphinx.util.docutils import SphinxTranslator @@ -1368,13 +1366,3 @@ class TextTranslator(SphinxTranslator): def unknown_visit(self, node): # type: (nodes.Node) -> None raise NotImplementedError('Unknown node: ' + node.__class__.__name__) - - def _make_depart_admonition(name): # type: ignore - # type: (str) -> Callable[[TextTranslator, nodes.Element], None] - warnings.warn('TextTranslator._make_depart_admonition() is deprecated.', - RemovedInSphinx30Warning) - - def depart_admonition(self, node): - # type: (nodes.Element) -> None - self.end_state(first=admonitionlabels[name] + ': ') - return depart_admonition diff --git a/tests/roots/test-add_source_parser/conf.py b/tests/roots/test-add_source_parser/conf.py index 9ff50b21e..2acd4d24c 100644 --- a/tests/roots/test-add_source_parser/conf.py +++ b/tests/roots/test-add_source_parser/conf.py @@ -1,17 +1,8 @@ import os import sys -from docutils.parsers import Parser - sys.path.insert(0, os.path.abspath('.')) -class DummyMarkdownParser(Parser): - supported = ('markdown',) - - extensions = ['source_parser'] -source_suffix = ['.rst', '.md'] -source_parsers = { - '.md': DummyMarkdownParser -} +source_suffix = ['.rst'] diff --git a/tests/roots/test-ext-math-compat/conf.py b/tests/roots/test-ext-math-compat/conf.py index 30d26f97c..85e3950a5 100644 --- a/tests/roots/test-ext-math-compat/conf.py +++ b/tests/roots/test-ext-math-compat/conf.py @@ -1,17 +1,18 @@ +from docutils import nodes from docutils.parsers.rst import Directive -from sphinx.ext.mathbase import math, displaymath - extensions = ['sphinx.ext.mathjax'] def my_math_role(role, rawtext, text, lineno, inliner, options={}, content=[]): - return [math(latex='E = mc^2')], [] + text = 'E = mc^2' + return [nodes.math(text, text)], [] class MyMathDirective(Directive): def run(self): - return [displaymath(latex='E = mc^2')] + text = 'E = mc^2' + return [nodes.math_block(text, text)] def setup(app): diff --git a/tests/test_application.py b/tests/test_application.py index f10592b51..8c48e7500 100644 --- a/tests/test_application.py +++ b/tests/test_application.py @@ -61,20 +61,13 @@ def test_extension_in_blacklist(app, status, warning): @pytest.mark.sphinx(testroot='add_source_parser') -@pytest.mark.filterwarnings('ignore:The config variable "source_parsers"') -@pytest.mark.filterwarnings('ignore:app.add_source_parser\\(\\) does not support suffix') def test_add_source_parser(app, status, warning): - assert set(app.config.source_suffix) == {'.rst', '.md', '.test'} + assert set(app.config.source_suffix) == {'.rst', '.test'} # .rst; only in :confval:`source_suffix` assert '.rst' not in app.registry.get_source_parsers() assert app.registry.source_suffix['.rst'] is None - # .md; configured by :confval:`source_suffix` and :confval:`source_parsers` - assert '.md' in app.registry.get_source_parsers() - assert app.registry.source_suffix['.md'] == '.md' - assert app.registry.get_source_parsers()['.md'].__name__ == 'DummyMarkdownParser' - # .test; configured by API assert app.registry.source_suffix['.test'] == 'test' assert 'test' in app.registry.get_source_parsers() diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py index 27412a9da..cfb62d1ba 100644 --- a/tests/test_autodoc.py +++ b/tests/test_autodoc.py @@ -16,10 +16,7 @@ from warnings import catch_warnings import pytest from docutils.statemachine import ViewList -from sphinx.ext.autodoc import ( - ModuleLevelDocumenter, cut_lines, between, ALL, - merge_autodoc_default_flags, Options -) +from sphinx.ext.autodoc import ModuleLevelDocumenter, cut_lines, between, ALL, Options from sphinx.ext.autodoc.directive import DocumenterBridge, process_documenter_options from sphinx.testing.util import SphinxTestApp, Struct # NOQA from sphinx.util import logging @@ -1522,27 +1519,6 @@ def test_partialmethod(app): assert list(actual) == expected -@pytest.mark.sphinx('html', testroot='ext-autodoc') -@pytest.mark.filterwarnings('ignore:autodoc_default_flags is now deprecated.') -def test_merge_autodoc_default_flags1(app): - app.config.autodoc_default_flags = ['members', 'undoc-members'] - merge_autodoc_default_flags(app, app.config) - assert app.config.autodoc_default_options == {'members': None, - 'undoc-members': None} - - -@pytest.mark.sphinx('html', testroot='ext-autodoc') -@pytest.mark.filterwarnings('ignore:autodoc_default_flags is now deprecated.') -def test_merge_autodoc_default_flags2(app): - app.config.autodoc_default_flags = ['members', 'undoc-members'] - app.config.autodoc_default_options = {'members': 'this,that,order', - 'inherited-members': 'this'} - merge_autodoc_default_flags(app, app.config) - assert app.config.autodoc_default_options == {'members': None, - 'undoc-members': None, - 'inherited-members': 'this'} - - @pytest.mark.sphinx('html', testroot='ext-autodoc') def test_autodoc_default_options(app): # no settings diff --git a/tests/test_ext_autodoc_mock.py b/tests/test_ext_autodoc_mock.py index 767232bcc..79a2782d3 100644 --- a/tests/test_ext_autodoc_mock.py +++ b/tests/test_ext_autodoc_mock.py @@ -17,7 +17,7 @@ from sphinx.ext.autodoc.mock import _MockModule, _MockObject, mock def test_MockModule(): - mock = _MockModule('mocked_module', None) + mock = _MockModule('mocked_module') assert isinstance(mock.some_attr, _MockObject) assert isinstance(mock.some_method, _MockObject) assert isinstance(mock.attr1.attr2, _MockObject) diff --git a/tests/test_util_images.py b/tests/test_util_images.py index 5e0f2801c..dbe155035 100644 --- a/tests/test_util_images.py +++ b/tests/test_util_images.py @@ -20,20 +20,15 @@ PDF_FILENAME = 'img.pdf' TXT_FILENAME = 'index.txt' -@pytest.fixture(scope='module') -def testroot(rootdir): - return rootdir / 'test-root' - - -def test_get_image_size(testroot): - assert get_image_size(testroot / GIF_FILENAME) == (200, 181) - assert get_image_size(testroot / PNG_FILENAME) == (200, 181) - assert get_image_size(testroot / PDF_FILENAME) is None - assert get_image_size(testroot / TXT_FILENAME) is None +def test_get_image_size(rootdir): + assert get_image_size(rootdir / 'test-root' / GIF_FILENAME) == (200, 181) + assert get_image_size(rootdir / 'test-root' / PNG_FILENAME) == (200, 181) + assert get_image_size(rootdir / 'test-root' / PDF_FILENAME) is None + assert get_image_size(rootdir / 'test-root' / TXT_FILENAME) is None @pytest.mark.filterwarnings('ignore:The content argument') -def test_guess_mimetype(testroot): +def test_guess_mimetype(): # guess by filename assert guess_mimetype('img.png') == 'image/png' assert guess_mimetype('img.jpg') == 'image/jpeg' @@ -42,24 +37,9 @@ def test_guess_mimetype(testroot): assert guess_mimetype('no_extension') is None assert guess_mimetype('IMG.PNG') == 'image/png' - # guess by content - assert guess_mimetype(content=(testroot / GIF_FILENAME).bytes()) == 'image/gif' - assert guess_mimetype(content=(testroot / PNG_FILENAME).bytes()) == 'image/png' - assert guess_mimetype(content=(testroot / PDF_FILENAME).bytes()) is None - assert guess_mimetype(content=(testroot / TXT_FILENAME).bytes()) is None - assert guess_mimetype(content=(testroot / TXT_FILENAME).bytes(), - default='text/plain') == 'text/plain' - - # the priority of params: filename > content > default - assert guess_mimetype('img.png', - content=(testroot / GIF_FILENAME).bytes(), - default='text/plain') == 'image/png' - assert guess_mimetype('no_extension', - content=(testroot / GIF_FILENAME).bytes(), - default='text/plain') == 'image/gif' - assert guess_mimetype('no_extension', - content=(testroot / TXT_FILENAME).bytes(), - default='text/plain') == 'text/plain' + # default parameter is used when no extension + assert guess_mimetype('img.png', 'text/plain') == 'image/png' + assert guess_mimetype('no_extension', 'text/plain') == 'text/plain' def test_get_image_extension(): From 53fb247bb6e4a0a56e6635eb2fbd35fc82b42a1e Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Tue, 12 Feb 2019 00:12:05 +0900 Subject: [PATCH 120/121] refactor quickstart --- sphinx/cmd/quickstart.py | 156 +++++++++++++++++++-------------------- 1 file changed, 76 insertions(+), 80 deletions(-) diff --git a/sphinx/cmd/quickstart.py b/sphinx/cmd/quickstart.py index dfc096de5..51fa29cbd 100644 --- a/sphinx/cmd/quickstart.py +++ b/sphinx/cmd/quickstart.py @@ -57,10 +57,8 @@ EXTENSIONS = OrderedDict([ ('imgmath', __('include math, rendered as PNG or SVG images')), ('mathjax', __('include math, rendered in the browser by MathJax')), ('ifconfig', __('conditional inclusion of content based on config values')), - ('viewcode', - __('include links to the source code of documented Python objects')), - ('githubpages', - __('create .nojekyll file to publish the document on GitHub pages')), + ('viewcode', __('include links to the source code of documented Python objects')), + ('githubpages', __('create .nojekyll file to publish the document on GitHub pages')), ]) DEFAULTS = { @@ -140,8 +138,7 @@ def boolean(x): def suffix(x): # type: (str) -> str if not (x[0:1] == '.' and len(x) > 1): - raise ValidationError(__("Please enter a file suffix, " - "e.g. '.rst' or '.txt'.")) + raise ValidationError(__("Please enter a file suffix, e.g. '.rst' or '.txt'.")) return x @@ -246,16 +243,16 @@ def ask_user(d): """ print(bold(__('Welcome to the Sphinx %s quickstart utility.')) % __display_version__) - print(__(''' -Please enter values for the following settings (just press Enter to -accept a default value, if one is given in brackets).''')) + print() + print(__('Please enter values for the following settings (just press Enter to\n' + 'accept a default value, if one is given in brackets).')) if 'path' in d: - print(bold(__(''' -Selected root path: %s''') % d['path'])) + print() + print(bold(__('Selected root path: %s')) % d['path']) else: - print(__(''' -Enter the root path for documentation.''')) + print() + print(__('Enter the root path for documentation.')) d['path'] = do_prompt(__('Root path for the documentation'), '.', is_path) while path.isfile(path.join(d['path'], 'conf.py')) or \ @@ -265,70 +262,68 @@ Enter the root path for documentation.''')) 'selected root path.'))) 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) + d['path'] = do_prompt(__('Please enter a new root path (or just Enter to exit)'), + '', is_path) if not d['path']: sys.exit(1) if 'sep' not in d: - print(__(''' -You have two options for placing the build directory for Sphinx output. -Either, you use a directory "_build" within the root path, or you separate -"source" and "build" directories within the root path.''')) - d['sep'] = do_prompt(__('Separate source and build directories (y/n)'), - 'n', boolean) + print() + print(__('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.')) + d['sep'] = do_prompt(__('Separate source and build directories (y/n)'), 'n', boolean) if 'dot' not in d: - print(__(''' -Inside the root directory, two more directories will be created; "_templates" -for custom HTML templates and "_static" for custom stylesheets and other static -files. You can enter another prefix (such as ".") to replace the underscore.''')) + print() + print(__('Inside the root directory, two more directories will be created; "_templates"\n' # NOQA + 'for custom HTML templates and "_static" for custom stylesheets and other static\n' # NOQA + 'files. You can enter another prefix (such as ".") to replace the underscore.')) # NOQA d['dot'] = do_prompt(__('Name prefix for templates and static dir'), '_', ok) if 'project' not in d: - print(__(''' -The project name will occur in several places in the built documentation.''')) + print() + print(__('The project name will occur in several places in the built documentation.')) d['project'] = do_prompt(__('Project name')) if 'author' not in d: d['author'] = do_prompt(__('Author name(s)')) if 'version' not in d: - print(__(''' -Sphinx has the notion of a "version" and a "release" for the -software. Each version can have multiple releases. For example, for -Python the version is something like 2.5 or 3.0, while the release is -something like 2.5.1 or 3.0a1. If you don't need this dual structure, -just set both to the same value.''')) + print() + print(__('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.')) d['version'] = do_prompt(__('Project version'), '', allow_empty) if 'release' not in d: d['release'] = do_prompt(__('Project release'), d['version'], allow_empty) if 'language' not in d: - print(__(''' -If the documents are to be written in a language other than English, -you can select a language here by its language code. Sphinx will then -translate text that it generates into that language. - -For a list of supported codes, see -http://sphinx-doc.org/config.html#confval-language.''')) + print() + print(__('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' + 'http://sphinx-doc.org/config.html#confval-language.')) d['language'] = do_prompt(__('Project language'), 'en') if d['language'] == 'en': d['language'] = None if 'suffix' not in d: - print(__(''' -The file name suffix for source files. Commonly, this is either ".txt" -or ".rst". Only files with this suffix are considered documents.''')) + print() + print(__('The file name suffix for source files. Commonly, this is either ".txt"\n' + 'or ".rst". Only files with this suffix are considered documents.')) d['suffix'] = do_prompt(__('Source file suffix'), '.rst', suffix) if 'master' not in d: - print(__(''' -One document is special in that it is considered the top node of the -"contents tree", that is, it is the root of the hierarchical structure -of the documents. Normally, this is "index", but if your "index" -document is a custom template, you can also set this to another filename.''')) - d['master'] = do_prompt(__('Name of your master document (without suffix)'), - 'index') + print() + print(__('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.')) + d['master'] = do_prompt(__('Name of your master document (without suffix)'), 'index') while path.isfile(path.join(d['path'], d['master'] + d['suffix'])) or \ path.isfile(path.join(d['path'], 'source', d['master'] + d['suffix'])): @@ -341,8 +336,7 @@ document is a custom template, you can also set this to another filename.''')) 'existing file and press Enter'), d['master']) if 'extensions' not in d: - print(__('Indicate which of the following Sphinx extensions should be ' - 'enabled:')) + print(__('Indicate which of the following Sphinx extensions should be enabled:')) d['extensions'] = [] for name, description in EXTENSIONS.items(): if do_prompt('%s: %s (y/n)' % (name, description), 'n', boolean): @@ -350,20 +344,19 @@ document is a custom template, you can also set this to another filename.''')) # Handle conflicting options if {'sphinx.ext.imgmath', 'sphinx.ext.mathjax'}.issubset(d['extensions']): - print(__('Note: imgmath and mathjax cannot be enabled at the same ' - 'time. imgmath has been deselected.')) + print(__('Note: imgmath and mathjax cannot be enabled at the same time. ' + 'imgmath has been deselected.')) d['extensions'].remove('sphinx.ext.imgmath') if 'makefile' not in d: - print(__(''' -A Makefile and a Windows command file can be generated for you so that you -only have to run e.g. `make html' instead of invoking sphinx-build -directly.''')) + print() + print(__('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.')) d['makefile'] = do_prompt(__('Create Makefile? (y/n)'), 'y', boolean) if 'batchfile' not in d: - d['batchfile'] = do_prompt(__('Create Windows command file? (y/n)'), - 'y', boolean) + d['batchfile'] = do_prompt(__('Create Windows command file? (y/n)'), 'y', boolean) print() @@ -447,17 +440,18 @@ def generate(d, overwrite=True, silent=False, templatedir=None): return print() print(bold(__('Finished: An initial directory structure has been created.'))) - print(__(''' -You should now populate your master file %s and create other documentation -source files. ''') % masterfile + ((d['makefile'] or d['batchfile']) and __('''\ -Use the Makefile to build the docs, like so: - make builder -''') or __('''\ -Use the sphinx-build command to build the docs, like so: - sphinx-build -b builder %s %s -''') % (srcdir, builddir)) + __('''\ -where "builder" is one of the supported builders, e.g. html, latex or linkcheck. -''')) + print() + print(__('You should now populate your master file %s and create other documentation\n' + 'source files. ') % masterfile, end='') + if d['makefile'] or d['batchfile']: + print(__('Use the Makefile to build the docs, like so:\n' + ' make builder')) + else: + print(__('Use the sphinx-build command to build the docs, like so:\n' + ' sphinx-build -b builder %s %s') % (srcdir, builddir)) + print(__('where "builder" is one of the supported builders, ' + 'e.g. html, latex or linkcheck.')) + print() def valid_dir(d): @@ -492,16 +486,18 @@ def valid_dir(d): def get_parser(): # type: () -> argparse.ArgumentParser + description = __( + "\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" + ) parser = argparse.ArgumentParser( usage='%(prog)s [OPTIONS] <PROJECT_DIR>', epilog=__("For more information, visit <http://sphinx-doc.org/>."), - description=__(""" -Generate required files for a Sphinx project. - -sphinx-quickstart is an interactive tool that asks some questions about your -project and then generates a complete documentation directory and sample -Makefile to be used with sphinx-build. -""")) + description=description) parser.add_argument('-q', '--quiet', action='store_true', dest='quiet', default=None, @@ -601,8 +597,8 @@ def main(argv=sys.argv[1:]): try: if 'quiet' in d: if not {'project', 'author'}.issubset(d): - print(__('''"quiet" is specified, but any of "project" or \ -"author" is not specified.''')) + print(__('"quiet" is specified, but any of "project" or ' + '"author" is not specified.')) return 1 if {'quiet', 'project', 'author'}.issubset(d): From 728558801a76e4c5fe4d253e847567336fcb689f Mon Sep 17 00:00:00 2001 From: Takeshi KOMIYA <i.tkomiya@gmail.com> Date: Sat, 6 Apr 2019 13:58:33 +0900 Subject: [PATCH 121/121] Add RemovedInSphinx50Warning --- sphinx/deprecation.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/sphinx/deprecation.py b/sphinx/deprecation.py index 1169280d0..f283d7e5d 100644 --- a/sphinx/deprecation.py +++ b/sphinx/deprecation.py @@ -17,7 +17,11 @@ if False: from typing import Any, Dict, Type # NOQA -class RemovedInSphinx40Warning(PendingDeprecationWarning): +class RemovedInSphinx40Warning(DeprecationWarning): + pass + + +class RemovedInSphinx50Warning(PendingDeprecationWarning): pass